2025-07-17T06:33:40.2315509Z Current runner version: '2.326.0' 2025-07-17T06:33:40.2321952Z Runner name: 'i-03ad2eed2849e5734' 2025-07-17T06:33:40.2322798Z Runner group name: 'default' 2025-07-17T06:33:40.2323589Z Machine name: 'EC2AMAZ-IFQ8336' 2025-07-17T06:33:40.2326169Z ##[group]GITHUB_TOKEN Permissions 2025-07-17T06:33:40.2328307Z Contents: read 2025-07-17T06:33:40.2328881Z Metadata: read 2025-07-17T06:33:40.2329384Z ##[endgroup] 2025-07-17T06:33:40.2331321Z Secret source: Actions 2025-07-17T06:33:40.2332025Z Prepare workflow directory 2025-07-17T06:33:40.2831894Z Prepare all required actions 2025-07-17T06:33:40.2872377Z Getting action download info 2025-07-17T06:33:40.4862597Z Download action repository 'pytorch/test-infra@main' (SHA:a9ec424ad5e5851e47d68139cfd953b4031778d5) 2025-07-17T06:34:22.2263966Z Download action repository 'pytorch/pytorch@main' (SHA:a38f433be2e94a64b095a44ba39879d02d0c2316) 2025-07-17T06:35:26.1671014Z Download action repository 'seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-07-17T06:35:27.5137064Z Getting action download info 2025-07-17T06:35:27.6527060Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-07-17T06:35:28.1306871Z Uses: pytorch/pytorch/.github/workflows/_win-build.yml@refs/heads/main (a38f433be2e94a64b095a44ba39879d02d0c2316) 2025-07-17T06:35:28.1311208Z ##[group] Inputs 2025-07-17T06:35:28.1311521Z build-environment: win-vs2022-cuda12.6-py3 2025-07-17T06:35:28.1311840Z cuda-version: 12.6 2025-07-17T06:35:28.1312375Z use-xpu: false 2025-07-17T06:35:28.1312576Z xpu-version: 2025-07-17T06:35:28.1312760Z vc-year: 2022 2025-07-17T06:35:28.1312962Z build-with-debug: false 2025-07-17T06:35:28.1313196Z sync-tag: 2025-07-17T06:35:28.1313379Z test-matrix: 2025-07-17T06:35:28.1313738Z runner: windows.4xlarge.nonephemeral 2025-07-17T06:35:28.1314023Z ##[endgroup] 2025-07-17T06:35:28.1314294Z Complete job name: win-vs2022-cuda12.6-py3 / build 2025-07-17T06:35:28.3119236Z ##[group]Run git config --global core.longpaths true 2025-07-17T06:35:28.3119839Z git config --global core.longpaths true 2025-07-17T06:35:28.3120238Z git config --global core.symlinks true 2025-07-17T06:35:28.3120607Z  2025-07-17T06:35:28.3120985Z # https://git-scm.com/docs/git-fsmonitor--daemon. The daemon could lock 2025-07-17T06:35:28.3121620Z # the directory on Windows and prevent GHA from checking out as reported 2025-07-17T06:35:28.3122263Z # in https://github.com/actions/checkout/issues/1018 2025-07-17T06:35:28.3122723Z git config --global core.fsmonitor false 2025-07-17T06:35:28.3147957Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:35:28.3148725Z env: 2025-07-17T06:35:28.3149021Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:28.3149284Z ##[endgroup] 2025-07-17T06:35:36.3858370Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-07-17T06:35:36.3858898Z env: 2025-07-17T06:35:36.3859093Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:36.3859335Z ##[endgroup] 2025-07-17T06:35:36.9344640Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-17T06:35:36.9345419Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-17T06:35:36.9346079Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-07-17T06:35:36.9346555Z # handle tool 2025-07-17T06:35:36.9346905Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-07-17T06:35:36.9347312Z Foreach ($process In $processes) { 2025-07-17T06:35:36.9347594Z  Try { 2025-07-17T06:35:36.9348119Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-07-17T06:35:36.9348814Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-07-17T06:35:36.9350743Z  } 2025-07-17T06:35:36.9350950Z  Catch { 2025-07-17T06:35:36.9351266Z  Write-Output "No leftover $process process, continuing" 2025-07-17T06:35:36.9351642Z  Write-Output $_ 2025-07-17T06:35:36.9351869Z  } 2025-07-17T06:35:36.9352062Z } 2025-07-17T06:35:36.9352228Z  2025-07-17T06:35:36.9352698Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-07-17T06:35:36.9353247Z # for hung processes 2025-07-17T06:35:36.9353524Z Foreach ($process In $processes) { 2025-07-17T06:35:36.9353888Z  Try { 2025-07-17T06:35:36.9354278Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-07-17T06:35:36.9354746Z  } 2025-07-17T06:35:36.9354933Z  Catch { 2025-07-17T06:35:36.9355149Z  Write-Output $_ 2025-07-17T06:35:36.9355372Z  } 2025-07-17T06:35:36.9355557Z } 2025-07-17T06:35:36.9355723Z  2025-07-17T06:35:36.9355890Z Try { 2025-07-17T06:35:36.9356116Z  # Print all the processes for debugging 2025-07-17T06:35:36.9356594Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-07-17T06:35:36.9357031Z } 2025-07-17T06:35:36.9357201Z Catch { 2025-07-17T06:35:36.9357590Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-07-17T06:35:36.9358109Z  Write-Output $_ 2025-07-17T06:35:36.9358366Z } 2025-07-17T06:35:36.9374162Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T06:35:36.9374630Z env: 2025-07-17T06:35:36.9374839Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:36.9375072Z ##[endgroup] 2025-07-17T06:35:37.2893143Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T06:35:37.2954694Z Finished 2025-07-17T06:35:37.3907992Z No leftover python process, continuing 2025-07-17T06:35:37.4359964Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-07-17T06:35:37.4360674Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:9 char:5 2025-07-17T06:35:37.4361244Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T06:35:37.4361716Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.4362247Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-07-17T06:35:37.4363041Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T06:35:37.4363625Z 2025-07-17T06:35:37.4379156Z No leftover ninja process, continuing 2025-07-17T06:35:37.4388122Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-07-17T06:35:37.4388826Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:9 char:5 2025-07-17T06:35:37.4389407Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T06:35:37.4389813Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.4390335Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-07-17T06:35:37.4391132Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T06:35:37.4391728Z 2025-07-17T06:35:37.4403772Z No leftover cl process, continuing 2025-07-17T06:35:37.4413997Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-07-17T06:35:37.4414697Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:9 char:5 2025-07-17T06:35:37.4416106Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T06:35:37.4416521Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.4416974Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-07-17T06:35:37.4417763Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T06:35:37.4418340Z 2025-07-17T06:35:37.4427391Z No leftover nvcc process, continuing 2025-07-17T06:35:37.4437964Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-07-17T06:35:37.4438677Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:9 char:5 2025-07-17T06:35:37.4439244Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T06:35:37.4439671Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.4440215Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-07-17T06:35:37.4441003Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T06:35:37.4441593Z 2025-07-17T06:35:37.4469273Z No leftover sccache process, continuing 2025-07-17T06:35:37.4479925Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-07-17T06:35:37.4480655Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:9 char:5 2025-07-17T06:35:37.4481211Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T06:35:37.4481621Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.4482124Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-07-17T06:35:37.4482999Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T06:35:37.4483605Z 2025-07-17T06:35:37.4492748Z No leftover git process, continuing 2025-07-17T06:35:37.4502318Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-07-17T06:35:37.4503027Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:9 char:5 2025-07-17T06:35:37.4503588Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T06:35:37.4504008Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.4504463Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-07-17T06:35:37.4505249Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T06:35:37.4505841Z 2025-07-17T06:35:37.5046332Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-17T06:35:37.5047286Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-17T06:35:37.5047873Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-17T06:35:37.5048423Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:21 char:6 2025-07-17T06:35:37.5048979Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T06:35:37.5049402Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.5049833Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-17T06:35:37.5050508Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-17T06:35:37.5051050Z 2025-07-17T06:35:37.5074289Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-17T06:35:37.5075172Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-17T06:35:37.5076011Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-17T06:35:37.5076485Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:21 char:6 2025-07-17T06:35:37.5077057Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T06:35:37.5077498Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.5077929Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-17T06:35:37.5078600Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-17T06:35:37.5079146Z 2025-07-17T06:35:37.5101418Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-17T06:35:37.5102315Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-17T06:35:37.5102918Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-17T06:35:37.5103375Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:21 char:6 2025-07-17T06:35:37.5103938Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T06:35:37.5104362Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.5104786Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-17T06:35:37.5105465Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-17T06:35:37.5106012Z 2025-07-17T06:35:37.5130585Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-17T06:35:37.5131467Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-17T06:35:37.5132055Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-17T06:35:37.5132545Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:21 char:6 2025-07-17T06:35:37.5133084Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T06:35:37.5133512Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.5133925Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-17T06:35:37.5134611Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-17T06:35:37.5135144Z 2025-07-17T06:35:37.5168264Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-17T06:35:37.5169136Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-17T06:35:37.5169940Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-17T06:35:37.5170416Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:21 char:6 2025-07-17T06:35:37.5170988Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T06:35:37.5171420Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.5171855Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-17T06:35:37.5172536Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-17T06:35:37.5173094Z 2025-07-17T06:35:37.5197581Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-17T06:35:37.5198433Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-17T06:35:37.5199050Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-17T06:35:37.5199529Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:21 char:6 2025-07-17T06:35:37.5200283Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T06:35:37.5200703Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.5201139Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-17T06:35:37.5201816Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-17T06:35:37.5202423Z 2025-07-17T06:35:37.5224381Z Get-WmiObject : Retrieving the COM class factory for component with CLSID {CF4CC405-E2C5-4DDD-B3CE-5E7582D8C9FA} 2025-07-17T06:35:37.5225294Z failed due to the following error: 800703fa Illegal operation attempted on a registry key that has been marked for 2025-07-17T06:35:37.5225940Z deletion. (Exception from HRESULT: 0x800703FA). 2025-07-17T06:35:37.5226422Z At C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1:21 char:6 2025-07-17T06:35:37.5226978Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T06:35:37.5227417Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T06:35:37.5227834Z + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException 2025-07-17T06:35:37.5228517Z + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand 2025-07-17T06:35:37.5229065Z 2025-07-17T06:35:38.5468057Z Caption CommandLine ProcessId 2025-07-17T06:35:38.5468664Z 2025-07-17T06:35:38.5468982Z System Idle Process 0 2025-07-17T06:35:38.5469483Z 2025-07-17T06:35:38.5471061Z System 4 2025-07-17T06:35:38.5471508Z 2025-07-17T06:35:38.5471797Z Registry 168 2025-07-17T06:35:38.5472178Z 2025-07-17T06:35:38.5472969Z smss.exe 412 2025-07-17T06:35:38.5474167Z 2025-07-17T06:35:38.5474443Z csrss.exe 512 2025-07-17T06:35:38.5474809Z 2025-07-17T06:35:38.5475366Z csrss.exe 592 2025-07-17T06:35:38.5475751Z 2025-07-17T06:35:38.5476473Z wininit.exe 644 2025-07-17T06:35:38.5476858Z 2025-07-17T06:35:38.5477700Z winlogon.exe winlogon.exe 664 2025-07-17T06:35:38.5478140Z 2025-07-17T06:35:38.5478767Z services.exe 736 2025-07-17T06:35:38.5479154Z 2025-07-17T06:35:38.5480861Z lsass.exe C:\Windows\system32\lsass.exe 756 2025-07-17T06:35:38.5481354Z 2025-07-17T06:35:38.5481866Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 884 2025-07-17T06:35:38.5482448Z 2025-07-17T06:35:38.5482893Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 908 2025-07-17T06:35:38.5483517Z 2025-07-17T06:35:38.5483936Z fontdrvhost.exe "fontdrvhost.exe" 932 2025-07-17T06:35:38.5484388Z 2025-07-17T06:35:38.5485015Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-07-17T06:35:38.5485517Z 2025-07-17T06:35:38.5486298Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 132 2025-07-17T06:35:38.5486818Z 2025-07-17T06:35:38.5487426Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-07-17T06:35:38.5487976Z 2025-07-17T06:35:38.5488534Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 116 2025-07-17T06:35:38.5489129Z 2025-07-17T06:35:38.5489804Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1100 2025-07-17T06:35:38.5490571Z 2025-07-17T06:35:38.5490905Z dwm.exe "dwm.exe" 1148 2025-07-17T06:35:38.5491299Z 2025-07-17T06:35:38.5492343Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1248 2025-07-17T06:35:38.5493108Z 2025-07-17T06:35:38.5493568Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-07-17T06:35:38.5494143Z 2025-07-17T06:35:38.5494696Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1360 2025-07-17T06:35:38.5495356Z 2025-07-17T06:35:38.5495799Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1388 2025-07-17T06:35:38.5496350Z 2025-07-17T06:35:38.5496840Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1432 2025-07-17T06:35:38.5497431Z 2025-07-17T06:35:38.5499257Z 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 1456 2025-07-17T06:35:38.5501408Z 2025-07-17T06:35:38.5502002Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1484 2025-07-17T06:35:38.5502578Z 2025-07-17T06:35:38.5503069Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1536 2025-07-17T06:35:38.5503643Z 2025-07-17T06:35:38.5504249Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1652 2025-07-17T06:35:38.5505009Z 2025-07-17T06:35:38.5505472Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1736 2025-07-17T06:35:38.5506026Z 2025-07-17T06:35:38.5506494Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1744 2025-07-17T06:35:38.5507038Z 2025-07-17T06:35:38.5507554Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1752 2025-07-17T06:35:38.5508141Z 2025-07-17T06:35:38.5508739Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1840 2025-07-17T06:35:38.5509418Z 2025-07-17T06:35:38.5509966Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 1996 2025-07-17T06:35:38.5510531Z 2025-07-17T06:35:38.5510971Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1064 2025-07-17T06:35:38.5511518Z 2025-07-17T06:35:38.5512002Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2052 2025-07-17T06:35:38.5513114Z 2025-07-17T06:35:38.5513614Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2076 2025-07-17T06:35:38.5514294Z 2025-07-17T06:35:38.5514839Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2084 2025-07-17T06:35:38.5515476Z 2025-07-17T06:35:38.5515978Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2132 2025-07-17T06:35:38.5516570Z 2025-07-17T06:35:38.5517120Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2152 2025-07-17T06:35:38.5517754Z 2025-07-17T06:35:38.5518381Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2236 2025-07-17T06:35:38.5518976Z 2025-07-17T06:35:38.5519855Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2288 2025-07-17T06:35:38.5520453Z 2025-07-17T06:35:38.5520983Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2296 2025-07-17T06:35:38.5521625Z 2025-07-17T06:35:38.5522259Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2304 2025-07-17T06:35:38.5523043Z 2025-07-17T06:35:38.5523438Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2676 2025-07-17T06:35:38.5523918Z 2025-07-17T06:35:38.5524427Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2784 2025-07-17T06:35:38.5525018Z 2025-07-17T06:35:38.5525724Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2792 2025-07-17T06:35:38.5526274Z 2025-07-17T06:35:38.5526849Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2800 2025-07-17T06:35:38.5527508Z 2025-07-17T06:35:38.5528013Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2808 2025-07-17T06:35:38.5528597Z 2025-07-17T06:35:38.5529228Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2820 2025-07-17T06:35:38.5529886Z 2025-07-17T06:35:38.5530358Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2828 2025-07-17T06:35:38.5530924Z 2025-07-17T06:35:38.5531400Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2852 2025-07-17T06:35:38.5532043Z 2025-07-17T06:35:38.5532522Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2840 2025-07-17T06:35:38.5533098Z 2025-07-17T06:35:38.5533728Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2176 2025-07-17T06:35:38.5534455Z 2025-07-17T06:35:38.5534852Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2268 2025-07-17T06:35:38.5535344Z 2025-07-17T06:35:38.5535828Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2984 2025-07-17T06:35:38.5536407Z 2025-07-17T06:35:38.5537046Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3108 2025-07-17T06:35:38.5537786Z 2025-07-17T06:35:38.5538314Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3136 2025-07-17T06:35:38.5538879Z 2025-07-17T06:35:38.5539483Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3524 2025-07-17T06:35:38.5540193Z 2025-07-17T06:35:38.5540602Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3600 2025-07-17T06:35:38.5541180Z 2025-07-17T06:35:38.5541747Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4016 2025-07-17T06:35:38.5542408Z 2025-07-17T06:35:38.5542905Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a71855 /state1:0x41c64e6d 4276 2025-07-17T06:35:38.5543476Z 2025-07-17T06:35:38.5545149Z 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 4412 2025-07-17T06:35:38.5546904Z 2025-07-17T06:35:38.5547606Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4548 2025-07-17T06:35:38.5548389Z 2025-07-17T06:35:38.5548816Z vds.exe C:\Windows\System32\vds.exe 2732 2025-07-17T06:35:38.5549304Z 2025-07-17T06:35:38.5549876Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2316 2025-07-17T06:35:38.5550530Z 2025-07-17T06:35:38.5551233Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 2888 2025-07-17T06:35:38.5552089Z 2025-07-17T06:35:38.5553655Z 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 2908 2025-07-17T06:35:38.5555375Z 2025-07-17T06:35:38.5555782Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2332 2025-07-17T06:35:38.5556268Z 2025-07-17T06:35:38.5556784Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 2884 2025-07-17T06:35:38.5557383Z 2025-07-17T06:35:38.5557970Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s WdiSystemHost 1184 2025-07-17T06:35:38.5558662Z 2025-07-17T06:35:38.5559256Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3420 2025-07-17T06:35:38.5559953Z 2025-07-17T06:35:38.5560413Z msdtc.exe C:\Windows\System32\msdtc.exe 1900 2025-07-17T06:35:38.5560895Z 2025-07-17T06:35:38.5561455Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3748 2025-07-17T06:35:38.5562128Z 2025-07-17T06:35:38.5562585Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4348 2025-07-17T06:35:38.5563220Z 2025-07-17T06:35:38.5563684Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s wuauserv 492 2025-07-17T06:35:38.5564253Z 2025-07-17T06:35:38.5564785Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4716 2025-07-17T06:35:38.5565409Z 2025-07-17T06:35:38.5565935Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 2656 2025-07-17T06:35:38.5566534Z 2025-07-17T06:35:38.5566957Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4532 2025-07-17T06:35:38.5567452Z 2025-07-17T06:35:38.5567944Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1616 2025-07-17T06:35:38.5568518Z 2025-07-17T06:35:38.5569077Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4888 2025-07-17T06:35:38.5569659Z 2025-07-17T06:35:38.5570154Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 3988 2025-07-17T06:35:38.5570729Z 2025-07-17T06:35:38.5571135Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 676 2025-07-17T06:35:38.5571710Z 2025-07-17T06:35:38.5572193Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2740 2025-07-17T06:35:38.5572792Z 2025-07-17T06:35:38.5573312Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 2016 2025-07-17T06:35:38.5573937Z 2025-07-17T06:35:38.5574457Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 1888 2092 2696 2025-07-17T06:35:38.5575084Z 2025-07-17T06:35:38.5575481Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4468 2025-07-17T06:35:38.5575990Z 2025-07-17T06:35:38.5576454Z taskhostw.exe taskhostw.exe /RuntimeWide 4356 2025-07-17T06:35:38.5576962Z 2025-07-17T06:35:38.5577563Z ngentask.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:532 3656 2025-07-17T06:35:38.5578245Z 2025-07-17T06:35:38.5578659Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2476 2025-07-17T06:35:38.5579214Z 2025-07-17T06:35:38.5579810Z ngentask.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\NGenTask.exe" /RuntimeWide /StopEvent:1020 2780 2025-07-17T06:35:38.5580488Z 2025-07-17T06:35:38.5580907Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 596 2025-07-17T06:35:38.5581412Z 2025-07-17T06:35:38.5581911Z TrustedInstaller.exe C:\Windows\servicing\TrustedInstaller.exe 1808 2025-07-17T06:35:38.5582486Z 2025-07-17T06:35:38.5583271Z TiWorker.exe C:\Windows\winsxs\amd64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.17763.7313_none_56ed2c2b9919af2f\TiWorker.exe -Embedding 1028 2025-07-17T06:35:38.5584162Z 2025-07-17T06:35:38.5584681Z CompatTelRunner.exe "C:\Windows\system32\compattelrunner.exe" -maintenance 2164 2025-07-17T06:35:38.5585305Z 2025-07-17T06:35:38.5585770Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 3296 2025-07-17T06:35:38.5586300Z 2025-07-17T06:35:38.5586860Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1848 2025-07-17T06:35:38.5587522Z 2025-07-17T06:35:38.5588168Z CompatTelRunner.exe C:\Windows\system32\CompatTelRunner.exe -m:invagent.dll -f:RunUpdate -cv:+V2tYRFGOkiykpBx.5 2748 2025-07-17T06:35:38.5589431Z 2025-07-17T06:35:38.5589863Z svchost.exe C:\Windows\system32\svchost.exe -k defragsvc 2392 2025-07-17T06:35:38.5590408Z 2025-07-17T06:35:38.5591045Z ngen.exe "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 4220 2025-07-17T06:35:38.5591784Z 2025-07-17T06:35:38.5592501Z ngen.exe "C:\Windows\Microsoft.NET\Framework\v4.0.30319\ngen.exe" ExecuteQueuedItems /LegacyServiceBehavior 4436 2025-07-17T06:35:38.5593267Z 2025-07-17T06:35:38.5594216Z mscorsvw.exe C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorsvw.exe -StartupEvent 350 -InterruptEvent 0 -NGENProcess 344 -Pipe 34c -Comment "NGen Worker Process" 1324 2025-07-17T06:35:38.5595121Z 2025-07-17T06:35:38.5595937Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\8b3fbe7a-b1f8-4aaa-98a1-becf6e658a4e.ps1'" 612 2025-07-17T06:35:38.5596821Z 2025-07-17T06:35:38.5597803Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 3844 2025-07-17T06:35:38.5598489Z 2025-07-17T06:35:38.5598919Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 3316 2025-07-17T06:35:38.5599445Z 2025-07-17T06:35:38.5599449Z 2025-07-17T06:35:38.5599454Z 2025-07-17T06:35:38.6206795Z ##[group]Run pytorch/test-infra/.github/actions/setup-ssh@main 2025-07-17T06:35:38.6207246Z with: 2025-07-17T06:35:38.6207762Z github-secret: *** 2025-07-17T06:35:38.6209849Z instructions: To forward remote desktop on your local machine ssh as follows: ssh -L 3389:localhost:3389 %%username%%@%%hostname%% And then change password using `passwd` command. To start build locally, change working folder to \actions-runner\_work\pytorch\pytorch, Activate miniconda and Visual Studio environment, by running: call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat" x64 2025-07-17T06:35:38.6211805Z activate-with-label: false 2025-07-17T06:35:38.6212048Z label: with-ssh 2025-07-17T06:35:38.6212246Z remove-existing-keys: true 2025-07-17T06:35:38.6212542Z fail-silently: true 2025-07-17T06:35:38.6212728Z env: 2025-07-17T06:35:38.6212963Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:38.6213184Z ##[endgroup] 2025-07-17T06:35:38.7708565Z Please see https://github.com/pytorch/pytorch/wiki/Debugging-using-with-ssh-for-Github-Actions for more info. 2025-07-17T06:35:38.7711781Z Not on pull request and ciflow reference could not be extracted, skipping adding ssh keys 2025-07-17T06:35:38.7946891Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-07-17T06:35:38.7947294Z with: 2025-07-17T06:35:38.7947478Z no-sudo: true 2025-07-17T06:35:38.7947679Z submodules: recursive 2025-07-17T06:35:38.7947921Z fetch-depth: 0 2025-07-17T06:35:38.7948107Z env: 2025-07-17T06:35:38.7948283Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:38.7948507Z ##[endgroup] 2025-07-17T06:35:38.8268695Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-17T06:35:38.8269569Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-17T06:35:38.8289463Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:35:38.8289903Z env: 2025-07-17T06:35:38.8290085Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:38.8290312Z ##[endgroup] 2025-07-17T06:35:39.0550297Z ##[group]Run # Use all available CPUs for fetching 2025-07-17T06:35:39.0550670Z # Use all available CPUs for fetching 2025-07-17T06:35:39.0550976Z cd "${GITHUB_WORKSPACE}" 2025-07-17T06:35:39.0551283Z git config --global fetch.parallel 0 2025-07-17T06:35:39.0551617Z git config --global submodule.fetchJobs 0 2025-07-17T06:35:39.0551907Z  2025-07-17T06:35:39.0552210Z # Clean workspace. The default checkout action should also do this, but 2025-07-17T06:35:39.0552634Z # do it here as well just in case 2025-07-17T06:35:39.0552917Z if [[ -d .git ]]; then 2025-07-17T06:35:39.0553161Z  if [ -z "${NO_SUDO}" ]; then 2025-07-17T06:35:39.0553438Z  sudo git clean -ffdx 2025-07-17T06:35:39.0553665Z  else 2025-07-17T06:35:39.0553972Z  git clean -ffdx 2025-07-17T06:35:39.0554205Z  fi 2025-07-17T06:35:39.0554390Z fi 2025-07-17T06:35:39.0572799Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:35:39.0573229Z env: 2025-07-17T06:35:39.0573406Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:39.0573625Z NO_SUDO: true 2025-07-17T06:35:39.0573810Z ##[endgroup] 2025-07-17T06:35:39.2493138Z ##[group]Run actions/checkout@v4 2025-07-17T06:35:39.2493393Z with: 2025-07-17T06:35:39.2493593Z ref: a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:35:39.2493879Z fetch-depth: 0 2025-07-17T06:35:39.2494066Z submodules: recursive 2025-07-17T06:35:39.2494280Z show-progress: false 2025-07-17T06:35:39.2494496Z repository: pytorch/pytorch 2025-07-17T06:35:39.2495115Z token: *** 2025-07-17T06:35:39.2495437Z ssh-strict: true 2025-07-17T06:35:39.2495790Z ssh-user: git 2025-07-17T06:35:39.2496110Z persist-credentials: true 2025-07-17T06:35:39.2496525Z clean: true 2025-07-17T06:35:39.2496746Z sparse-checkout-cone-mode: true 2025-07-17T06:35:39.2496996Z fetch-tags: false 2025-07-17T06:35:39.2497193Z lfs: false 2025-07-17T06:35:39.2497370Z set-safe-directory: true 2025-07-17T06:35:39.2497579Z env: 2025-07-17T06:35:39.2497740Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:35:39.2497951Z ##[endgroup] 2025-07-17T06:35:39.3797136Z Syncing repository: pytorch/pytorch 2025-07-17T06:35:39.3798399Z ##[group]Getting Git version info 2025-07-17T06:35:39.3798797Z Working directory is 'C:\actions-runner\_work\pytorch\pytorch' 2025-07-17T06:35:39.3879642Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-07-17T06:35:39.4096173Z git version 2.49.0.windows.1 2025-07-17T06:35:39.4141029Z ##[endgroup] 2025-07-17T06:35:39.4152011Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\b47d00f6-6261-4672-b909-ef1f7855317d\.gitconfig' 2025-07-17T06:35:39.4168575Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\b47d00f6-6261-4672-b909-ef1f7855317d' before making global git config changes 2025-07-17T06:35:39.4171190Z Adding repository directory to the temporary git global config as a safe directory 2025-07-17T06:35:39.4178628Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:35:39.4423266Z Deleting the contents of 'C:\actions-runner\_work\pytorch\pytorch' 2025-07-17T06:35:39.4428736Z ##[group]Initializing the repository 2025-07-17T06:35:39.4439144Z [command]"C:\Program Files\Git\cmd\git.exe" init C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:35:39.8125891Z Initialized empty Git repository in C:/actions-runner/_work/pytorch/pytorch/.git/ 2025-07-17T06:35:39.8172086Z [command]"C:\Program Files\Git\cmd\git.exe" remote add origin https://github.com/pytorch/pytorch 2025-07-17T06:35:39.9462938Z ##[endgroup] 2025-07-17T06:35:39.9463355Z ##[group]Disabling automatic garbage collection 2025-07-17T06:35:39.9475203Z [command]"C:\Program Files\Git\cmd\git.exe" config --local gc.auto 0 2025-07-17T06:35:39.9708945Z ##[endgroup] 2025-07-17T06:35:39.9709335Z ##[group]Setting up auth 2025-07-17T06:35:39.9724183Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-07-17T06:35:39.9990972Z [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-07-17T06:35:44.1018685Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-17T06:35:44.1257514Z [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-07-17T06:35:44.4926222Z [command]"C:\Program Files\Git\cmd\git.exe" config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-07-17T06:35:44.5159616Z ##[endgroup] 2025-07-17T06:35:44.5160024Z ##[group]Fetching the repository 2025-07-17T06:35:44.5174879Z [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-07-17T06:36:41.4111643Z From https://github.com/pytorch/pytorch 2025-07-17T06:36:41.4112086Z * [new branch] 2.6.0.dev20241004+ -> origin/2.6.0.dev20241004+ 2025-07-17T06:36:41.4112579Z * [new branch] 20250616_dtype_docs -> origin/20250616_dtype_docs 2025-07-17T06:36:41.4113170Z * [new branch] HDCharles-2.6.0-release-notes -> origin/HDCharles-2.6.0-release-notes 2025-07-17T06:36:41.4114121Z * [new branch] JackCaoG/dynamo_make_fx_non_core_aten_ops -> origin/JackCaoG/dynamo_make_fx_non_core_aten_ops 2025-07-17T06:36:41.4115030Z * [new branch] PR-AOTInductorNoneBug -> origin/PR-AOTInductorNoneBug 2025-07-17T06:36:41.4115867Z * [new branch] PR-AOTInductorNoneBugFix -> origin/PR-AOTInductorNoneBugFix 2025-07-17T06:36:41.4116421Z * [new branch] PR-FixConfigsIssue -> origin/PR-FixConfigsIssue 2025-07-17T06:36:41.4116931Z * [new branch] PR-NoneBugFix-viable -> origin/PR-NoneBugFix-viable 2025-07-17T06:36:41.4117447Z * [new branch] PR-ResetToZero -> origin/PR-ResetToZero 2025-07-17T06:36:41.4117966Z * [new branch] Update-Flash-Packaging -> origin/Update-Flash-Packaging 2025-07-17T06:36:41.4118575Z * [new branch] ZainRizvi-patch-1 -> origin/ZainRizvi-patch-1 2025-07-17T06:36:41.4119176Z * [new branch] add-missing-args-normalization -> origin/add-missing-args-normalization 2025-07-17T06:36:41.4119770Z * [new branch] addUtilForLinuxBuild -> origin/addUtilForLinuxBuild 2025-07-17T06:36:41.4120317Z * [new branch] add_windows_testing_back -> origin/add_windows_testing_back 2025-07-17T06:36:41.4121512Z * [new branch] addmm-heuristic -> origin/addmm-heuristic 2025-07-17T06:36:41.4121985Z * [new branch] addsimde -> origin/addsimde 2025-07-17T06:36:41.4122409Z * [new branch] adi/test -> origin/adi/test 2025-07-17T06:36:41.4122837Z * [new branch] adi/test_fusions -> origin/adi/test_fusions 2025-07-17T06:36:41.4123339Z * [new branch] adi/test_presve_change -> origin/adi/test_presve_change 2025-07-17T06:36:41.4124467Z * [new branch] adi/testpresve_change -> origin/adi/testpresve_change 2025-07-17T06:36:41.4124983Z * [new branch] adi/update_openblas -> origin/adi/update_openblas 2025-07-17T06:36:41.4125497Z * [new branch] aditew01/test/vec_bf16 -> origin/aditew01/test/vec_bf16 2025-07-17T06:36:41.4126039Z * [new branch] ah-globalfeedback-hook -> origin/ah-globalfeedback-hook 2025-07-17T06:36:41.4126559Z * [new branch] albanD-patch-1 -> origin/albanD-patch-1 2025-07-17T06:36:41.4127018Z * [new branch] alt-disable -> origin/alt-disable 2025-07-17T06:36:41.4127461Z * [new branch] angelayi/155426 -> origin/angelayi/155426 2025-07-17T06:36:41.4127923Z * [new branch] angelayi/157183 -> origin/angelayi/157183 2025-07-17T06:36:41.4128458Z * [new branch] angelayi/aoti_additional_files -> origin/angelayi/aoti_additional_files 2025-07-17T06:36:41.4129038Z * [new branch] angelayi/aoti_custom_op -> origin/angelayi/aoti_custom_op 2025-07-17T06:36:41.4129558Z * [new branch] angelayi/benchmark -> origin/angelayi/benchmark 2025-07-17T06:36:41.4130067Z * [new branch] angelayi/benchmark2 -> origin/angelayi/benchmark2 2025-07-17T06:36:41.4130685Z * [new branch] angelayi/change_pytree_serialization -> origin/angelayi/change_pytree_serialization 2025-07-17T06:36:41.4131286Z * [new branch] angelayi/cpp_loader -> origin/angelayi/cpp_loader 2025-07-17T06:36:41.4131802Z * [new branch] angelayi/customop -> origin/angelayi/customop 2025-07-17T06:36:41.4132268Z * [new branch] angelayi/del_lib -> origin/angelayi/del_lib 2025-07-17T06:36:41.4132722Z * [new branch] angelayi/docs -> origin/angelayi/docs 2025-07-17T06:36:41.4133159Z * [new branch] angelayi/docs2 -> origin/angelayi/docs2 2025-07-17T06:36:41.4133668Z * [new branch] angelayi/dynamo_fake_input -> origin/angelayi/dynamo_fake_input 2025-07-17T06:36:41.4134191Z * [new branch] angelayi/errmsg -> origin/angelayi/errmsg 2025-07-17T06:36:41.4134801Z * [new branch] angelayi/fake_device -> origin/angelayi/fake_device 2025-07-17T06:36:41.4135343Z * [new branch] angelayi/int_lift_constants -> origin/angelayi/int_lift_constants 2025-07-17T06:36:41.4135875Z * [new branch] angelayi/logging.bak -> origin/angelayi/logging.bak 2025-07-17T06:36:41.4136393Z * [new branch] angelayi/logging2 -> origin/angelayi/logging2 2025-07-17T06:36:41.4136902Z * [new branch] angelayi/no_so_weight -> origin/angelayi/no_so_weight 2025-07-17T06:36:41.4137384Z * [new branch] angelayi/pytree -> origin/angelayi/pytree 2025-07-17T06:36:41.7450783Z * [new branch] angelayi/scan_layers -> origin/angelayi/scan_layers 2025-07-17T06:36:41.7451716Z * [new branch] angelayi/symint_input -> origin/angelayi/symint_input 2025-07-17T06:36:41.7452641Z * [new branch] angelayi/torch_size -> origin/angelayi/torch_size 2025-07-17T06:36:41.7453233Z * [new branch] angelayi/torchgenooops -> origin/angelayi/torchgenooops 2025-07-17T06:36:41.7453976Z * [new branch] angelayi/update_schema_msg -> origin/angelayi/update_schema_msg 2025-07-17T06:36:41.7454510Z * [new branch] aoti_static_linkage -> origin/aoti_static_linkage 2025-07-17T06:36:41.7455064Z * [new branch] atalman-inductor-perf-cu124 -> origin/atalman-inductor-perf-cu124 2025-07-17T06:36:41.7455700Z * [new branch] atalman-inductor-perf-cu124.1 -> origin/atalman-inductor-perf-cu124.1 2025-07-17T06:36:41.7456335Z * [new branch] atalman-patch-1 -> origin/atalman-patch-1 2025-07-17T06:36:41.7456851Z * [new branch] atalman-patch-2 -> origin/atalman-patch-2 2025-07-17T06:36:41.7457323Z * [new branch] atalman-patch-3 -> origin/atalman-patch-3 2025-07-17T06:36:41.7457787Z * [new branch] atalman-patch-4 -> origin/atalman-patch-4 2025-07-17T06:36:41.7458260Z * [new branch] atalman-patch-5 -> origin/atalman-patch-5 2025-07-17T06:36:41.7458741Z * [new branch] atalman-patch-6 -> origin/atalman-patch-6 2025-07-17T06:36:41.7459242Z * [new branch] atalman-patch-7 -> origin/atalman-patch-7 2025-07-17T06:36:41.7459706Z * [new branch] atalman-patch-8 -> origin/atalman-patch-8 2025-07-17T06:36:41.7460187Z * [new branch] atalman_inductor_2.3.0 -> origin/atalman_inductor_2.3.0 2025-07-17T06:36:41.7460709Z * [new branch] atalman_inductor_2.3.1 -> origin/atalman_inductor_2.3.1 2025-07-17T06:36:41.7461214Z * [new branch] atalman_inductor_2.4.0 -> origin/atalman_inductor_2.4.0 2025-07-17T06:36:41.7461719Z * [new branch] atalman_inductor_2.4.x -> origin/atalman_inductor_2.4.x 2025-07-17T06:36:41.7462232Z * [new branch] base/1.5 -> origin/base/1.5 2025-07-17T06:36:41.7462814Z * [new branch] batching_sdpa_efficient_attention -> origin/batching_sdpa_efficient_attention 2025-07-17T06:36:41.7463412Z * [new branch] benchmark-updates -> origin/benchmark-updates 2025-07-17T06:36:41.7463918Z * [new branch] benchmarking-script -> origin/benchmarking-script 2025-07-17T06:36:41.7464649Z * [new branch] benjaminglass1/mark-large-tensor-tests-serial -> origin/benjaminglass1/mark-large-tensor-tests-serial 2025-07-17T06:36:41.7465378Z * [new branch] bertmaher/pinbump26 -> origin/bertmaher/pinbump26 2025-07-17T06:36:41.7465868Z * [new branch] bertrand/cutlass -> origin/bertrand/cutlass 2025-07-17T06:36:41.7466356Z * [new branch] bf/cg-capture-size -> origin/bf/cg-capture-size 2025-07-17T06:36:41.7466831Z * [new branch] bf/cg-remove-check -> origin/bf/cg-remove-check 2025-07-17T06:36:41.7467436Z * [new branch] bf/cudagraph -> origin/bf/cudagraph 2025-07-17T06:36:41.7468095Z * [new branch] bf/cudagraph-disable-input-mutation -> origin/bf/cudagraph-disable-input-mutation 2025-07-17T06:36:41.7469079Z * [new branch] bf/cudagraph-enable-input-mutation-support-benchmark -> origin/bf/cudagraph-enable-input-mutation-support-benchmark 2025-07-17T06:36:41.7469932Z * [new branch] bf/cudagraph-partition -> origin/bf/cudagraph-partition 2025-07-17T06:36:41.7470477Z * [new branch] bf/donated-buffer-bench -> origin/bf/donated-buffer-bench 2025-07-17T06:36:41.7471008Z * [new branch] bf/kernel-benchmark -> origin/bf/kernel-benchmark 2025-07-17T06:36:41.7471526Z * [new branch] bf/partition-move-cpu -> origin/bf/partition-move-cpu 2025-07-17T06:36:41.7472045Z * [new branch] bf/partition-turn-on -> origin/bf/partition-turn-on 2025-07-17T06:36:41.7472667Z * [new branch] bf/recompile-context -> origin/bf/recompile-context 2025-07-17T06:36:41.7473203Z * [new branch] bf/reduce-scatter-copy-in -> origin/bf/reduce-scatter-copy-in 2025-07-17T06:36:41.7473803Z * [new branch] bf/remove-check-55b0c39d -> origin/bf/remove-check-55b0c39d 2025-07-17T06:36:41.7474349Z * [new branch] bf16adamw -> origin/bf16adamw 2025-07-17T06:36:41.7474839Z * [new branch] bisect_perf_hf_T5_3acc6eac492 -> origin/bisect_perf_hf_T5_3acc6eac492 2025-07-17T06:36:41.7475498Z * [new branch] bisect_perf_hf_T5_3fcf66f61fb -> origin/bisect_perf_hf_T5_3fcf66f61fb 2025-07-17T06:36:41.7476052Z * [new branch] bisect_perf_hf_T5_4009d154129 -> origin/bisect_perf_hf_T5_4009d154129 2025-07-17T06:36:41.7476600Z * [new branch] bisect_perf_hf_T5_40d0740e73d -> origin/bisect_perf_hf_T5_40d0740e73d 2025-07-17T06:36:41.9855602Z * [new branch] bisect_perf_hf_T5_5268754e -> origin/bisect_perf_hf_T5_5268754e 2025-07-17T06:36:41.9856370Z * [new branch] bisect_perf_hf_T5_7d89a8d385c -> origin/bisect_perf_hf_T5_7d89a8d385c 2025-07-17T06:36:41.9856944Z * [new branch] bisect_perf_hf_T5_b7a25c1ee7c -> origin/bisect_perf_hf_T5_b7a25c1ee7c 2025-07-17T06:36:41.9857506Z * [new branch] bisect_perf_hf_T5_c25b201583f -> origin/bisect_perf_hf_T5_c25b201583f 2025-07-17T06:36:41.9858049Z * [new branch] bisect_perf_hf_T5_c93e57efac0 -> origin/bisect_perf_hf_T5_c93e57efac0 2025-07-17T06:36:41.9858653Z * [new branch] bisect_perf_hf_T5_ca9813ea149 -> origin/bisect_perf_hf_T5_ca9813ea149 2025-07-17T06:36:41.9859249Z * [new branch] bisect_perf_hf_T5_d65f194a -> origin/bisect_perf_hf_T5_d65f194a 2025-07-17T06:36:41.9859776Z * [new branch] bisect_perf_hf_T5_da94ab0b -> origin/bisect_perf_hf_T5_da94ab0b 2025-07-17T06:36:41.9860342Z * [new branch] bisect_perf_hf_T5_da94ab0b_new -> origin/bisect_perf_hf_T5_da94ab0b_new 2025-07-17T06:36:41.9860915Z * [new branch] bisect_perf_hf_T5_db4e8a1d8a8 -> origin/bisect_perf_hf_T5_db4e8a1d8a8 2025-07-17T06:36:41.9861488Z * [new branch] bisect_perf_hf_T5_e0d97e936a2 -> origin/bisect_perf_hf_T5_e0d97e936a2 2025-07-17T06:36:41.9862039Z * [new branch] bisect_perf_hf_T5_f23621ec563 -> origin/bisect_perf_hf_T5_f23621ec563 2025-07-17T06:36:41.9862558Z * [new branch] bit8_transpose_pack -> origin/bit8_transpose_pack 2025-07-17T06:36:41.9863088Z * [new branch] bowbao/bench_updates_stage -> origin/bowbao/bench_updates_stage 2025-07-17T06:36:41.9863608Z * [new branch] bowbao/dort_rewriter -> origin/bowbao/dort_rewriter 2025-07-17T06:36:41.9864102Z * [new branch] bowbao/wip_prs -> origin/bowbao/wip_prs 2025-07-17T06:36:41.9864690Z * [new branch] bowenbao/partial_min_max_reduce -> origin/bowenbao/partial_min_max_reduce 2025-07-17T06:36:41.9865539Z * [new branch] brister/always_wrapper_ir -> origin/brister/always_wrapper_ir 2025-07-17T06:36:41.9866105Z * [new branch] brister/test_block_ptr_same -> origin/brister/test_block_ptr_same 2025-07-17T06:36:41.9866738Z * [new branch] brister/tiled_reduction_no_numel_check -> origin/brister/tiled_reduction_no_numel_check 2025-07-17T06:36:41.9867448Z * [new branch] brister/wrapper_fx_precomputed_size -> origin/brister/wrapper_fx_precomputed_size 2025-07-17T06:36:41.9868044Z * [new branch] ca_0431d47eaa -> origin/ca_0431d47eaa 2025-07-17T06:36:41.9868482Z * [new branch] ca_fix_0431d47eaa -> origin/ca_fix_0431d47eaa 2025-07-17T06:36:41.9869418Z * [new branch] camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 -> origin/camyll/revert-94bc900da97ad7f3c35b3b819bb53b23c74b581a-for-release-2.8 2025-07-17T06:36:41.9871420Z * [new branch] camyll/test_precommit_hooks_lintrunner -> origin/camyll/test_precommit_hooks_lintrunner 2025-07-17T06:36:41.9872331Z * [new branch] camyllh/cherry-pick-155109-revert-to-release2.8 -> origin/camyllh/cherry-pick-155109-revert-to-release2.8 2025-07-17T06:36:41.9873199Z * [new branch] camyllh/cherrypick-151547-for-release28 -> origin/camyllh/cherrypick-151547-for-release28 2025-07-17T06:36:41.9873962Z * [new branch] camyllh/cherrypick_152932_for_release_2.8 -> origin/camyllh/cherrypick_152932_for_release_2.8 2025-07-17T06:36:41.9874706Z * [new branch] camyllh/revert-138222-in-release-2.8 -> origin/camyllh/revert-138222-in-release-2.8 2025-07-17T06:36:41.9875560Z * [new branch] camyllh/revert-155412-on-release-branch -> origin/camyllh/revert-155412-on-release-branch 2025-07-17T06:36:41.9876338Z * [new branch] camyllh/revert-156552-on-release-2.8 -> origin/camyllh/revert-156552-on-release-2.8 2025-07-17T06:36:41.9877069Z * [new branch] camyllh/revert_156517_on_release_2.8 -> origin/camyllh/revert_156517_on_release_2.8 2025-07-17T06:36:41.9877694Z * [new branch] camyllh/test_setup_hooks_push -> origin/camyllh/test_setup_hooks_push 2025-07-17T06:36:41.9878397Z * [new branch] cherry-pick-147095-by-pytorch_bot_bot_ -> origin/cherry-pick-147095-by-pytorch_bot_bot_ 2025-07-17T06:36:41.9879137Z * [new branch] cherry-pick-149654-by-pytorch_bot_bot_ -> origin/cherry-pick-149654-by-pytorch_bot_bot_ 2025-07-17T06:36:41.9879867Z * [new branch] cherry-pick-151939-by-pytorch_bot_bot_ -> origin/cherry-pick-151939-by-pytorch_bot_bot_ 2025-07-17T06:36:41.9880602Z * [new branch] cherry-pick-154174-by-pytorch_bot_bot_ -> origin/cherry-pick-154174-by-pytorch_bot_bot_ 2025-07-17T06:36:41.9881326Z * [new branch] cherry-pick-155214-by-pytorch_bot_bot_ -> origin/cherry-pick-155214-by-pytorch_bot_bot_ 2025-07-17T06:36:41.9882106Z * [new branch] cherry-pick-155255-by-pytorch_bot_bot_ -> origin/cherry-pick-155255-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0766953Z * [new branch] cherry-pick-155896-by-pytorch_bot_bot_ -> origin/cherry-pick-155896-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0767733Z * [new branch] cherry-pick-156260-by-pytorch_bot_bot_ -> origin/cherry-pick-156260-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0768490Z * [new branch] cherry-pick-156499-by-pytorch_bot_bot_ -> origin/cherry-pick-156499-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0769222Z * [new branch] cherry-pick-156664-by-pytorch_bot_bot_ -> origin/cherry-pick-156664-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0769950Z * [new branch] cherry-pick-156708-by-pytorch_bot_bot_ -> origin/cherry-pick-156708-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0770685Z * [new branch] cherry-pick-156719-by-pytorch_bot_bot_ -> origin/cherry-pick-156719-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0771601Z * [new branch] cherry-pick-156731-by-pytorch_bot_bot_ -> origin/cherry-pick-156731-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0772331Z * [new branch] cherry-pick-156783-by-pytorch_bot_bot_ -> origin/cherry-pick-156783-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0773073Z * [new branch] cherry-pick-156847-by-pytorch_bot_bot_ -> origin/cherry-pick-156847-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0773788Z * [new branch] cherry-pick-156888-by-pytorch_bot_bot_ -> origin/cherry-pick-156888-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0774515Z * [new branch] cherry-pick-156898-by-pytorch_bot_bot_ -> origin/cherry-pick-156898-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0775236Z * [new branch] cherry-pick-156910-by-pytorch_bot_bot_ -> origin/cherry-pick-156910-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0775969Z * [new branch] cherry-pick-157014-by-pytorch_bot_bot_ -> origin/cherry-pick-157014-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0776801Z * [new branch] cherry-pick-157017-by-pytorch_bot_bot_ -> origin/cherry-pick-157017-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0777524Z * [new branch] cherry-pick-157023-by-pytorch_bot_bot_ -> origin/cherry-pick-157023-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0778253Z * [new branch] cherry-pick-157130-by-pytorch_bot_bot_ -> origin/cherry-pick-157130-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0778988Z * [new branch] cherry-pick-157292-by-pytorch_bot_bot_ -> origin/cherry-pick-157292-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0779714Z * [new branch] cherry-pick-157322-by-pytorch_bot_bot_ -> origin/cherry-pick-157322-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0780442Z * [new branch] cherry-pick-157453-by-pytorch_bot_bot_ -> origin/cherry-pick-157453-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0781165Z * [new branch] cherry-pick-157466-by-pytorch_bot_bot_ -> origin/cherry-pick-157466-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0781901Z * [new branch] cherry-pick-157467-by-pytorch_bot_bot_ -> origin/cherry-pick-157467-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0782626Z * [new branch] cherry-pick-157503-by-pytorch_bot_bot_ -> origin/cherry-pick-157503-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0783346Z * [new branch] cherry-pick-157513-by-pytorch_bot_bot_ -> origin/cherry-pick-157513-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0784076Z * [new branch] cherry-pick-157516-by-pytorch_bot_bot_ -> origin/cherry-pick-157516-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0784795Z * [new branch] cherry-pick-157558-by-pytorch_bot_bot_ -> origin/cherry-pick-157558-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0785522Z * [new branch] cherry-pick-157598-by-pytorch_bot_bot_ -> origin/cherry-pick-157598-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0786250Z * [new branch] cherry-pick-157600-by-pytorch_bot_bot_ -> origin/cherry-pick-157600-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0786982Z * [new branch] cherry-pick-157630-by-pytorch_bot_bot_ -> origin/cherry-pick-157630-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0787713Z * [new branch] cherry-pick-157695-by-pytorch_bot_bot_ -> origin/cherry-pick-157695-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0788430Z * [new branch] cherry-pick-157732-by-pytorch_bot_bot_ -> origin/cherry-pick-157732-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0789166Z * [new branch] cherry-pick-157733-by-pytorch_bot_bot_ -> origin/cherry-pick-157733-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0789895Z * [new branch] cherry-pick-157843-by-pytorch_bot_bot_ -> origin/cherry-pick-157843-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0790617Z * [new branch] cherry-pick-158064-by-pytorch_bot_bot_ -> origin/cherry-pick-158064-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0791353Z * [new branch] cherry-pick-158126-by-pytorch_bot_bot_ -> origin/cherry-pick-158126-by-pytorch_bot_bot_ 2025-07-17T06:36:42.0792176Z * [new branch] cherry-pick-158152-by-pytorch_bot_bot_ -> origin/cherry-pick-158152-by-pytorch_bot_bot_ 2025-07-17T06:36:42.2335329Z * [new branch] cherry-pick-158301-by-pytorch_bot_bot_ -> origin/cherry-pick-158301-by-pytorch_bot_bot_ 2025-07-17T06:36:42.2336001Z * [new branch] chilli/flex_vllm -> origin/chilli/flex_vllm 2025-07-17T06:36:42.2336486Z * [new branch] ck-epilogue-fix -> origin/ck-epilogue-fix 2025-07-17T06:36:42.2337005Z * [new branch] ckluk2-compileThread-1 -> origin/ckluk2-compileThread-1 2025-07-17T06:36:42.2337563Z * [new branch] ckluk2-compileThread-2 -> origin/ckluk2-compileThread-2 2025-07-17T06:36:42.2338103Z * [new branch] ckluk2-compileThread-64 -> origin/ckluk2-compileThread-64 2025-07-17T06:36:42.2338610Z * [new branch] ckluk2-test-1 -> origin/ckluk2-test-1 2025-07-17T06:36:42.2339928Z * [new branch] cleantest1 -> origin/cleantest1 2025-07-17T06:36:42.2341120Z * [new branch] codex/create-test-for-tensor-memory-leak-in-cudagraph -> origin/codex/create-test-for-tensor-memory-leak-in-cudagraph 2025-07-17T06:36:42.2342192Z * [new branch] codex/remove-trigger_azure_pipeline.py-and-references -> origin/codex/remove-trigger_azure_pipeline.py-and-references 2025-07-17T06:36:42.2343139Z * [new branch] codex/update-default-size_hint-fallback-value -> origin/codex/update-default-size_hint-fallback-value 2025-07-17T06:36:42.2344101Z * [new branch] codex/update-size_hint-api-to-handle-unbacked-symints -> origin/codex/update-size_hint-api-to-handle-unbacked-symints 2025-07-17T06:36:42.2344868Z * [new branch] collective_c_shim -> origin/collective_c_shim 2025-07-17T06:36:42.2346443Z * [new branch] compile_fsdp2_disable_stream_and_event -> origin/compile_fsdp2_disable_stream_and_event 2025-07-17T06:36:42.2347101Z * [new branch] comply-with-setuptools -> origin/comply-with-setuptools 2025-07-17T06:36:42.2347590Z * [new branch] context_test -> origin/context_test 2025-07-17T06:36:42.2348086Z * [new branch] convert-complex-numbers -> origin/convert-complex-numbers 2025-07-17T06:36:42.2348618Z * [new branch] copilot/fix-157446 -> origin/copilot/fix-157446 2025-07-17T06:36:42.2349079Z * [new branch] copy_graph -> origin/copy_graph 2025-07-17T06:36:42.2349543Z * [new branch] cpio/fix_new_ami_tests -> origin/cpio/fix_new_ami_tests 2025-07-17T06:36:42.2350090Z * [new branch] csl/add_file_merge_conflict_csv -> origin/csl/add_file_merge_conflict_csv 2025-07-17T06:36:42.2350661Z * [new branch] csl/always_produce_xml -> origin/csl/always_produce_xml 2025-07-17T06:36:42.2352175Z * [new branch] csl/build_test_more_procs -> origin/csl/build_test_more_procs 2025-07-17T06:36:42.2352725Z * [new branch] csl/build_test_more_procs2 -> origin/csl/build_test_more_procs2 2025-07-17T06:36:42.2353344Z * [new branch] csl/ci_upload_artifacts_with_running -> origin/csl/ci_upload_artifacts_with_running 2025-07-17T06:36:42.2353975Z * [new branch] csl/clean_up_max_jobs_override -> origin/csl/clean_up_max_jobs_override 2025-07-17T06:36:42.2354521Z * [new branch] csl/clean_up_more_tags -> origin/csl/clean_up_more_tags 2025-07-17T06:36:42.2355129Z * [new branch] csl/disable_periodic_tests -> origin/csl/disable_periodic_tests 2025-07-17T06:36:42.2355649Z * [new branch] csl/docker_instru_ssh -> origin/csl/docker_instru_ssh 2025-07-17T06:36:42.2356215Z * [new branch] csl/faketensortest_super_setup -> origin/csl/faketensortest_super_setup 2025-07-17T06:36:42.2357984Z * [new branch] csl/fix_docker_imgs_for_release -> origin/csl/fix_docker_imgs_for_release 2025-07-17T06:36:42.2358560Z * [new branch] csl/fix_flaky_dist_test -> origin/csl/fix_flaky_dist_test 2025-07-17T06:36:42.2359047Z * [new branch] csl/fix_rocm_mem -> origin/csl/fix_rocm_mem 2025-07-17T06:36:42.2359481Z * [new branch] csl/katex -> origin/csl/katex 2025-07-17T06:36:42.2359939Z * [new branch] csl/keep_going_main -> origin/csl/keep_going_main 2025-07-17T06:36:42.2360409Z * [new branch] csl/larger_runner -> origin/csl/larger_runner 2025-07-17T06:36:42.2360901Z * [new branch] csl/lintrunner_stuff -> origin/csl/lintrunner_stuff 2025-07-17T06:36:42.2361379Z * [new branch] csl/mps_sharding -> origin/csl/mps_sharding 2025-07-17T06:36:42.2361878Z * [new branch] csl/multistage_docker -> origin/csl/multistage_docker 2025-07-17T06:36:42.2363342Z * [new branch] csl/per_proc_mem -> origin/csl/per_proc_mem 2025-07-17T06:36:42.2363950Z * [new branch] csl/print_set_output -> origin/csl/print_set_output 2025-07-17T06:36:42.2364460Z * [new branch] csl/pytest_timeout -> origin/csl/pytest_timeout 2025-07-17T06:36:42.2364945Z * [new branch] csl/rerun_exit_error -> origin/csl/rerun_exit_error 2025-07-17T06:36:42.3919861Z * [new branch] csl/reuse_old_whl_renames -> origin/csl/reuse_old_whl_renames 2025-07-17T06:36:42.3920430Z * [new branch] csl/revert_open -> origin/csl/revert_open 2025-07-17T06:36:42.3920904Z * [new branch] csl/rocm_binary -> origin/csl/rocm_binary 2025-07-17T06:36:42.3921373Z * [new branch] csl/rocm_inductor -> origin/csl/rocm_inductor 2025-07-17T06:36:42.3921844Z * [new branch] csl/skip_build -> origin/csl/skip_build 2025-07-17T06:36:42.3922330Z * [new branch] csl/td_dynamo -> origin/csl/td_dynamo 2025-07-17T06:36:42.3922869Z * [new branch] csl/test_cuda_build_large_runner -> origin/csl/test_cuda_build_large_runner 2025-07-17T06:36:42.3923497Z * [new branch] csl/update_mobile_build_docker_img -> origin/csl/update_mobile_build_docker_img 2025-07-17T06:36:42.3925218Z * [new branch] csl/viable_strict_concurrency_group -> origin/csl/viable_strict_concurrency_group 2025-07-17T06:36:42.3925799Z * [new branch] cublasltrelax2 -> origin/cublasltrelax2 2025-07-17T06:36:42.3926271Z * [new branch] cublasrelax2 -> origin/cublasrelax2 2025-07-17T06:36:42.3926765Z * [new branch] cudnnsdparefactor -> origin/cudnnsdparefactor 2025-07-17T06:36:42.3927266Z * [new branch] custom_lowering_dict -> origin/custom_lowering_dict 2025-07-17T06:36:42.3927760Z * [new branch] d4l3k/delete_hook -> origin/d4l3k/delete_hook 2025-07-17T06:36:42.3928224Z * [new branch] d4l3k/dist_queue -> origin/d4l3k/dist_queue 2025-07-17T06:36:42.3928672Z * [new branch] d4l3k/fix_h100_ci -> origin/d4l3k/fix_h100_ci 2025-07-17T06:36:42.3929129Z * [new branch] d4l3k/wait_stream -> origin/d4l3k/wait_stream 2025-07-17T06:36:42.3930247Z * [new branch] dcp_zoc -> origin/dcp_zoc 2025-07-17T06:36:42.3931098Z * [new branch] delete-quant-docs -> origin/delete-quant-docs 2025-07-17T06:36:42.3931778Z * [new branch] dependabot/pip/dot-ci/docker/protobuf-5.29.5 -> origin/dependabot/pip/dot-ci/docker/protobuf-5.29.5 2025-07-17T06:36:42.3932670Z * [new branch] dependabot/pip/tools/build/bazel/requests-2.32.4 -> origin/dependabot/pip/tools/build/bazel/requests-2.32.4 2025-07-17T06:36:42.3933595Z * [new branch] deprecation_decorator -> origin/deprecation_decorator 2025-07-17T06:36:42.3934174Z * [new branch] desertfire/test_cpp_wrapper -> origin/desertfire/test_cpp_wrapper 2025-07-17T06:36:42.3934804Z * [new branch] desertfire/triton-cpu-for-aarch64 -> origin/desertfire/triton-cpu-for-aarch64 2025-07-17T06:36:42.3936563Z * [new branch] dev/joona/MPSNDArrayAdd -> origin/dev/joona/MPSNDArrayAdd 2025-07-17T06:36:42.3937100Z * [new branch] dev/joona/Unranked -> origin/dev/joona/Unranked 2025-07-17T06:36:42.3937583Z * [new branch] dev/joona/cat -> origin/dev/joona/cat 2025-07-17T06:36:42.3938087Z * [new branch] dev/joona/cat_remove_graph -> origin/dev/joona/cat_remove_graph 2025-07-17T06:36:42.3938627Z * [new branch] dev/joona/cumsumerrmsg -> origin/dev/joona/cumsumerrmsg 2025-07-17T06:36:42.3939158Z * [new branch] dev/joona/embeddingbag -> origin/dev/joona/embeddingbag 2025-07-17T06:36:42.3940392Z * [new branch] dev/joona/getTensorsString -> origin/dev/joona/getTensorsString 2025-07-17T06:36:42.3941100Z * [new branch] dev/joona/maxpool2dwithindices_errmsg -> origin/dev/joona/maxpool2dwithindices_errmsg 2025-07-17T06:36:42.3942874Z * [new branch] dev/joona/mps_linear_macos14 -> origin/dev/joona/mps_linear_macos14 2025-07-17T06:36:42.3943385Z * [new branch] dev/joona/sdpa -> origin/dev/joona/sdpa 2025-07-17T06:36:42.3943879Z * [new branch] dev/joona/sdpa_nans -> origin/dev/joona/sdpa_nans 2025-07-17T06:36:42.3944449Z * [new branch] dev/joona/synchronize_benchmark -> origin/dev/joona/synchronize_benchmark 2025-07-17T06:36:42.3945025Z * [new branch] dev/joona/topk_newapi -> origin/dev/joona/topk_newapi 2025-07-17T06:36:42.3945524Z * [new branch] dev/joona/type_inf -> origin/dev/joona/type_inf 2025-07-17T06:36:42.3946018Z * [new branch] dev/joona/upsize3d -> origin/dev/joona/upsize3d 2025-07-17T06:36:42.3946471Z * [new branch] disable -> origin/disable 2025-07-17T06:36:42.3946867Z * [new branch] divup -> origin/divup 2025-07-17T06:36:42.3948435Z * [new branch] divyanshk-log-api-usage-datapipes-1 -> origin/divyanshk-log-api-usage-datapipes-1 2025-07-17T06:36:42.3949053Z * [new branch] e2e-baseline -> origin/e2e-baseline 2025-07-17T06:36:42.3949548Z * [new branch] embg/test_inductor_ci_128B -> origin/embg/test_inductor_ci_128B 2025-07-17T06:36:42.5737499Z * [new branch] embg/test_inductor_ci_base -> origin/embg/test_inductor_ci_base 2025-07-17T06:36:42.5738135Z * [new branch] embg/test_inductor_ci_control -> origin/embg/test_inductor_ci_control 2025-07-17T06:36:42.5738747Z * [new branch] embg/triton_l2_prefetch_128B -> origin/embg/triton_l2_prefetch_128B 2025-07-17T06:36:42.5739338Z * [new branch] embg/triton_l2_prefetch_256B -> origin/embg/triton_l2_prefetch_256B 2025-07-17T06:36:42.5739892Z * [new branch] enable-b200-benchmark -> origin/enable-b200-benchmark 2025-07-17T06:36:42.5740384Z * [new branch] enable_td_rocm -> origin/enable_td_rocm 2025-07-17T06:36:42.5740823Z * [new branch] eqy-patch-1 -> origin/eqy-patch-1 2025-07-17T06:36:42.5741271Z * [new branch] eqy-patch-10 -> origin/eqy-patch-10 2025-07-17T06:36:42.5741780Z * [new branch] example-convert-torch.nn -> origin/example-convert-torch.nn 2025-07-17T06:36:42.5742331Z * [new branch] exclamaforte/amd-ma -> origin/exclamaforte/amd-ma 2025-07-17T06:36:42.5743006Z * [new branch] exclamaforte/bump-transformer-version -> origin/exclamaforte/bump-transformer-version 2025-07-17T06:36:42.5743992Z * [new branch] exclamaforte/combo-kernels-perf-run -> origin/exclamaforte/combo-kernels-perf-run 2025-07-17T06:36:42.5744734Z * [new branch] exclamaforte/debug-autotuner-profile -> origin/exclamaforte/debug-autotuner-profile 2025-07-17T06:36:42.5745411Z * [new branch] exclamaforte/do_bench_refactor -> origin/exclamaforte/do_bench_refactor 2025-07-17T06:36:42.5746080Z * [new branch] exclamaforte/enable-mem-dep-fusion -> origin/exclamaforte/enable-mem-dep-fusion 2025-07-17T06:36:42.5746807Z * [new branch] exclamaforte/fix-trace-parsing-fx-svg -> origin/exclamaforte/fix-trace-parsing-fx-svg 2025-07-17T06:36:42.5747615Z * [new branch] exclamaforte/force-pointwise-cat-perf-run -> origin/exclamaforte/force-pointwise-cat-perf-run 2025-07-17T06:36:42.5748313Z * [new branch] exclamaforte/fusion-data -> origin/exclamaforte/fusion-data 2025-07-17T06:36:42.5748964Z * [new branch] exclamaforte/gemm-benchmark-run -> origin/exclamaforte/gemm-benchmark-run 2025-07-17T06:36:42.5749774Z * [new branch] exclamaforte/gemm-export-model -> origin/exclamaforte/gemm-export-model 2025-07-17T06:36:42.5750382Z * [new branch] exclamaforte/gemm-model -> origin/exclamaforte/gemm-model 2025-07-17T06:36:42.5751088Z * [new branch] exclamaforte/gemm-model-all-data-collection -> origin/exclamaforte/gemm-model-all-data-collection 2025-07-17T06:36:42.5751807Z * [new branch] exclamaforte/gemm-to-amd -> origin/exclamaforte/gemm-to-amd 2025-07-17T06:36:42.5752424Z * [new branch] exclamaforte/heuristic-choices -> origin/exclamaforte/heuristic-choices 2025-07-17T06:36:42.5753055Z * [new branch] exclamaforte/just-gemm-model -> origin/exclamaforte/just-gemm-model 2025-07-17T06:36:42.5753615Z * [new branch] exclamaforte/log_mul -> origin/exclamaforte/log_mul 2025-07-17T06:36:42.5754172Z * [new branch] exclamaforte/memory-counter -> origin/exclamaforte/memory-counter 2025-07-17T06:36:42.5754937Z * [new branch] exclamaforte/scheduler-refactor -> origin/exclamaforte/scheduler-refactor 2025-07-17T06:36:42.5755613Z * [new branch] exclamaforte/test_cpp_wrapper_mode -> origin/exclamaforte/test_cpp_wrapper_mode 2025-07-17T06:36:42.5756324Z * [new branch] exclamaforte/update-autotune-configs -> origin/exclamaforte/update-autotune-configs 2025-07-17T06:36:42.5757103Z * [new branch] exclamaforte/update-autotune-configs-2 -> origin/exclamaforte/update-autotune-configs-2 2025-07-17T06:36:42.5757794Z * [new branch] exclamforte/gemm-model-final -> origin/exclamforte/gemm-model-final 2025-07-17T06:36:42.5758298Z * [new branch] exec -> origin/exec 2025-07-17T06:36:42.5758758Z * [new branch] experimental-mosaic -> origin/experimental-mosaic 2025-07-17T06:36:42.5759265Z * [new branch] export-D58091437 -> origin/export-D58091437 2025-07-17T06:36:42.5759733Z * [new branch] export-D61047529 -> origin/export-D61047529 2025-07-17T06:36:42.5760243Z * [new branch] export-D68846308 -> origin/export-D68846308 2025-07-17T06:36:42.5760746Z * [new branch] export-D71412006 -> origin/export-D71412006 2025-07-17T06:36:42.5761210Z * [new branch] export-D71446522 -> origin/export-D71446522 2025-07-17T06:36:42.5761678Z * [new branch] export-D72391401 -> origin/export-D72391401 2025-07-17T06:36:42.5762131Z * [new branch] export-D72483950 -> origin/export-D72483950 2025-07-17T06:36:42.5762594Z * [new branch] export-D73042989 -> origin/export-D73042989 2025-07-17T06:36:42.5763059Z * [new branch] export-D73287751 -> origin/export-D73287751 2025-07-17T06:36:42.7454073Z * [new branch] export-D75183591 -> origin/export-D75183591 2025-07-17T06:36:42.7454635Z * [new branch] export-D75605373 -> origin/export-D75605373 2025-07-17T06:36:42.7455103Z * [new branch] export-D75617432 -> origin/export-D75617432 2025-07-17T06:36:42.7455615Z * [new branch] export-D75659965 -> origin/export-D75659965 2025-07-17T06:36:42.7456125Z * [new branch] export-D76080931 -> origin/export-D76080931 2025-07-17T06:36:42.7456579Z * [new branch] export-D76628834 -> origin/export-D76628834 2025-07-17T06:36:42.7457048Z * [new branch] export-D76630499 -> origin/export-D76630499 2025-07-17T06:36:42.7457501Z * [new branch] export-D76797250 -> origin/export-D76797250 2025-07-17T06:36:42.7457962Z * [new branch] export-D76830552 -> origin/export-D76830552 2025-07-17T06:36:42.7458448Z * [new branch] export-D76885271 -> origin/export-D76885271 2025-07-17T06:36:42.7459078Z * [new branch] export-D76885620 -> origin/export-D76885620 2025-07-17T06:36:42.7459549Z * [new branch] export-D76936623 -> origin/export-D76936623 2025-07-17T06:36:42.7460007Z * [new branch] export-D76958268 -> origin/export-D76958268 2025-07-17T06:36:42.7460472Z * [new branch] export-D77639021 -> origin/export-D77639021 2025-07-17T06:36:42.7460952Z * [new branch] export-D78363609 -> origin/export-D78363609 2025-07-17T06:36:42.7461451Z * [new branch] export-D78375400 -> origin/export-D78375400 2025-07-17T06:36:42.7461951Z * [new branch] export-D78431075 -> origin/export-D78431075 2025-07-17T06:36:42.7462401Z * [new branch] export-D78431305 -> origin/export-D78431305 2025-07-17T06:36:42.7462990Z * [new branch] exported-model-train-idempotent -> origin/exported-model-train-idempotent 2025-07-17T06:36:42.7463634Z * [new branch] ezyang/wip-aot-descriptors -> origin/ezyang/wip-aot-descriptors 2025-07-17T06:36:42.7464128Z * [new branch] fa_u8_brgemm -> origin/fa_u8_brgemm 2025-07-17T06:36:42.7464584Z * [new branch] fastmath_baseline -> origin/fastmath_baseline 2025-07-17T06:36:42.7465041Z * [new branch] fbcode/warm -> origin/fbcode/warm 2025-07-17T06:36:42.7465449Z * [new branch] fca -> origin/fca 2025-07-17T06:36:42.7465858Z * [new branch] fca2_ca5984c -> origin/fca2_ca5984c 2025-07-17T06:36:42.7466260Z * [new branch] fca5 -> origin/fca5 2025-07-17T06:36:42.7466747Z * [new branch] fengyuan/external-proj -> origin/fengyuan/external-proj 2025-07-17T06:36:42.7467529Z * [new branch] fengyuan/out-of-tree-xpu-ops-improve-test -> origin/fengyuan/out-of-tree-xpu-ops-improve-test 2025-07-17T06:36:42.7468362Z * [new branch] fengyuan/out-of-tree-xpu-ops-remove-dtype -> origin/fengyuan/out-of-tree-xpu-ops-remove-dtype 2025-07-17T06:36:42.7469018Z * [new branch] fengyuan/test-xpu -> origin/fengyuan/test-xpu 2025-07-17T06:36:42.7469502Z * [new branch] ffast_math_baseline -> origin/ffast_math_baseline 2025-07-17T06:36:42.7469977Z * [new branch] ffast_math_target -> origin/ffast_math_target 2025-07-17T06:36:42.7470452Z * [new branch] findhao/base_commit -> origin/findhao/base_commit 2025-07-17T06:36:42.7470941Z * [new branch] findhao/base_commit1 -> origin/findhao/base_commit1 2025-07-17T06:36:42.7471473Z * [new branch] findhao/fix-indirect-access -> origin/findhao/fix-indirect-access 2025-07-17T06:36:42.7472161Z * [new branch] findhao/multistream2 -> origin/findhao/multistream2 2025-07-17T06:36:42.7472684Z * [new branch] findhao/multistream5 -> origin/findhao/multistream5 2025-07-17T06:36:42.7473261Z * [new branch] findhao/multistream6 -> origin/findhao/multistream6 2025-07-17T06:36:42.7473796Z * [new branch] findhao/operatorbench3 -> origin/findhao/operatorbench3 2025-07-17T06:36:42.7474330Z * [new branch] findhao/operatorbench5 -> origin/findhao/operatorbench5 2025-07-17T06:36:42.7474855Z * [new branch] findhao/tritonparse -> origin/findhao/tritonparse 2025-07-17T06:36:42.7475404Z * [new branch] fix -> origin/fix 2025-07-17T06:36:42.7475899Z * [new branch] fix-ck-gemm-template-format -> origin/fix-ck-gemm-template-format 2025-07-17T06:36:42.7476444Z * [new branch] fix-config-ignore -> origin/fix-config-ignore 2025-07-17T06:36:42.7476922Z * [new branch] fix-dict-guard -> origin/fix-dict-guard 2025-07-17T06:36:42.7477564Z * [new branch] fix-inductor-periodic-0528 -> origin/fix-inductor-periodic-0528 2025-07-17T06:36:42.7478151Z * [new branch] fix-issue-144701-attempt-4 -> origin/fix-issue-144701-attempt-4 2025-07-17T06:36:42.9495665Z * [new branch] fix-issue-148701-attempt-1 -> origin/fix-issue-148701-attempt-1 2025-07-17T06:36:42.9496290Z * [new branch] fix-issue-149534-attempt-1 -> origin/fix-issue-149534-attempt-1 2025-07-17T06:36:42.9496923Z * [new branch] fix-rlease-feature-template -> origin/fix-rlease-feature-template 2025-07-17T06:36:42.9497472Z * [new branch] fix_153389 -> origin/fix_153389 2025-07-17T06:36:42.9497946Z * [new branch] fix_allow_train_eval_msg -> origin/fix_allow_train_eval_msg 2025-07-17T06:36:42.9498446Z * [new branch] fix_fake_tensor_issue -> origin/fix_fake_tensor_issue 2025-07-17T06:36:42.9498960Z * [new branch] fix_sbgemm_bf16 -> origin/fix_sbgemm_bf16 2025-07-17T06:36:42.9499403Z * [new branch] fixes-triage -> origin/fixes-triage 2025-07-17T06:36:42.9499852Z * [new branch] flex-lowering -> origin/flex-lowering 2025-07-17T06:36:42.9500375Z * [new branch] flex_attention_functorch_grad -> origin/flex_attention_functorch_grad 2025-07-17T06:36:42.9500980Z * [new branch] fmassa/fix_memeff_sharding_rule -> origin/fmassa/fix_memeff_sharding_rule 2025-07-17T06:36:42.9501545Z * [new branch] fsdp-qps-drop -> origin/fsdp-qps-drop 2025-07-17T06:36:42.9502000Z * [new branch] fsdp2_trace_rules -> origin/fsdp2_trace_rules 2025-07-17T06:36:42.9502441Z * [new branch] fsdpv2_3d -> origin/fsdpv2_3d 2025-07-17T06:36:42.9502870Z * [new branch] fsdpv2_3d_m1 -> origin/fsdpv2_3d_m1 2025-07-17T06:36:42.9503293Z * [new branch] fused_qkv -> origin/fused_qkv 2025-07-17T06:36:42.9503706Z * [new branch] fx_cpp -> origin/fx_cpp 2025-07-17T06:36:42.9504111Z * [new branch] fy/fix-win -> origin/fy/fix-win 2025-07-17T06:36:42.9504570Z * [new branch] gh/AlnisM/1/base -> origin/gh/AlnisM/1/base 2025-07-17T06:36:42.9505041Z * [new branch] gh/AlnisM/1/head -> origin/gh/AlnisM/1/head 2025-07-17T06:36:42.9505490Z * [new branch] gh/CaoE/1/base -> origin/gh/CaoE/1/base 2025-07-17T06:36:42.9505947Z * [new branch] gh/CaoE/1/head -> origin/gh/CaoE/1/head 2025-07-17T06:36:42.9506381Z * [new branch] gh/CaoE/1/orig -> origin/gh/CaoE/1/orig 2025-07-17T06:36:42.9506823Z * [new branch] gh/CaoE/2/base -> origin/gh/CaoE/2/base 2025-07-17T06:36:42.9507451Z * [new branch] gh/CaoE/2/head -> origin/gh/CaoE/2/head 2025-07-17T06:36:42.9507892Z * [new branch] gh/CaoE/2/orig -> origin/gh/CaoE/2/orig 2025-07-17T06:36:42.9508332Z * [new branch] gh/CaoE/3/base -> origin/gh/CaoE/3/base 2025-07-17T06:36:42.9508764Z * [new branch] gh/CaoE/3/head -> origin/gh/CaoE/3/head 2025-07-17T06:36:42.9509207Z * [new branch] gh/CaoE/3/orig -> origin/gh/CaoE/3/orig 2025-07-17T06:36:42.9509697Z * [new branch] gh/ColinPeppler/72/base -> origin/gh/ColinPeppler/72/base 2025-07-17T06:36:42.9510253Z * [new branch] gh/ColinPeppler/72/head -> origin/gh/ColinPeppler/72/head 2025-07-17T06:36:42.9510801Z * [new branch] gh/ColinPeppler/72/orig -> origin/gh/ColinPeppler/72/orig 2025-07-17T06:36:42.9511328Z * [new branch] gh/ColinPeppler/75/base -> origin/gh/ColinPeppler/75/base 2025-07-17T06:36:42.9511988Z * [new branch] gh/ColinPeppler/75/head -> origin/gh/ColinPeppler/75/head 2025-07-17T06:36:42.9512518Z * [new branch] gh/ColinPeppler/75/orig -> origin/gh/ColinPeppler/75/orig 2025-07-17T06:36:42.9513061Z * [new branch] gh/ColinPeppler/76/base -> origin/gh/ColinPeppler/76/base 2025-07-17T06:36:42.9513607Z * [new branch] gh/ColinPeppler/76/head -> origin/gh/ColinPeppler/76/head 2025-07-17T06:36:42.9514141Z * [new branch] gh/ColinPeppler/76/orig -> origin/gh/ColinPeppler/76/orig 2025-07-17T06:36:42.9514669Z * [new branch] gh/EikanWang/67/base -> origin/gh/EikanWang/67/base 2025-07-17T06:36:42.9515396Z * [new branch] gh/EikanWang/67/head -> origin/gh/EikanWang/67/head 2025-07-17T06:36:42.9515893Z * [new branch] gh/EikanWang/80/base -> origin/gh/EikanWang/80/base 2025-07-17T06:36:42.9516402Z * [new branch] gh/EikanWang/80/head -> origin/gh/EikanWang/80/head 2025-07-17T06:36:42.9516909Z * [new branch] gh/EikanWang/80/orig -> origin/gh/EikanWang/80/orig 2025-07-17T06:36:42.9517399Z * [new branch] gh/EikanWang/81/base -> origin/gh/EikanWang/81/base 2025-07-17T06:36:42.9517907Z * [new branch] gh/EikanWang/81/head -> origin/gh/EikanWang/81/head 2025-07-17T06:36:42.9518392Z * [new branch] gh/EikanWang/81/orig -> origin/gh/EikanWang/81/orig 2025-07-17T06:36:42.9518891Z * [new branch] gh/Gasoonjia/1/base -> origin/gh/Gasoonjia/1/base 2025-07-17T06:36:42.9519390Z * [new branch] gh/Gasoonjia/1/head -> origin/gh/Gasoonjia/1/head 2025-07-17T06:36:43.0038271Z * [new branch] gh/H-Huang/131/base -> origin/gh/H-Huang/131/base 2025-07-17T06:36:43.0038852Z * [new branch] gh/H-Huang/131/head -> origin/gh/H-Huang/131/head 2025-07-17T06:36:43.0039380Z * [new branch] gh/H-Huang/131/orig -> origin/gh/H-Huang/131/orig 2025-07-17T06:36:43.0039848Z * [new branch] gh/H-Huang/132/base -> origin/gh/H-Huang/132/base 2025-07-17T06:36:43.0040324Z * [new branch] gh/H-Huang/132/head -> origin/gh/H-Huang/132/head 2025-07-17T06:36:43.0040784Z * [new branch] gh/H-Huang/132/orig -> origin/gh/H-Huang/132/orig 2025-07-17T06:36:43.0041251Z * [new branch] gh/H-Huang/172/base -> origin/gh/H-Huang/172/base 2025-07-17T06:36:43.0041727Z * [new branch] gh/H-Huang/172/head -> origin/gh/H-Huang/172/head 2025-07-17T06:36:43.0042187Z * [new branch] gh/H-Huang/172/orig -> origin/gh/H-Huang/172/orig 2025-07-17T06:36:43.0042656Z * [new branch] gh/H-Huang/175/base -> origin/gh/H-Huang/175/base 2025-07-17T06:36:43.0043116Z * [new branch] gh/H-Huang/175/head -> origin/gh/H-Huang/175/head 2025-07-17T06:36:43.0043777Z * [new branch] gh/H-Huang/175/orig -> origin/gh/H-Huang/175/orig 2025-07-17T06:36:43.0044342Z * [new branch] gh/H-Huang/176/base -> origin/gh/H-Huang/176/base 2025-07-17T06:36:43.0044821Z * [new branch] gh/H-Huang/176/head -> origin/gh/H-Huang/176/head 2025-07-17T06:36:43.0045288Z * [new branch] gh/H-Huang/176/orig -> origin/gh/H-Huang/176/orig 2025-07-17T06:36:43.0045753Z * [new branch] gh/H-Huang/177/base -> origin/gh/H-Huang/177/base 2025-07-17T06:36:43.0046224Z * [new branch] gh/H-Huang/177/head -> origin/gh/H-Huang/177/head 2025-07-17T06:36:43.0046694Z * [new branch] gh/H-Huang/177/orig -> origin/gh/H-Huang/177/orig 2025-07-17T06:36:43.0047166Z * [new branch] gh/H-Huang/180/base -> origin/gh/H-Huang/180/base 2025-07-17T06:36:43.0047636Z * [new branch] gh/H-Huang/180/head -> origin/gh/H-Huang/180/head 2025-07-17T06:36:43.0048203Z * [new branch] gh/H-Huang/180/orig -> origin/gh/H-Huang/180/orig 2025-07-17T06:36:43.0048683Z * [new branch] gh/H-Huang/182/base -> origin/gh/H-Huang/182/base 2025-07-17T06:36:43.0049146Z * [new branch] gh/H-Huang/182/head -> origin/gh/H-Huang/182/head 2025-07-17T06:36:43.0049664Z * [new branch] gh/H-Huang/182/orig -> origin/gh/H-Huang/182/orig 2025-07-17T06:36:43.0050192Z * [new branch] gh/H-Huang/183/base -> origin/gh/H-Huang/183/base 2025-07-17T06:36:43.0050656Z * [new branch] gh/H-Huang/183/head -> origin/gh/H-Huang/183/head 2025-07-17T06:36:43.0051126Z * [new branch] gh/H-Huang/183/orig -> origin/gh/H-Huang/183/orig 2025-07-17T06:36:43.0051585Z * [new branch] gh/H-Huang/185/base -> origin/gh/H-Huang/185/base 2025-07-17T06:36:43.0052055Z * [new branch] gh/H-Huang/185/head -> origin/gh/H-Huang/185/head 2025-07-17T06:36:43.0052526Z * [new branch] gh/H-Huang/185/orig -> origin/gh/H-Huang/185/orig 2025-07-17T06:36:43.0052983Z * [new branch] gh/H-Huang/187/base -> origin/gh/H-Huang/187/base 2025-07-17T06:36:43.0053451Z * [new branch] gh/H-Huang/187/head -> origin/gh/H-Huang/187/head 2025-07-17T06:36:43.0053909Z * [new branch] gh/H-Huang/187/orig -> origin/gh/H-Huang/187/orig 2025-07-17T06:36:43.0054376Z * [new branch] gh/H-Huang/190/base -> origin/gh/H-Huang/190/base 2025-07-17T06:36:43.0054840Z * [new branch] gh/H-Huang/190/head -> origin/gh/H-Huang/190/head 2025-07-17T06:36:43.0055323Z * [new branch] gh/H-Huang/190/orig -> origin/gh/H-Huang/190/orig 2025-07-17T06:36:43.0055853Z * [new branch] gh/H-Huang/191/base -> origin/gh/H-Huang/191/base 2025-07-17T06:36:43.0056369Z * [new branch] gh/H-Huang/191/head -> origin/gh/H-Huang/191/head 2025-07-17T06:36:43.0056922Z * [new branch] gh/H-Huang/191/orig -> origin/gh/H-Huang/191/orig 2025-07-17T06:36:43.0057447Z * [new branch] gh/H-Huang/192/base -> origin/gh/H-Huang/192/base 2025-07-17T06:36:43.0057956Z * [new branch] gh/H-Huang/192/head -> origin/gh/H-Huang/192/head 2025-07-17T06:36:43.0058510Z * [new branch] gh/H-Huang/192/orig -> origin/gh/H-Huang/192/orig 2025-07-17T06:36:43.0059019Z * [new branch] gh/H-Huang/193/base -> origin/gh/H-Huang/193/base 2025-07-17T06:36:43.0059547Z * [new branch] gh/H-Huang/193/head -> origin/gh/H-Huang/193/head 2025-07-17T06:36:43.0060104Z * [new branch] gh/H-Huang/193/orig -> origin/gh/H-Huang/193/orig 2025-07-17T06:36:43.0060606Z * [new branch] gh/H-Huang/194/base -> origin/gh/H-Huang/194/base 2025-07-17T06:36:43.0061950Z * [new branch] gh/H-Huang/194/head -> origin/gh/H-Huang/194/head 2025-07-17T06:36:43.0605726Z * [new branch] gh/H-Huang/194/orig -> origin/gh/H-Huang/194/orig 2025-07-17T06:36:43.0606310Z * [new branch] gh/IvanKobzarev/107/base -> origin/gh/IvanKobzarev/107/base 2025-07-17T06:36:43.0606871Z * [new branch] gh/IvanKobzarev/107/head -> origin/gh/IvanKobzarev/107/head 2025-07-17T06:36:43.0607416Z * [new branch] gh/IvanKobzarev/107/orig -> origin/gh/IvanKobzarev/107/orig 2025-07-17T06:36:43.0607982Z * [new branch] gh/IvanKobzarev/109/base -> origin/gh/IvanKobzarev/109/base 2025-07-17T06:36:43.0608583Z * [new branch] gh/IvanKobzarev/109/head -> origin/gh/IvanKobzarev/109/head 2025-07-17T06:36:43.0609170Z * [new branch] gh/IvanKobzarev/109/orig -> origin/gh/IvanKobzarev/109/orig 2025-07-17T06:36:43.0609724Z * [new branch] gh/IvanKobzarev/110/base -> origin/gh/IvanKobzarev/110/base 2025-07-17T06:36:43.0610431Z * [new branch] gh/IvanKobzarev/110/head -> origin/gh/IvanKobzarev/110/head 2025-07-17T06:36:43.0610968Z * [new branch] gh/IvanKobzarev/110/orig -> origin/gh/IvanKobzarev/110/orig 2025-07-17T06:36:43.0611510Z * [new branch] gh/IvanKobzarev/111/base -> origin/gh/IvanKobzarev/111/base 2025-07-17T06:36:43.0612050Z * [new branch] gh/IvanKobzarev/111/head -> origin/gh/IvanKobzarev/111/head 2025-07-17T06:36:43.0612586Z * [new branch] gh/IvanKobzarev/111/orig -> origin/gh/IvanKobzarev/111/orig 2025-07-17T06:36:43.0613143Z * [new branch] gh/IvanKobzarev/112/base -> origin/gh/IvanKobzarev/112/base 2025-07-17T06:36:43.0613676Z * [new branch] gh/IvanKobzarev/112/head -> origin/gh/IvanKobzarev/112/head 2025-07-17T06:36:43.0614266Z * [new branch] gh/IvanKobzarev/112/orig -> origin/gh/IvanKobzarev/112/orig 2025-07-17T06:36:43.0614895Z * [new branch] gh/IvanKobzarev/114/base -> origin/gh/IvanKobzarev/114/base 2025-07-17T06:36:43.0615438Z * [new branch] gh/IvanKobzarev/114/head -> origin/gh/IvanKobzarev/114/head 2025-07-17T06:36:43.0615979Z * [new branch] gh/IvanKobzarev/114/orig -> origin/gh/IvanKobzarev/114/orig 2025-07-17T06:36:43.0616524Z * [new branch] gh/IvanKobzarev/115/base -> origin/gh/IvanKobzarev/115/base 2025-07-17T06:36:43.0617060Z * [new branch] gh/IvanKobzarev/115/head -> origin/gh/IvanKobzarev/115/head 2025-07-17T06:36:43.0617593Z * [new branch] gh/IvanKobzarev/115/orig -> origin/gh/IvanKobzarev/115/orig 2025-07-17T06:36:43.0618125Z * [new branch] gh/IvanKobzarev/116/base -> origin/gh/IvanKobzarev/116/base 2025-07-17T06:36:43.0618654Z * [new branch] gh/IvanKobzarev/116/head -> origin/gh/IvanKobzarev/116/head 2025-07-17T06:36:43.0619194Z * [new branch] gh/IvanKobzarev/116/orig -> origin/gh/IvanKobzarev/116/orig 2025-07-17T06:36:43.0619735Z * [new branch] gh/IvanKobzarev/117/base -> origin/gh/IvanKobzarev/117/base 2025-07-17T06:36:43.0620276Z * [new branch] gh/IvanKobzarev/117/head -> origin/gh/IvanKobzarev/117/head 2025-07-17T06:36:43.0620812Z * [new branch] gh/IvanKobzarev/117/orig -> origin/gh/IvanKobzarev/117/orig 2025-07-17T06:36:43.0621348Z * [new branch] gh/IvanKobzarev/118/base -> origin/gh/IvanKobzarev/118/base 2025-07-17T06:36:43.0621874Z * [new branch] gh/IvanKobzarev/118/head -> origin/gh/IvanKobzarev/118/head 2025-07-17T06:36:43.0622409Z * [new branch] gh/IvanKobzarev/118/orig -> origin/gh/IvanKobzarev/118/orig 2025-07-17T06:36:43.0622942Z * [new branch] gh/IvanKobzarev/119/base -> origin/gh/IvanKobzarev/119/base 2025-07-17T06:36:43.0623591Z * [new branch] gh/IvanKobzarev/119/head -> origin/gh/IvanKobzarev/119/head 2025-07-17T06:36:43.0624143Z * [new branch] gh/IvanKobzarev/119/orig -> origin/gh/IvanKobzarev/119/orig 2025-07-17T06:36:43.0624682Z * [new branch] gh/IvanKobzarev/120/base -> origin/gh/IvanKobzarev/120/base 2025-07-17T06:36:43.0625282Z * [new branch] gh/IvanKobzarev/120/head -> origin/gh/IvanKobzarev/120/head 2025-07-17T06:36:43.0625855Z * [new branch] gh/IvanKobzarev/120/orig -> origin/gh/IvanKobzarev/120/orig 2025-07-17T06:36:43.0626453Z * [new branch] gh/IvanKobzarev/121/base -> origin/gh/IvanKobzarev/121/base 2025-07-17T06:36:43.0627004Z * [new branch] gh/IvanKobzarev/121/head -> origin/gh/IvanKobzarev/121/head 2025-07-17T06:36:43.0627540Z * [new branch] gh/IvanKobzarev/121/orig -> origin/gh/IvanKobzarev/121/orig 2025-07-17T06:36:43.0628082Z * [new branch] gh/IvanKobzarev/122/base -> origin/gh/IvanKobzarev/122/base 2025-07-17T06:36:43.0628700Z * [new branch] gh/IvanKobzarev/122/head -> origin/gh/IvanKobzarev/122/head 2025-07-17T06:36:43.0629246Z * [new branch] gh/IvanKobzarev/122/orig -> origin/gh/IvanKobzarev/122/orig 2025-07-17T06:36:43.0629788Z * [new branch] gh/IvanKobzarev/123/base -> origin/gh/IvanKobzarev/123/base 2025-07-17T06:36:43.1140415Z * [new branch] gh/IvanKobzarev/123/head -> origin/gh/IvanKobzarev/123/head 2025-07-17T06:36:43.1141031Z * [new branch] gh/IvanKobzarev/123/orig -> origin/gh/IvanKobzarev/123/orig 2025-07-17T06:36:43.1141590Z * [new branch] gh/IvanKobzarev/124/base -> origin/gh/IvanKobzarev/124/base 2025-07-17T06:36:43.1142134Z * [new branch] gh/IvanKobzarev/124/head -> origin/gh/IvanKobzarev/124/head 2025-07-17T06:36:43.1142694Z * [new branch] gh/IvanKobzarev/124/orig -> origin/gh/IvanKobzarev/124/orig 2025-07-17T06:36:43.1143254Z * [new branch] gh/IvanKobzarev/125/base -> origin/gh/IvanKobzarev/125/base 2025-07-17T06:36:43.1143800Z * [new branch] gh/IvanKobzarev/125/head -> origin/gh/IvanKobzarev/125/head 2025-07-17T06:36:43.1144344Z * [new branch] gh/IvanKobzarev/125/orig -> origin/gh/IvanKobzarev/125/orig 2025-07-17T06:36:43.1144880Z * [new branch] gh/IvanKobzarev/126/base -> origin/gh/IvanKobzarev/126/base 2025-07-17T06:36:43.1145424Z * [new branch] gh/IvanKobzarev/126/head -> origin/gh/IvanKobzarev/126/head 2025-07-17T06:36:43.1145961Z * [new branch] gh/IvanKobzarev/126/orig -> origin/gh/IvanKobzarev/126/orig 2025-07-17T06:36:43.1146495Z * [new branch] gh/IvanKobzarev/127/base -> origin/gh/IvanKobzarev/127/base 2025-07-17T06:36:43.1147030Z * [new branch] gh/IvanKobzarev/127/head -> origin/gh/IvanKobzarev/127/head 2025-07-17T06:36:43.1147557Z * [new branch] gh/IvanKobzarev/127/orig -> origin/gh/IvanKobzarev/127/orig 2025-07-17T06:36:43.1148104Z * [new branch] gh/IvanKobzarev/128/base -> origin/gh/IvanKobzarev/128/base 2025-07-17T06:36:43.1148633Z * [new branch] gh/IvanKobzarev/128/head -> origin/gh/IvanKobzarev/128/head 2025-07-17T06:36:43.1149172Z * [new branch] gh/IvanKobzarev/128/orig -> origin/gh/IvanKobzarev/128/orig 2025-07-17T06:36:43.1149711Z * [new branch] gh/NikhilAPatel/1/base -> origin/gh/NikhilAPatel/1/base 2025-07-17T06:36:43.1150265Z * [new branch] gh/NikhilAPatel/1/head -> origin/gh/NikhilAPatel/1/head 2025-07-17T06:36:43.1150799Z * [new branch] gh/NikhilAPatel/16/base -> origin/gh/NikhilAPatel/16/base 2025-07-17T06:36:43.1151325Z * [new branch] gh/NikhilAPatel/16/head -> origin/gh/NikhilAPatel/16/head 2025-07-17T06:36:43.1151857Z * [new branch] gh/NikhilAPatel/16/orig -> origin/gh/NikhilAPatel/16/orig 2025-07-17T06:36:43.1152560Z * [new branch] gh/NikhilAPatel/17/base -> origin/gh/NikhilAPatel/17/base 2025-07-17T06:36:43.1153095Z * [new branch] gh/NikhilAPatel/17/head -> origin/gh/NikhilAPatel/17/head 2025-07-17T06:36:43.1153631Z * [new branch] gh/NikhilAPatel/17/orig -> origin/gh/NikhilAPatel/17/orig 2025-07-17T06:36:43.1154158Z * [new branch] gh/NikhilAPatel/18/base -> origin/gh/NikhilAPatel/18/base 2025-07-17T06:36:43.1154697Z * [new branch] gh/NikhilAPatel/18/head -> origin/gh/NikhilAPatel/18/head 2025-07-17T06:36:43.1155334Z * [new branch] gh/NikhilAPatel/18/orig -> origin/gh/NikhilAPatel/18/orig 2025-07-17T06:36:43.1155970Z * [new branch] gh/NikhilAPatel/2/base -> origin/gh/NikhilAPatel/2/base 2025-07-17T06:36:43.1156539Z * [new branch] gh/NikhilAPatel/2/head -> origin/gh/NikhilAPatel/2/head 2025-07-17T06:36:43.1157069Z * [new branch] gh/NikhilAPatel/4/base -> origin/gh/NikhilAPatel/4/base 2025-07-17T06:36:43.1158226Z * [new branch] gh/NikhilAPatel/4/head -> origin/gh/NikhilAPatel/4/head 2025-07-17T06:36:43.1158764Z * [new branch] gh/NikhilAPatel/8/base -> origin/gh/NikhilAPatel/8/base 2025-07-17T06:36:43.1159293Z * [new branch] gh/NikhilAPatel/8/head -> origin/gh/NikhilAPatel/8/head 2025-07-17T06:36:43.1159823Z * [new branch] gh/NikhilAPatel/8/orig -> origin/gh/NikhilAPatel/8/orig 2025-07-17T06:36:43.1160349Z * [new branch] gh/NikhilAPatel/9/base -> origin/gh/NikhilAPatel/9/base 2025-07-17T06:36:43.1160871Z * [new branch] gh/NikhilAPatel/9/head -> origin/gh/NikhilAPatel/9/head 2025-07-17T06:36:43.1161394Z * [new branch] gh/NikhilAPatel/9/orig -> origin/gh/NikhilAPatel/9/orig 2025-07-17T06:36:43.1161893Z * [new branch] gh/PaliC/1/base -> origin/gh/PaliC/1/base 2025-07-17T06:36:43.1162370Z * [new branch] gh/PaliC/1/head -> origin/gh/PaliC/1/head 2025-07-17T06:36:43.1162826Z * [new branch] gh/PaliC/1/orig -> origin/gh/PaliC/1/orig 2025-07-17T06:36:43.1163299Z * [new branch] gh/PaliC/10/base -> origin/gh/PaliC/10/base 2025-07-17T06:36:43.1163754Z * [new branch] gh/PaliC/10/head -> origin/gh/PaliC/10/head 2025-07-17T06:36:43.1164215Z * [new branch] gh/PaliC/11/base -> origin/gh/PaliC/11/base 2025-07-17T06:36:43.1164668Z * [new branch] gh/PaliC/11/head -> origin/gh/PaliC/11/head 2025-07-17T06:36:43.1165130Z * [new branch] gh/PaliC/12/base -> origin/gh/PaliC/12/base 2025-07-17T06:36:43.1639273Z * [new branch] gh/PaliC/12/head -> origin/gh/PaliC/12/head 2025-07-17T06:36:43.1639788Z * [new branch] gh/PaliC/12/orig -> origin/gh/PaliC/12/orig 2025-07-17T06:36:43.1640305Z * [new branch] gh/PaliC/13/base -> origin/gh/PaliC/13/base 2025-07-17T06:36:43.1640776Z * [new branch] gh/PaliC/13/head -> origin/gh/PaliC/13/head 2025-07-17T06:36:43.1641263Z * [new branch] gh/PaliC/13/orig -> origin/gh/PaliC/13/orig 2025-07-17T06:36:43.1641725Z * [new branch] gh/PaliC/14/base -> origin/gh/PaliC/14/base 2025-07-17T06:36:43.1642183Z * [new branch] gh/PaliC/14/head -> origin/gh/PaliC/14/head 2025-07-17T06:36:43.1642645Z * [new branch] gh/PaliC/14/orig -> origin/gh/PaliC/14/orig 2025-07-17T06:36:43.1643104Z * [new branch] gh/PaliC/15/base -> origin/gh/PaliC/15/base 2025-07-17T06:36:43.1643559Z * [new branch] gh/PaliC/15/head -> origin/gh/PaliC/15/head 2025-07-17T06:36:43.1644022Z * [new branch] gh/PaliC/15/orig -> origin/gh/PaliC/15/orig 2025-07-17T06:36:43.1644628Z * [new branch] gh/PaliC/16/base -> origin/gh/PaliC/16/base 2025-07-17T06:36:43.1645098Z * [new branch] gh/PaliC/16/head -> origin/gh/PaliC/16/head 2025-07-17T06:36:43.1645571Z * [new branch] gh/PaliC/16/orig -> origin/gh/PaliC/16/orig 2025-07-17T06:36:43.1646024Z * [new branch] gh/PaliC/17/base -> origin/gh/PaliC/17/base 2025-07-17T06:36:43.1646486Z * [new branch] gh/PaliC/17/head -> origin/gh/PaliC/17/head 2025-07-17T06:36:43.1646938Z * [new branch] gh/PaliC/17/orig -> origin/gh/PaliC/17/orig 2025-07-17T06:36:43.1647397Z * [new branch] gh/PaliC/18/base -> origin/gh/PaliC/18/base 2025-07-17T06:36:43.1647846Z * [new branch] gh/PaliC/18/head -> origin/gh/PaliC/18/head 2025-07-17T06:36:43.1648304Z * [new branch] gh/PaliC/18/orig -> origin/gh/PaliC/18/orig 2025-07-17T06:36:43.1648860Z * [new branch] gh/PaliC/19/base -> origin/gh/PaliC/19/base 2025-07-17T06:36:43.1649317Z * [new branch] gh/PaliC/19/head -> origin/gh/PaliC/19/head 2025-07-17T06:36:43.1649779Z * [new branch] gh/PaliC/19/orig -> origin/gh/PaliC/19/orig 2025-07-17T06:36:43.1650247Z * [new branch] gh/PaliC/2/base -> origin/gh/PaliC/2/base 2025-07-17T06:36:43.1650715Z * [new branch] gh/PaliC/2/head -> origin/gh/PaliC/2/head 2025-07-17T06:36:43.1651184Z * [new branch] gh/PaliC/2/orig -> origin/gh/PaliC/2/orig 2025-07-17T06:36:43.1651703Z * [new branch] gh/PaliC/20/base -> origin/gh/PaliC/20/base 2025-07-17T06:36:43.1652251Z * [new branch] gh/PaliC/20/head -> origin/gh/PaliC/20/head 2025-07-17T06:36:43.1652709Z * [new branch] gh/PaliC/20/orig -> origin/gh/PaliC/20/orig 2025-07-17T06:36:43.1653179Z * [new branch] gh/PaliC/21/base -> origin/gh/PaliC/21/base 2025-07-17T06:36:43.1653631Z * [new branch] gh/PaliC/21/head -> origin/gh/PaliC/21/head 2025-07-17T06:36:43.1654087Z * [new branch] gh/PaliC/21/orig -> origin/gh/PaliC/21/orig 2025-07-17T06:36:43.1654552Z * [new branch] gh/PaliC/22/base -> origin/gh/PaliC/22/base 2025-07-17T06:36:43.1655006Z * [new branch] gh/PaliC/22/head -> origin/gh/PaliC/22/head 2025-07-17T06:36:43.1655471Z * [new branch] gh/PaliC/22/orig -> origin/gh/PaliC/22/orig 2025-07-17T06:36:43.1655932Z * [new branch] gh/PaliC/3/base -> origin/gh/PaliC/3/base 2025-07-17T06:36:43.1656387Z * [new branch] gh/PaliC/3/head -> origin/gh/PaliC/3/head 2025-07-17T06:36:43.1656841Z * [new branch] gh/PaliC/4/base -> origin/gh/PaliC/4/base 2025-07-17T06:36:43.1657307Z * [new branch] gh/PaliC/4/head -> origin/gh/PaliC/4/head 2025-07-17T06:36:43.1657773Z * [new branch] gh/PaliC/5/base -> origin/gh/PaliC/5/base 2025-07-17T06:36:43.1658220Z * [new branch] gh/PaliC/5/head -> origin/gh/PaliC/5/head 2025-07-17T06:36:43.1658681Z * [new branch] gh/PaliC/6/base -> origin/gh/PaliC/6/base 2025-07-17T06:36:43.1659133Z * [new branch] gh/PaliC/6/head -> origin/gh/PaliC/6/head 2025-07-17T06:36:43.1659584Z * [new branch] gh/PaliC/7/base -> origin/gh/PaliC/7/base 2025-07-17T06:36:43.1660039Z * [new branch] gh/PaliC/7/head -> origin/gh/PaliC/7/head 2025-07-17T06:36:43.1660485Z * [new branch] gh/PaliC/8/base -> origin/gh/PaliC/8/base 2025-07-17T06:36:43.1660935Z * [new branch] gh/PaliC/8/head -> origin/gh/PaliC/8/head 2025-07-17T06:36:43.1661482Z * [new branch] gh/PaliC/9/base -> origin/gh/PaliC/9/base 2025-07-17T06:36:43.1661946Z * [new branch] gh/PaliC/9/head -> origin/gh/PaliC/9/head 2025-07-17T06:36:43.2240435Z * [new branch] gh/PaulZhang12/1/base -> origin/gh/PaulZhang12/1/base 2025-07-17T06:36:43.2241012Z * [new branch] gh/PaulZhang12/1/head -> origin/gh/PaulZhang12/1/head 2025-07-17T06:36:43.2241540Z * [new branch] gh/PaulZhang12/1/orig -> origin/gh/PaulZhang12/1/orig 2025-07-17T06:36:43.2242071Z * [new branch] gh/PaulZhang12/17/base -> origin/gh/PaulZhang12/17/base 2025-07-17T06:36:43.2242593Z * [new branch] gh/PaulZhang12/17/head -> origin/gh/PaulZhang12/17/head 2025-07-17T06:36:43.2243113Z * [new branch] gh/PaulZhang12/4/base -> origin/gh/PaulZhang12/4/base 2025-07-17T06:36:43.2243627Z * [new branch] gh/PaulZhang12/4/head -> origin/gh/PaulZhang12/4/head 2025-07-17T06:36:43.2244312Z * [new branch] gh/PaulZhang12/4/orig -> origin/gh/PaulZhang12/4/orig 2025-07-17T06:36:43.2244843Z * [new branch] gh/SamGinzburg/11/base -> origin/gh/SamGinzburg/11/base 2025-07-17T06:36:43.2245372Z * [new branch] gh/SamGinzburg/11/head -> origin/gh/SamGinzburg/11/head 2025-07-17T06:36:43.2245922Z * [new branch] gh/Sidharth123-cpu/24/base -> origin/gh/Sidharth123-cpu/24/base 2025-07-17T06:36:43.2246481Z * [new branch] gh/Sidharth123-cpu/25/base -> origin/gh/Sidharth123-cpu/25/base 2025-07-17T06:36:43.2247048Z * [new branch] gh/Sidharth123-cpu/26/base -> origin/gh/Sidharth123-cpu/26/base 2025-07-17T06:36:43.2247610Z * [new branch] gh/Sidharth123-cpu/27/base -> origin/gh/Sidharth123-cpu/27/base 2025-07-17T06:36:43.2248156Z * [new branch] gh/Sidharth123-cpu/28/base -> origin/gh/Sidharth123-cpu/28/base 2025-07-17T06:36:43.2248717Z * [new branch] gh/Sidharth123-cpu/28/head -> origin/gh/Sidharth123-cpu/28/head 2025-07-17T06:36:43.2249292Z * [new branch] gh/Sidharth123-cpu/28/orig -> origin/gh/Sidharth123-cpu/28/orig 2025-07-17T06:36:43.2249835Z * [new branch] gh/Sidharth123-cpu/32/base -> origin/gh/Sidharth123-cpu/32/base 2025-07-17T06:36:43.2250393Z * [new branch] gh/Sidharth123-cpu/32/head -> origin/gh/Sidharth123-cpu/32/head 2025-07-17T06:36:43.2250943Z * [new branch] gh/Sidharth123-cpu/32/orig -> origin/gh/Sidharth123-cpu/32/orig 2025-07-17T06:36:43.2251514Z * [new branch] gh/Sidharth123-cpu/33/base -> origin/gh/Sidharth123-cpu/33/base 2025-07-17T06:36:43.2252078Z * [new branch] gh/Sidharth123-cpu/33/head -> origin/gh/Sidharth123-cpu/33/head 2025-07-17T06:36:43.2252622Z * [new branch] gh/Sidharth123-cpu/33/orig -> origin/gh/Sidharth123-cpu/33/orig 2025-07-17T06:36:43.2253177Z * [new branch] gh/Sidharth123-cpu/34/base -> origin/gh/Sidharth123-cpu/34/base 2025-07-17T06:36:43.2253724Z * [new branch] gh/Sidharth123-cpu/34/head -> origin/gh/Sidharth123-cpu/34/head 2025-07-17T06:36:43.2254278Z * [new branch] gh/Sidharth123-cpu/34/orig -> origin/gh/Sidharth123-cpu/34/orig 2025-07-17T06:36:43.2254828Z * [new branch] gh/Sidharth123-cpu/35/base -> origin/gh/Sidharth123-cpu/35/base 2025-07-17T06:36:43.2255372Z * [new branch] gh/Sidharth123-cpu/35/head -> origin/gh/Sidharth123-cpu/35/head 2025-07-17T06:36:43.2255919Z * [new branch] gh/Sidharth123-cpu/35/orig -> origin/gh/Sidharth123-cpu/35/orig 2025-07-17T06:36:43.2256462Z * [new branch] gh/Sidharth123-cpu/36/base -> origin/gh/Sidharth123-cpu/36/base 2025-07-17T06:36:43.2257018Z * [new branch] gh/Sidharth123-cpu/36/head -> origin/gh/Sidharth123-cpu/36/head 2025-07-17T06:36:43.2257558Z * [new branch] gh/Sidharth123-cpu/36/orig -> origin/gh/Sidharth123-cpu/36/orig 2025-07-17T06:36:43.2258221Z * [new branch] gh/Sidharth123-cpu/37/base -> origin/gh/Sidharth123-cpu/37/base 2025-07-17T06:36:43.2258771Z * [new branch] gh/Sidharth123-cpu/37/head -> origin/gh/Sidharth123-cpu/37/head 2025-07-17T06:36:43.2259322Z * [new branch] gh/Sidharth123-cpu/37/orig -> origin/gh/Sidharth123-cpu/37/orig 2025-07-17T06:36:43.2259879Z * [new branch] gh/Sidharth123-cpu/38/base -> origin/gh/Sidharth123-cpu/38/base 2025-07-17T06:36:43.2260425Z * [new branch] gh/Sidharth123-cpu/38/head -> origin/gh/Sidharth123-cpu/38/head 2025-07-17T06:36:43.2260980Z * [new branch] gh/Sidharth123-cpu/38/orig -> origin/gh/Sidharth123-cpu/38/orig 2025-07-17T06:36:43.2261536Z * [new branch] gh/Sidharth123-cpu/39/base -> origin/gh/Sidharth123-cpu/39/base 2025-07-17T06:36:43.2262081Z * [new branch] gh/Sidharth123-cpu/39/head -> origin/gh/Sidharth123-cpu/39/head 2025-07-17T06:36:43.2262717Z * [new branch] gh/Sidharth123-cpu/39/orig -> origin/gh/Sidharth123-cpu/39/orig 2025-07-17T06:36:43.2263274Z * [new branch] gh/Sidharth123-cpu/40/base -> origin/gh/Sidharth123-cpu/40/base 2025-07-17T06:36:43.2263830Z * [new branch] gh/Sidharth123-cpu/40/head -> origin/gh/Sidharth123-cpu/40/head 2025-07-17T06:36:43.2264383Z * [new branch] gh/Sidharth123-cpu/40/orig -> origin/gh/Sidharth123-cpu/40/orig 2025-07-17T06:36:43.2705247Z * [new branch] gh/Sidharth123-cpu/41/base -> origin/gh/Sidharth123-cpu/41/base 2025-07-17T06:36:43.2705879Z * [new branch] gh/Sidharth123-cpu/41/head -> origin/gh/Sidharth123-cpu/41/head 2025-07-17T06:36:43.2706448Z * [new branch] gh/Sidharth123-cpu/41/orig -> origin/gh/Sidharth123-cpu/41/orig 2025-07-17T06:36:43.2707003Z * [new branch] gh/Sidharth123-cpu/42/base -> origin/gh/Sidharth123-cpu/42/base 2025-07-17T06:36:43.2707578Z * [new branch] gh/Sidharth123-cpu/42/head -> origin/gh/Sidharth123-cpu/42/head 2025-07-17T06:36:43.2708131Z * [new branch] gh/Sidharth123-cpu/42/orig -> origin/gh/Sidharth123-cpu/42/orig 2025-07-17T06:36:43.2708687Z * [new branch] gh/Sidharth123-cpu/43/base -> origin/gh/Sidharth123-cpu/43/base 2025-07-17T06:36:43.2709245Z * [new branch] gh/Sidharth123-cpu/43/head -> origin/gh/Sidharth123-cpu/43/head 2025-07-17T06:36:43.2709791Z * [new branch] gh/Sidharth123-cpu/43/orig -> origin/gh/Sidharth123-cpu/43/orig 2025-07-17T06:36:43.2710328Z * [new branch] gh/StrongerXi/1/base -> origin/gh/StrongerXi/1/base 2025-07-17T06:36:43.2710835Z * [new branch] gh/StrongerXi/1/head -> origin/gh/StrongerXi/1/head 2025-07-17T06:36:43.2711359Z * [new branch] gh/StrongerXi/103/base -> origin/gh/StrongerXi/103/base 2025-07-17T06:36:43.2711884Z * [new branch] gh/StrongerXi/103/head -> origin/gh/StrongerXi/103/head 2025-07-17T06:36:43.2712405Z * [new branch] gh/StrongerXi/103/orig -> origin/gh/StrongerXi/103/orig 2025-07-17T06:36:43.2712920Z * [new branch] gh/StrongerXi/126/base -> origin/gh/StrongerXi/126/base 2025-07-17T06:36:43.2713429Z * [new branch] gh/StrongerXi/126/head -> origin/gh/StrongerXi/126/head 2025-07-17T06:36:43.2713950Z * [new branch] gh/StrongerXi/126/orig -> origin/gh/StrongerXi/126/orig 2025-07-17T06:36:43.2714472Z * [new branch] gh/StrongerXi/127/base -> origin/gh/StrongerXi/127/base 2025-07-17T06:36:43.2715102Z * [new branch] gh/StrongerXi/127/head -> origin/gh/StrongerXi/127/head 2025-07-17T06:36:43.2715673Z * [new branch] gh/StrongerXi/127/orig -> origin/gh/StrongerXi/127/orig 2025-07-17T06:36:43.2716224Z * [new branch] gh/StrongerXi/128/base -> origin/gh/StrongerXi/128/base 2025-07-17T06:36:43.2716910Z * [new branch] gh/StrongerXi/128/head -> origin/gh/StrongerXi/128/head 2025-07-17T06:36:43.2717421Z * [new branch] gh/StrongerXi/128/orig -> origin/gh/StrongerXi/128/orig 2025-07-17T06:36:43.2717939Z * [new branch] gh/StrongerXi/129/base -> origin/gh/StrongerXi/129/base 2025-07-17T06:36:43.2718462Z * [new branch] gh/StrongerXi/129/head -> origin/gh/StrongerXi/129/head 2025-07-17T06:36:43.2718969Z * [new branch] gh/StrongerXi/129/orig -> origin/gh/StrongerXi/129/orig 2025-07-17T06:36:43.2719485Z * [new branch] gh/StrongerXi/130/base -> origin/gh/StrongerXi/130/base 2025-07-17T06:36:43.2720074Z * [new branch] gh/StrongerXi/130/head -> origin/gh/StrongerXi/130/head 2025-07-17T06:36:43.2720585Z * [new branch] gh/StrongerXi/130/orig -> origin/gh/StrongerXi/130/orig 2025-07-17T06:36:43.2721096Z * [new branch] gh/StrongerXi/131/base -> origin/gh/StrongerXi/131/base 2025-07-17T06:36:43.2721697Z * [new branch] gh/StrongerXi/131/head -> origin/gh/StrongerXi/131/head 2025-07-17T06:36:43.2722225Z * [new branch] gh/StrongerXi/131/orig -> origin/gh/StrongerXi/131/orig 2025-07-17T06:36:43.2722731Z * [new branch] gh/StrongerXi/132/base -> origin/gh/StrongerXi/132/base 2025-07-17T06:36:43.2723256Z * [new branch] gh/StrongerXi/132/head -> origin/gh/StrongerXi/132/head 2025-07-17T06:36:43.2723777Z * [new branch] gh/StrongerXi/132/orig -> origin/gh/StrongerXi/132/orig 2025-07-17T06:36:43.2724290Z * [new branch] gh/StrongerXi/133/base -> origin/gh/StrongerXi/133/base 2025-07-17T06:36:43.2724813Z * [new branch] gh/StrongerXi/133/head -> origin/gh/StrongerXi/133/head 2025-07-17T06:36:43.2725319Z * [new branch] gh/StrongerXi/133/orig -> origin/gh/StrongerXi/133/orig 2025-07-17T06:36:43.2725841Z * [new branch] gh/StrongerXi/134/base -> origin/gh/StrongerXi/134/base 2025-07-17T06:36:43.2726422Z * [new branch] gh/StrongerXi/134/head -> origin/gh/StrongerXi/134/head 2025-07-17T06:36:43.2726984Z * [new branch] gh/StrongerXi/134/orig -> origin/gh/StrongerXi/134/orig 2025-07-17T06:36:43.2727501Z * [new branch] gh/StrongerXi/135/base -> origin/gh/StrongerXi/135/base 2025-07-17T06:36:43.2728015Z * [new branch] gh/StrongerXi/135/head -> origin/gh/StrongerXi/135/head 2025-07-17T06:36:43.2728543Z * [new branch] gh/StrongerXi/135/orig -> origin/gh/StrongerXi/135/orig 2025-07-17T06:36:43.2729071Z * [new branch] gh/StrongerXi/136/base -> origin/gh/StrongerXi/136/base 2025-07-17T06:36:43.3310079Z * [new branch] gh/StrongerXi/136/head -> origin/gh/StrongerXi/136/head 2025-07-17T06:36:43.3310680Z * [new branch] gh/StrongerXi/136/orig -> origin/gh/StrongerXi/136/orig 2025-07-17T06:36:43.3311232Z * [new branch] gh/StrongerXi/137/base -> origin/gh/StrongerXi/137/base 2025-07-17T06:36:43.3311755Z * [new branch] gh/StrongerXi/137/head -> origin/gh/StrongerXi/137/head 2025-07-17T06:36:43.3312279Z * [new branch] gh/StrongerXi/137/orig -> origin/gh/StrongerXi/137/orig 2025-07-17T06:36:43.3312783Z * [new branch] gh/StrongerXi/138/base -> origin/gh/StrongerXi/138/base 2025-07-17T06:36:43.3313305Z * [new branch] gh/StrongerXi/138/head -> origin/gh/StrongerXi/138/head 2025-07-17T06:36:43.3313866Z * [new branch] gh/StrongerXi/138/orig -> origin/gh/StrongerXi/138/orig 2025-07-17T06:36:43.3314432Z * [new branch] gh/StrongerXi/71/base -> origin/gh/StrongerXi/71/base 2025-07-17T06:36:43.3315011Z * [new branch] gh/StrongerXi/71/head -> origin/gh/StrongerXi/71/head 2025-07-17T06:36:43.3315670Z * [new branch] gh/StrongerXi/72/base -> origin/gh/StrongerXi/72/base 2025-07-17T06:36:43.3316193Z * [new branch] gh/StrongerXi/72/head -> origin/gh/StrongerXi/72/head 2025-07-17T06:36:43.3316691Z * [new branch] gh/Xia-Weiwen/40/base -> origin/gh/Xia-Weiwen/40/base 2025-07-17T06:36:43.3317196Z * [new branch] gh/Xia-Weiwen/40/head -> origin/gh/Xia-Weiwen/40/head 2025-07-17T06:36:43.3317692Z * [new branch] gh/Xia-Weiwen/40/orig -> origin/gh/Xia-Weiwen/40/orig 2025-07-17T06:36:43.3318188Z * [new branch] gh/XilunWu/110/base -> origin/gh/XilunWu/110/base 2025-07-17T06:36:43.3318685Z * [new branch] gh/XilunWu/110/head -> origin/gh/XilunWu/110/head 2025-07-17T06:36:43.3319169Z * [new branch] gh/XilunWu/110/orig -> origin/gh/XilunWu/110/orig 2025-07-17T06:36:43.3319709Z * [new branch] gh/XilunWu/115/base -> origin/gh/XilunWu/115/base 2025-07-17T06:36:43.3320340Z * [new branch] gh/XilunWu/115/head -> origin/gh/XilunWu/115/head 2025-07-17T06:36:43.3320827Z * [new branch] gh/XilunWu/115/orig -> origin/gh/XilunWu/115/orig 2025-07-17T06:36:43.3321321Z * [new branch] gh/XilunWu/116/base -> origin/gh/XilunWu/116/base 2025-07-17T06:36:43.3321800Z * [new branch] gh/XilunWu/116/head -> origin/gh/XilunWu/116/head 2025-07-17T06:36:43.3322291Z * [new branch] gh/XilunWu/116/orig -> origin/gh/XilunWu/116/orig 2025-07-17T06:36:43.3322783Z * [new branch] gh/XilunWu/117/base -> origin/gh/XilunWu/117/base 2025-07-17T06:36:43.3323261Z * [new branch] gh/XilunWu/117/head -> origin/gh/XilunWu/117/head 2025-07-17T06:36:43.3323743Z * [new branch] gh/XilunWu/117/orig -> origin/gh/XilunWu/117/orig 2025-07-17T06:36:43.3324219Z * [new branch] gh/XilunWu/118/base -> origin/gh/XilunWu/118/base 2025-07-17T06:36:43.3324713Z * [new branch] gh/XilunWu/118/head -> origin/gh/XilunWu/118/head 2025-07-17T06:36:43.3325240Z * [new branch] gh/XilunWu/118/orig -> origin/gh/XilunWu/118/orig 2025-07-17T06:36:43.3325779Z * [new branch] gh/XilunWu/119/base -> origin/gh/XilunWu/119/base 2025-07-17T06:36:43.3326263Z * [new branch] gh/XilunWu/119/head -> origin/gh/XilunWu/119/head 2025-07-17T06:36:43.3326736Z * [new branch] gh/XilunWu/119/orig -> origin/gh/XilunWu/119/orig 2025-07-17T06:36:43.3327219Z * [new branch] gh/XilunWu/126/base -> origin/gh/XilunWu/126/base 2025-07-17T06:36:43.3327696Z * [new branch] gh/XilunWu/126/head -> origin/gh/XilunWu/126/head 2025-07-17T06:36:43.3328174Z * [new branch] gh/XilunWu/126/orig -> origin/gh/XilunWu/126/orig 2025-07-17T06:36:43.3328661Z * [new branch] gh/XilunWu/127/base -> origin/gh/XilunWu/127/base 2025-07-17T06:36:43.3329137Z * [new branch] gh/XilunWu/127/head -> origin/gh/XilunWu/127/head 2025-07-17T06:36:43.3329623Z * [new branch] gh/XilunWu/127/orig -> origin/gh/XilunWu/127/orig 2025-07-17T06:36:43.3330101Z * [new branch] gh/XilunWu/129/base -> origin/gh/XilunWu/129/base 2025-07-17T06:36:43.3330584Z * [new branch] gh/XilunWu/129/head -> origin/gh/XilunWu/129/head 2025-07-17T06:36:43.3331116Z * [new branch] gh/XilunWu/129/orig -> origin/gh/XilunWu/129/orig 2025-07-17T06:36:43.3331642Z * [new branch] gh/XilunWu/130/base -> origin/gh/XilunWu/130/base 2025-07-17T06:36:43.3332121Z * [new branch] gh/XilunWu/130/head -> origin/gh/XilunWu/130/head 2025-07-17T06:36:43.3332598Z * [new branch] gh/XilunWu/130/orig -> origin/gh/XilunWu/130/orig 2025-07-17T06:36:43.3333187Z * [new branch] gh/XilunWu/131/base -> origin/gh/XilunWu/131/base 2025-07-17T06:36:43.3333668Z * [new branch] gh/XilunWu/131/head -> origin/gh/XilunWu/131/head 2025-07-17T06:36:43.3736256Z * [new branch] gh/XilunWu/131/orig -> origin/gh/XilunWu/131/orig 2025-07-17T06:36:43.3736806Z * [new branch] gh/XilunWu/133/base -> origin/gh/XilunWu/133/base 2025-07-17T06:36:43.3737298Z * [new branch] gh/XilunWu/133/head -> origin/gh/XilunWu/133/head 2025-07-17T06:36:43.3737785Z * [new branch] gh/XilunWu/133/orig -> origin/gh/XilunWu/133/orig 2025-07-17T06:36:43.3738259Z * [new branch] gh/XilunWu/136/base -> origin/gh/XilunWu/136/base 2025-07-17T06:36:43.3738739Z * [new branch] gh/XilunWu/136/head -> origin/gh/XilunWu/136/head 2025-07-17T06:36:43.3739215Z * [new branch] gh/XilunWu/136/orig -> origin/gh/XilunWu/136/orig 2025-07-17T06:36:43.3739853Z * [new branch] gh/XilunWu/139/base -> origin/gh/XilunWu/139/base 2025-07-17T06:36:43.3740363Z * [new branch] gh/XilunWu/139/head -> origin/gh/XilunWu/139/head 2025-07-17T06:36:43.3740844Z * [new branch] gh/XilunWu/139/orig -> origin/gh/XilunWu/139/orig 2025-07-17T06:36:43.3741321Z * [new branch] gh/XilunWu/143/base -> origin/gh/XilunWu/143/base 2025-07-17T06:36:43.3741805Z * [new branch] gh/XilunWu/143/head -> origin/gh/XilunWu/143/head 2025-07-17T06:36:43.3742284Z * [new branch] gh/XilunWu/143/orig -> origin/gh/XilunWu/143/orig 2025-07-17T06:36:43.3742773Z * [new branch] gh/XilunWu/144/base -> origin/gh/XilunWu/144/base 2025-07-17T06:36:43.3743252Z * [new branch] gh/XilunWu/144/head -> origin/gh/XilunWu/144/head 2025-07-17T06:36:43.3743721Z * [new branch] gh/XilunWu/144/orig -> origin/gh/XilunWu/144/orig 2025-07-17T06:36:43.3744213Z * [new branch] gh/XilunWu/145/base -> origin/gh/XilunWu/145/base 2025-07-17T06:36:43.3744693Z * [new branch] gh/XilunWu/145/head -> origin/gh/XilunWu/145/head 2025-07-17T06:36:43.3745174Z * [new branch] gh/XilunWu/145/orig -> origin/gh/XilunWu/145/orig 2025-07-17T06:36:43.3745660Z * [new branch] gh/XilunWu/146/base -> origin/gh/XilunWu/146/base 2025-07-17T06:36:43.3746144Z * [new branch] gh/XilunWu/146/head -> origin/gh/XilunWu/146/head 2025-07-17T06:36:43.3746621Z * [new branch] gh/XilunWu/146/orig -> origin/gh/XilunWu/146/orig 2025-07-17T06:36:43.3747098Z * [new branch] gh/XilunWu/147/base -> origin/gh/XilunWu/147/base 2025-07-17T06:36:43.3747577Z * [new branch] gh/XilunWu/147/head -> origin/gh/XilunWu/147/head 2025-07-17T06:36:43.3773148Z * [new branch] gh/XilunWu/147/orig -> origin/gh/XilunWu/147/orig 2025-07-17T06:36:43.3773698Z * [new branch] gh/XilunWu/148/base -> origin/gh/XilunWu/148/base 2025-07-17T06:36:43.3774187Z * [new branch] gh/XilunWu/148/head -> origin/gh/XilunWu/148/head 2025-07-17T06:36:43.3774680Z * [new branch] gh/XilunWu/148/orig -> origin/gh/XilunWu/148/orig 2025-07-17T06:36:43.3775161Z * [new branch] gh/XilunWu/149/base -> origin/gh/XilunWu/149/base 2025-07-17T06:36:43.3775638Z * [new branch] gh/XilunWu/149/head -> origin/gh/XilunWu/149/head 2025-07-17T06:36:43.3776223Z * [new branch] gh/XilunWu/149/orig -> origin/gh/XilunWu/149/orig 2025-07-17T06:36:43.3776759Z * [new branch] gh/XilunWu/150/base -> origin/gh/XilunWu/150/base 2025-07-17T06:36:43.3777259Z * [new branch] gh/XilunWu/150/head -> origin/gh/XilunWu/150/head 2025-07-17T06:36:43.3777932Z * [new branch] gh/XilunWu/150/orig -> origin/gh/XilunWu/150/orig 2025-07-17T06:36:43.3778415Z * [new branch] gh/XilunWu/151/base -> origin/gh/XilunWu/151/base 2025-07-17T06:36:43.3778904Z * [new branch] gh/XilunWu/151/head -> origin/gh/XilunWu/151/head 2025-07-17T06:36:43.3779384Z * [new branch] gh/XilunWu/151/orig -> origin/gh/XilunWu/151/orig 2025-07-17T06:36:43.3779878Z * [new branch] gh/XilunWu/152/base -> origin/gh/XilunWu/152/base 2025-07-17T06:36:43.3780366Z * [new branch] gh/XilunWu/152/head -> origin/gh/XilunWu/152/head 2025-07-17T06:36:43.3780843Z * [new branch] gh/XilunWu/152/orig -> origin/gh/XilunWu/152/orig 2025-07-17T06:36:43.3781325Z * [new branch] gh/XilunWu/153/base -> origin/gh/XilunWu/153/base 2025-07-17T06:36:43.3781803Z * [new branch] gh/XilunWu/153/head -> origin/gh/XilunWu/153/head 2025-07-17T06:36:43.3782368Z * [new branch] gh/XilunWu/153/orig -> origin/gh/XilunWu/153/orig 2025-07-17T06:36:43.3782855Z * [new branch] gh/XilunWu/154/base -> origin/gh/XilunWu/154/base 2025-07-17T06:36:43.3783339Z * [new branch] gh/XilunWu/154/head -> origin/gh/XilunWu/154/head 2025-07-17T06:36:43.3783829Z * [new branch] gh/XilunWu/154/orig -> origin/gh/XilunWu/154/orig 2025-07-17T06:36:43.3784311Z * [new branch] gh/XilunWu/155/base -> origin/gh/XilunWu/155/base 2025-07-17T06:36:43.4270678Z * [new branch] gh/XilunWu/155/head -> origin/gh/XilunWu/155/head 2025-07-17T06:36:43.4271242Z * [new branch] gh/XilunWu/155/orig -> origin/gh/XilunWu/155/orig 2025-07-17T06:36:43.4271733Z * [new branch] gh/XilunWu/156/base -> origin/gh/XilunWu/156/base 2025-07-17T06:36:43.4272247Z * [new branch] gh/XilunWu/156/head -> origin/gh/XilunWu/156/head 2025-07-17T06:36:43.4272752Z * [new branch] gh/XilunWu/156/orig -> origin/gh/XilunWu/156/orig 2025-07-17T06:36:43.4273242Z * [new branch] gh/XilunWu/157/base -> origin/gh/XilunWu/157/base 2025-07-17T06:36:43.4273734Z * [new branch] gh/XilunWu/157/head -> origin/gh/XilunWu/157/head 2025-07-17T06:36:43.4274211Z * [new branch] gh/XilunWu/157/orig -> origin/gh/XilunWu/157/orig 2025-07-17T06:36:43.4274697Z * [new branch] gh/XilunWu/158/base -> origin/gh/XilunWu/158/base 2025-07-17T06:36:43.4275254Z * [new branch] gh/XilunWu/158/head -> origin/gh/XilunWu/158/head 2025-07-17T06:36:43.4275743Z * [new branch] gh/XilunWu/158/orig -> origin/gh/XilunWu/158/orig 2025-07-17T06:36:43.4276244Z * [new branch] gh/XuehaiPan/14/base -> origin/gh/XuehaiPan/14/base 2025-07-17T06:36:43.4276753Z * [new branch] gh/XuehaiPan/14/head -> origin/gh/XuehaiPan/14/head 2025-07-17T06:36:43.4277270Z * [new branch] gh/XuehaiPan/14/orig -> origin/gh/XuehaiPan/14/orig 2025-07-17T06:36:43.4277774Z * [new branch] gh/XuehaiPan/179/base -> origin/gh/XuehaiPan/179/base 2025-07-17T06:36:43.4278292Z * [new branch] gh/XuehaiPan/179/head -> origin/gh/XuehaiPan/179/head 2025-07-17T06:36:43.4278803Z * [new branch] gh/XuehaiPan/179/orig -> origin/gh/XuehaiPan/179/orig 2025-07-17T06:36:43.4279305Z * [new branch] gh/XuehaiPan/189/base -> origin/gh/XuehaiPan/189/base 2025-07-17T06:36:43.4279815Z * [new branch] gh/XuehaiPan/189/head -> origin/gh/XuehaiPan/189/head 2025-07-17T06:36:43.4280315Z * [new branch] gh/XuehaiPan/189/orig -> origin/gh/XuehaiPan/189/orig 2025-07-17T06:36:43.4280833Z * [new branch] gh/XuehaiPan/226/base -> origin/gh/XuehaiPan/226/base 2025-07-17T06:36:43.4281487Z * [new branch] gh/XuehaiPan/226/head -> origin/gh/XuehaiPan/226/head 2025-07-17T06:36:43.4282009Z * [new branch] gh/XuehaiPan/226/orig -> origin/gh/XuehaiPan/226/orig 2025-07-17T06:36:43.4282524Z * [new branch] gh/XuehaiPan/227/base -> origin/gh/XuehaiPan/227/base 2025-07-17T06:36:43.4283022Z * [new branch] gh/XuehaiPan/227/head -> origin/gh/XuehaiPan/227/head 2025-07-17T06:36:43.4283529Z * [new branch] gh/XuehaiPan/227/orig -> origin/gh/XuehaiPan/227/orig 2025-07-17T06:36:43.4284025Z * [new branch] gh/XuehaiPan/228/base -> origin/gh/XuehaiPan/228/base 2025-07-17T06:36:43.4284525Z * [new branch] gh/XuehaiPan/228/head -> origin/gh/XuehaiPan/228/head 2025-07-17T06:36:43.4285037Z * [new branch] gh/XuehaiPan/228/orig -> origin/gh/XuehaiPan/228/orig 2025-07-17T06:36:43.4285537Z * [new branch] gh/XuehaiPan/229/base -> origin/gh/XuehaiPan/229/base 2025-07-17T06:36:43.4286129Z * [new branch] gh/XuehaiPan/229/head -> origin/gh/XuehaiPan/229/head 2025-07-17T06:36:43.4286642Z * [new branch] gh/XuehaiPan/229/orig -> origin/gh/XuehaiPan/229/orig 2025-07-17T06:36:43.4287148Z * [new branch] gh/XuehaiPan/230/base -> origin/gh/XuehaiPan/230/base 2025-07-17T06:36:43.4287655Z * [new branch] gh/XuehaiPan/230/head -> origin/gh/XuehaiPan/230/head 2025-07-17T06:36:43.4288158Z * [new branch] gh/XuehaiPan/230/orig -> origin/gh/XuehaiPan/230/orig 2025-07-17T06:36:43.4288667Z * [new branch] gh/XuehaiPan/231/base -> origin/gh/XuehaiPan/231/base 2025-07-17T06:36:43.4289165Z * [new branch] gh/XuehaiPan/231/head -> origin/gh/XuehaiPan/231/head 2025-07-17T06:36:43.4289679Z * [new branch] gh/XuehaiPan/231/orig -> origin/gh/XuehaiPan/231/orig 2025-07-17T06:36:43.4290190Z * [new branch] gh/XuehaiPan/232/base -> origin/gh/XuehaiPan/232/base 2025-07-17T06:36:43.4290698Z * [new branch] gh/XuehaiPan/232/head -> origin/gh/XuehaiPan/232/head 2025-07-17T06:36:43.4291203Z * [new branch] gh/XuehaiPan/232/orig -> origin/gh/XuehaiPan/232/orig 2025-07-17T06:36:43.4291704Z * [new branch] gh/XuehaiPan/249/base -> origin/gh/XuehaiPan/249/base 2025-07-17T06:36:43.4292209Z * [new branch] gh/XuehaiPan/249/head -> origin/gh/XuehaiPan/249/head 2025-07-17T06:36:43.4292706Z * [new branch] gh/XuehaiPan/249/orig -> origin/gh/XuehaiPan/249/orig 2025-07-17T06:36:43.4293208Z * [new branch] gh/XuehaiPan/251/base -> origin/gh/XuehaiPan/251/base 2025-07-17T06:36:43.4293709Z * [new branch] gh/XuehaiPan/251/head -> origin/gh/XuehaiPan/251/head 2025-07-17T06:36:43.4691672Z * [new branch] gh/XuehaiPan/251/orig -> origin/gh/XuehaiPan/251/orig 2025-07-17T06:36:43.4692274Z * [new branch] gh/XuehaiPan/253/base -> origin/gh/XuehaiPan/253/base 2025-07-17T06:36:43.4692792Z * [new branch] gh/XuehaiPan/253/head -> origin/gh/XuehaiPan/253/head 2025-07-17T06:36:43.4693305Z * [new branch] gh/XuehaiPan/253/orig -> origin/gh/XuehaiPan/253/orig 2025-07-17T06:36:43.4693827Z * [new branch] gh/XuehaiPan/254/base -> origin/gh/XuehaiPan/254/base 2025-07-17T06:36:43.4694327Z * [new branch] gh/XuehaiPan/254/head -> origin/gh/XuehaiPan/254/head 2025-07-17T06:36:43.4694844Z * [new branch] gh/XuehaiPan/254/orig -> origin/gh/XuehaiPan/254/orig 2025-07-17T06:36:43.4695398Z * [new branch] gh/XuehaiPan/255/base -> origin/gh/XuehaiPan/255/base 2025-07-17T06:36:43.4695959Z * [new branch] gh/XuehaiPan/255/head -> origin/gh/XuehaiPan/255/head 2025-07-17T06:36:43.4696626Z * [new branch] gh/XuehaiPan/255/orig -> origin/gh/XuehaiPan/255/orig 2025-07-17T06:36:43.4697138Z * [new branch] gh/XuehaiPan/257/base -> origin/gh/XuehaiPan/257/base 2025-07-17T06:36:43.4697651Z * [new branch] gh/XuehaiPan/257/head -> origin/gh/XuehaiPan/257/head 2025-07-17T06:36:43.4698151Z * [new branch] gh/XuehaiPan/257/orig -> origin/gh/XuehaiPan/257/orig 2025-07-17T06:36:43.4698682Z * [new branch] gh/XuehaiPan/271/base -> origin/gh/XuehaiPan/271/base 2025-07-17T06:36:43.4699185Z * [new branch] gh/XuehaiPan/271/head -> origin/gh/XuehaiPan/271/head 2025-07-17T06:36:43.4699684Z * [new branch] gh/XuehaiPan/271/orig -> origin/gh/XuehaiPan/271/orig 2025-07-17T06:36:43.4700191Z * [new branch] gh/XuehaiPan/279/base -> origin/gh/XuehaiPan/279/base 2025-07-17T06:36:43.4700698Z * [new branch] gh/XuehaiPan/279/head -> origin/gh/XuehaiPan/279/head 2025-07-17T06:36:43.4701202Z * [new branch] gh/XuehaiPan/279/orig -> origin/gh/XuehaiPan/279/orig 2025-07-17T06:36:43.4701796Z * [new branch] gh/XuehaiPan/281/base -> origin/gh/XuehaiPan/281/base 2025-07-17T06:36:43.4702298Z * [new branch] gh/XuehaiPan/281/head -> origin/gh/XuehaiPan/281/head 2025-07-17T06:36:43.4702813Z * [new branch] gh/XuehaiPan/281/orig -> origin/gh/XuehaiPan/281/orig 2025-07-17T06:36:43.4703327Z * [new branch] gh/XuehaiPan/282/base -> origin/gh/XuehaiPan/282/base 2025-07-17T06:36:43.4703838Z * [new branch] gh/XuehaiPan/282/head -> origin/gh/XuehaiPan/282/head 2025-07-17T06:36:43.4704359Z * [new branch] gh/XuehaiPan/282/orig -> origin/gh/XuehaiPan/282/orig 2025-07-17T06:36:43.4704869Z * [new branch] gh/XuehaiPan/283/base -> origin/gh/XuehaiPan/283/base 2025-07-17T06:36:43.4705381Z * [new branch] gh/XuehaiPan/283/head -> origin/gh/XuehaiPan/283/head 2025-07-17T06:36:43.4705895Z * [new branch] gh/XuehaiPan/283/orig -> origin/gh/XuehaiPan/283/orig 2025-07-17T06:36:43.4706411Z * [new branch] gh/XuehaiPan/284/base -> origin/gh/XuehaiPan/284/base 2025-07-17T06:36:43.4706923Z * [new branch] gh/XuehaiPan/284/head -> origin/gh/XuehaiPan/284/head 2025-07-17T06:36:43.4707428Z * [new branch] gh/XuehaiPan/284/orig -> origin/gh/XuehaiPan/284/orig 2025-07-17T06:36:43.4707933Z * [new branch] gh/XuehaiPan/285/base -> origin/gh/XuehaiPan/285/base 2025-07-17T06:36:43.4708428Z * [new branch] gh/XuehaiPan/285/head -> origin/gh/XuehaiPan/285/head 2025-07-17T06:36:43.4708933Z * [new branch] gh/XuehaiPan/285/orig -> origin/gh/XuehaiPan/285/orig 2025-07-17T06:36:43.4709436Z * [new branch] gh/XuehaiPan/286/base -> origin/gh/XuehaiPan/286/base 2025-07-17T06:36:43.4709937Z * [new branch] gh/XuehaiPan/286/head -> origin/gh/XuehaiPan/286/head 2025-07-17T06:36:43.4710455Z * [new branch] gh/XuehaiPan/286/orig -> origin/gh/XuehaiPan/286/orig 2025-07-17T06:36:43.4710960Z * [new branch] gh/XuehaiPan/287/base -> origin/gh/XuehaiPan/287/base 2025-07-17T06:36:43.4711466Z * [new branch] gh/XuehaiPan/287/head -> origin/gh/XuehaiPan/287/head 2025-07-17T06:36:43.4711961Z * [new branch] gh/XuehaiPan/287/orig -> origin/gh/XuehaiPan/287/orig 2025-07-17T06:36:43.4712465Z * [new branch] gh/XuehaiPan/288/base -> origin/gh/XuehaiPan/288/base 2025-07-17T06:36:43.4712969Z * [new branch] gh/XuehaiPan/288/head -> origin/gh/XuehaiPan/288/head 2025-07-17T06:36:43.4713466Z * [new branch] gh/XuehaiPan/288/orig -> origin/gh/XuehaiPan/288/orig 2025-07-17T06:36:43.4713971Z * [new branch] gh/XuehaiPan/289/base -> origin/gh/XuehaiPan/289/base 2025-07-17T06:36:43.4714556Z * [new branch] gh/XuehaiPan/289/head -> origin/gh/XuehaiPan/289/head 2025-07-17T06:36:43.4715170Z * [new branch] gh/XuehaiPan/289/orig -> origin/gh/XuehaiPan/289/orig 2025-07-17T06:36:43.5106678Z * [new branch] gh/XuehaiPan/290/base -> origin/gh/XuehaiPan/290/base 2025-07-17T06:36:43.5107290Z * [new branch] gh/XuehaiPan/290/head -> origin/gh/XuehaiPan/290/head 2025-07-17T06:36:43.5107899Z * [new branch] gh/XuehaiPan/290/orig -> origin/gh/XuehaiPan/290/orig 2025-07-17T06:36:43.5108457Z * [new branch] gh/XuehaiPan/291/base -> origin/gh/XuehaiPan/291/base 2025-07-17T06:36:43.5109070Z * [new branch] gh/XuehaiPan/291/head -> origin/gh/XuehaiPan/291/head 2025-07-17T06:36:43.5109631Z * [new branch] gh/XuehaiPan/291/orig -> origin/gh/XuehaiPan/291/orig 2025-07-17T06:36:43.5110244Z * [new branch] gh/XuehaiPan/292/base -> origin/gh/XuehaiPan/292/base 2025-07-17T06:36:43.5110979Z * [new branch] gh/XuehaiPan/292/head -> origin/gh/XuehaiPan/292/head 2025-07-17T06:36:43.5111566Z * [new branch] gh/XuehaiPan/292/orig -> origin/gh/XuehaiPan/292/orig 2025-07-17T06:36:43.5112173Z * [new branch] gh/XuehaiPan/293/base -> origin/gh/XuehaiPan/293/base 2025-07-17T06:36:43.5112769Z * [new branch] gh/XuehaiPan/293/head -> origin/gh/XuehaiPan/293/head 2025-07-17T06:36:43.5113357Z * [new branch] gh/XuehaiPan/293/orig -> origin/gh/XuehaiPan/293/orig 2025-07-17T06:36:43.5113916Z * [new branch] gh/XuehaiPan/294/base -> origin/gh/XuehaiPan/294/base 2025-07-17T06:36:43.5114523Z * [new branch] gh/XuehaiPan/294/head -> origin/gh/XuehaiPan/294/head 2025-07-17T06:36:43.5115200Z * [new branch] gh/XuehaiPan/294/orig -> origin/gh/XuehaiPan/294/orig 2025-07-17T06:36:43.5115768Z * [new branch] gh/XuehaiPan/295/base -> origin/gh/XuehaiPan/295/base 2025-07-17T06:36:43.5116385Z * [new branch] gh/XuehaiPan/295/head -> origin/gh/XuehaiPan/295/head 2025-07-17T06:36:43.5116935Z * [new branch] gh/XuehaiPan/295/orig -> origin/gh/XuehaiPan/295/orig 2025-07-17T06:36:43.5117539Z * [new branch] gh/XuehaiPan/296/base -> origin/gh/XuehaiPan/296/base 2025-07-17T06:36:43.5118094Z * [new branch] gh/XuehaiPan/296/head -> origin/gh/XuehaiPan/296/head 2025-07-17T06:36:43.5118701Z * [new branch] gh/XuehaiPan/296/orig -> origin/gh/XuehaiPan/296/orig 2025-07-17T06:36:43.5119246Z * [new branch] gh/XuehaiPan/297/base -> origin/gh/XuehaiPan/297/base 2025-07-17T06:36:43.5119845Z * [new branch] gh/XuehaiPan/297/head -> origin/gh/XuehaiPan/297/head 2025-07-17T06:36:43.5120412Z * [new branch] gh/XuehaiPan/297/orig -> origin/gh/XuehaiPan/297/orig 2025-07-17T06:36:43.5121015Z * [new branch] gh/XuehaiPan/298/base -> origin/gh/XuehaiPan/298/base 2025-07-17T06:36:43.5121573Z * [new branch] gh/XuehaiPan/298/head -> origin/gh/XuehaiPan/298/head 2025-07-17T06:36:43.5122177Z * [new branch] gh/XuehaiPan/298/orig -> origin/gh/XuehaiPan/298/orig 2025-07-17T06:36:43.5122731Z * [new branch] gh/XuehaiPan/299/base -> origin/gh/XuehaiPan/299/base 2025-07-17T06:36:43.5123326Z * [new branch] gh/XuehaiPan/299/head -> origin/gh/XuehaiPan/299/head 2025-07-17T06:36:43.5123878Z * [new branch] gh/XuehaiPan/299/orig -> origin/gh/XuehaiPan/299/orig 2025-07-17T06:36:43.5124478Z * [new branch] gh/XuehaiPan/300/base -> origin/gh/XuehaiPan/300/base 2025-07-17T06:36:43.5125039Z * [new branch] gh/XuehaiPan/300/head -> origin/gh/XuehaiPan/300/head 2025-07-17T06:36:43.5125765Z * [new branch] gh/XuehaiPan/300/orig -> origin/gh/XuehaiPan/300/orig 2025-07-17T06:36:43.5126373Z * [new branch] gh/XuehaiPan/301/base -> origin/gh/XuehaiPan/301/base 2025-07-17T06:36:43.5126949Z * [new branch] gh/XuehaiPan/301/head -> origin/gh/XuehaiPan/301/head 2025-07-17T06:36:43.5127534Z * [new branch] gh/XuehaiPan/301/orig -> origin/gh/XuehaiPan/301/orig 2025-07-17T06:36:43.5128100Z * [new branch] gh/XuehaiPan/302/base -> origin/gh/XuehaiPan/302/base 2025-07-17T06:36:43.5128658Z * [new branch] gh/XuehaiPan/302/head -> origin/gh/XuehaiPan/302/head 2025-07-17T06:36:43.5129262Z * [new branch] gh/XuehaiPan/302/orig -> origin/gh/XuehaiPan/302/orig 2025-07-17T06:36:43.5129837Z * [new branch] gh/XuehaiPan/303/base -> origin/gh/XuehaiPan/303/base 2025-07-17T06:36:43.5130418Z * [new branch] gh/XuehaiPan/303/head -> origin/gh/XuehaiPan/303/head 2025-07-17T06:36:43.5131105Z * [new branch] gh/XuehaiPan/303/orig -> origin/gh/XuehaiPan/303/orig 2025-07-17T06:36:43.5131671Z * [new branch] gh/XuehaiPan/304/base -> origin/gh/XuehaiPan/304/base 2025-07-17T06:36:43.5132272Z * [new branch] gh/XuehaiPan/304/head -> origin/gh/XuehaiPan/304/head 2025-07-17T06:36:43.5132842Z * [new branch] gh/XuehaiPan/304/orig -> origin/gh/XuehaiPan/304/orig 2025-07-17T06:36:43.5133446Z * [new branch] gh/XuehaiPan/305/base -> origin/gh/XuehaiPan/305/base 2025-07-17T06:36:43.5992947Z * [new branch] gh/XuehaiPan/305/head -> origin/gh/XuehaiPan/305/head 2025-07-17T06:36:43.5993529Z * [new branch] gh/XuehaiPan/305/orig -> origin/gh/XuehaiPan/305/orig 2025-07-17T06:36:43.5994106Z * [new branch] gh/XuehaiPan/306/base -> origin/gh/XuehaiPan/306/base 2025-07-17T06:36:43.5994664Z * [new branch] gh/XuehaiPan/306/head -> origin/gh/XuehaiPan/306/head 2025-07-17T06:36:43.5995242Z * [new branch] gh/XuehaiPan/306/orig -> origin/gh/XuehaiPan/306/orig 2025-07-17T06:36:43.5995751Z * [new branch] gh/XuehaiPan/307/base -> origin/gh/XuehaiPan/307/base 2025-07-17T06:36:43.5996262Z * [new branch] gh/XuehaiPan/307/head -> origin/gh/XuehaiPan/307/head 2025-07-17T06:36:43.5996777Z * [new branch] gh/XuehaiPan/307/orig -> origin/gh/XuehaiPan/307/orig 2025-07-17T06:36:43.5997274Z * [new branch] gh/XuehaiPan/308/base -> origin/gh/XuehaiPan/308/base 2025-07-17T06:36:43.5997783Z * [new branch] gh/XuehaiPan/308/head -> origin/gh/XuehaiPan/308/head 2025-07-17T06:36:43.5998284Z * [new branch] gh/XuehaiPan/308/orig -> origin/gh/XuehaiPan/308/orig 2025-07-17T06:36:43.5998792Z * [new branch] gh/XuehaiPan/309/base -> origin/gh/XuehaiPan/309/base 2025-07-17T06:36:43.5999296Z * [new branch] gh/XuehaiPan/309/head -> origin/gh/XuehaiPan/309/head 2025-07-17T06:36:43.5999861Z * [new branch] gh/XuehaiPan/309/orig -> origin/gh/XuehaiPan/309/orig 2025-07-17T06:36:43.6000415Z * [new branch] gh/XuehaiPan/310/base -> origin/gh/XuehaiPan/310/base 2025-07-17T06:36:43.6000933Z * [new branch] gh/XuehaiPan/310/head -> origin/gh/XuehaiPan/310/head 2025-07-17T06:36:43.6001436Z * [new branch] gh/XuehaiPan/310/orig -> origin/gh/XuehaiPan/310/orig 2025-07-17T06:36:43.6001930Z * [new branch] gh/XuehaiPan/311/base -> origin/gh/XuehaiPan/311/base 2025-07-17T06:36:43.6002439Z * [new branch] gh/XuehaiPan/311/head -> origin/gh/XuehaiPan/311/head 2025-07-17T06:36:43.6002931Z * [new branch] gh/XuehaiPan/311/orig -> origin/gh/XuehaiPan/311/orig 2025-07-17T06:36:43.6003434Z * [new branch] gh/XuehaiPan/312/base -> origin/gh/XuehaiPan/312/base 2025-07-17T06:36:43.6004119Z * [new branch] gh/XuehaiPan/312/head -> origin/gh/XuehaiPan/312/head 2025-07-17T06:36:43.6004620Z * [new branch] gh/XuehaiPan/312/orig -> origin/gh/XuehaiPan/312/orig 2025-07-17T06:36:43.6005125Z * [new branch] gh/XuehaiPan/313/base -> origin/gh/XuehaiPan/313/base 2025-07-17T06:36:43.6005623Z * [new branch] gh/XuehaiPan/313/head -> origin/gh/XuehaiPan/313/head 2025-07-17T06:36:43.6006210Z * [new branch] gh/XuehaiPan/313/orig -> origin/gh/XuehaiPan/313/orig 2025-07-17T06:36:43.6006732Z * [new branch] gh/XuehaiPan/314/base -> origin/gh/XuehaiPan/314/base 2025-07-17T06:36:43.6007229Z * [new branch] gh/XuehaiPan/314/head -> origin/gh/XuehaiPan/314/head 2025-07-17T06:36:43.6007733Z * [new branch] gh/XuehaiPan/314/orig -> origin/gh/XuehaiPan/314/orig 2025-07-17T06:36:43.6008233Z * [new branch] gh/XuehaiPan/315/base -> origin/gh/XuehaiPan/315/base 2025-07-17T06:36:43.6008824Z * [new branch] gh/XuehaiPan/315/head -> origin/gh/XuehaiPan/315/head 2025-07-17T06:36:43.6009331Z * [new branch] gh/XuehaiPan/315/orig -> origin/gh/XuehaiPan/315/orig 2025-07-17T06:36:43.6009822Z * [new branch] gh/XuehaiPan/316/base -> origin/gh/XuehaiPan/316/base 2025-07-17T06:36:43.6010327Z * [new branch] gh/XuehaiPan/316/head -> origin/gh/XuehaiPan/316/head 2025-07-17T06:36:43.6010831Z * [new branch] gh/XuehaiPan/316/orig -> origin/gh/XuehaiPan/316/orig 2025-07-17T06:36:43.6011349Z * [new branch] gh/XuehaiPan/317/base -> origin/gh/XuehaiPan/317/base 2025-07-17T06:36:43.6011897Z * [new branch] gh/XuehaiPan/317/head -> origin/gh/XuehaiPan/317/head 2025-07-17T06:36:43.6012448Z * [new branch] gh/XuehaiPan/317/orig -> origin/gh/XuehaiPan/317/orig 2025-07-17T06:36:43.6012971Z * [new branch] gh/XuehaiPan/318/base -> origin/gh/XuehaiPan/318/base 2025-07-17T06:36:43.6013469Z * [new branch] gh/XuehaiPan/318/head -> origin/gh/XuehaiPan/318/head 2025-07-17T06:36:43.6013980Z * [new branch] gh/XuehaiPan/318/orig -> origin/gh/XuehaiPan/318/orig 2025-07-17T06:36:43.6014477Z * [new branch] gh/XuehaiPan/319/base -> origin/gh/XuehaiPan/319/base 2025-07-17T06:36:43.6014979Z * [new branch] gh/XuehaiPan/319/head -> origin/gh/XuehaiPan/319/head 2025-07-17T06:36:43.6015479Z * [new branch] gh/XuehaiPan/319/orig -> origin/gh/XuehaiPan/319/orig 2025-07-17T06:36:43.6015977Z * [new branch] gh/XuehaiPan/320/base -> origin/gh/XuehaiPan/320/base 2025-07-17T06:36:43.6016483Z * [new branch] gh/XuehaiPan/320/head -> origin/gh/XuehaiPan/320/head 2025-07-17T06:36:43.6433452Z * [new branch] gh/XuehaiPan/320/orig -> origin/gh/XuehaiPan/320/orig 2025-07-17T06:36:43.6434057Z * [new branch] gh/XuehaiPan/321/base -> origin/gh/XuehaiPan/321/base 2025-07-17T06:36:43.6434581Z * [new branch] gh/XuehaiPan/321/head -> origin/gh/XuehaiPan/321/head 2025-07-17T06:36:43.6435156Z * [new branch] gh/XuehaiPan/321/orig -> origin/gh/XuehaiPan/321/orig 2025-07-17T06:36:43.6435676Z * [new branch] gh/XuehaiPan/322/base -> origin/gh/XuehaiPan/322/base 2025-07-17T06:36:43.6436186Z * [new branch] gh/XuehaiPan/322/head -> origin/gh/XuehaiPan/322/head 2025-07-17T06:36:43.6436692Z * [new branch] gh/XuehaiPan/322/orig -> origin/gh/XuehaiPan/322/orig 2025-07-17T06:36:43.6437215Z * [new branch] gh/XuehaiPan/323/base -> origin/gh/XuehaiPan/323/base 2025-07-17T06:36:43.6438736Z * [new branch] gh/XuehaiPan/323/head -> origin/gh/XuehaiPan/323/head 2025-07-17T06:36:43.6439427Z * [new branch] gh/XuehaiPan/323/orig -> origin/gh/XuehaiPan/323/orig 2025-07-17T06:36:43.6439948Z * [new branch] gh/XuehaiPan/324/base -> origin/gh/XuehaiPan/324/base 2025-07-17T06:36:43.6440442Z * [new branch] gh/XuehaiPan/324/head -> origin/gh/XuehaiPan/324/head 2025-07-17T06:36:43.6440950Z * [new branch] gh/XuehaiPan/324/orig -> origin/gh/XuehaiPan/324/orig 2025-07-17T06:36:43.6441446Z * [new branch] gh/XuehaiPan/325/base -> origin/gh/XuehaiPan/325/base 2025-07-17T06:36:43.6441947Z * [new branch] gh/XuehaiPan/325/head -> origin/gh/XuehaiPan/325/head 2025-07-17T06:36:43.6442439Z * [new branch] gh/XuehaiPan/325/orig -> origin/gh/XuehaiPan/325/orig 2025-07-17T06:36:43.6442941Z * [new branch] gh/XuehaiPan/326/base -> origin/gh/XuehaiPan/326/base 2025-07-17T06:36:43.6444452Z * [new branch] gh/XuehaiPan/326/head -> origin/gh/XuehaiPan/326/head 2025-07-17T06:36:43.6445072Z * [new branch] gh/XuehaiPan/326/orig -> origin/gh/XuehaiPan/326/orig 2025-07-17T06:36:43.6445585Z * [new branch] gh/XuehaiPan/327/base -> origin/gh/XuehaiPan/327/base 2025-07-17T06:36:43.6446093Z * [new branch] gh/XuehaiPan/327/head -> origin/gh/XuehaiPan/327/head 2025-07-17T06:36:43.6446598Z * [new branch] gh/XuehaiPan/327/orig -> origin/gh/XuehaiPan/327/orig 2025-07-17T06:36:43.6447112Z * [new branch] gh/XuehaiPan/328/base -> origin/gh/XuehaiPan/328/base 2025-07-17T06:36:43.6447614Z * [new branch] gh/XuehaiPan/328/head -> origin/gh/XuehaiPan/328/head 2025-07-17T06:36:43.6448125Z * [new branch] gh/XuehaiPan/328/orig -> origin/gh/XuehaiPan/328/orig 2025-07-17T06:36:43.6448624Z * [new branch] gh/XuehaiPan/329/base -> origin/gh/XuehaiPan/329/base 2025-07-17T06:36:43.6450124Z * [new branch] gh/XuehaiPan/329/head -> origin/gh/XuehaiPan/329/head 2025-07-17T06:36:43.6450653Z * [new branch] gh/XuehaiPan/329/orig -> origin/gh/XuehaiPan/329/orig 2025-07-17T06:36:43.6451154Z * [new branch] gh/XuehaiPan/330/base -> origin/gh/XuehaiPan/330/base 2025-07-17T06:36:43.6451668Z * [new branch] gh/XuehaiPan/330/head -> origin/gh/XuehaiPan/330/head 2025-07-17T06:36:43.6452164Z * [new branch] gh/XuehaiPan/330/orig -> origin/gh/XuehaiPan/330/orig 2025-07-17T06:36:43.6452677Z * [new branch] gh/XuehaiPan/331/base -> origin/gh/XuehaiPan/331/base 2025-07-17T06:36:43.6453184Z * [new branch] gh/XuehaiPan/331/head -> origin/gh/XuehaiPan/331/head 2025-07-17T06:36:43.6453690Z * [new branch] gh/XuehaiPan/331/orig -> origin/gh/XuehaiPan/331/orig 2025-07-17T06:36:43.6454206Z * [new branch] gh/XuehaiPan/332/base -> origin/gh/XuehaiPan/332/base 2025-07-17T06:36:43.6454721Z * [new branch] gh/XuehaiPan/332/head -> origin/gh/XuehaiPan/332/head 2025-07-17T06:36:43.6456202Z * [new branch] gh/XuehaiPan/332/orig -> origin/gh/XuehaiPan/332/orig 2025-07-17T06:36:43.6456711Z * [new branch] gh/XuehaiPan/333/base -> origin/gh/XuehaiPan/333/base 2025-07-17T06:36:43.6457229Z * [new branch] gh/XuehaiPan/333/head -> origin/gh/XuehaiPan/333/head 2025-07-17T06:36:43.6457744Z * [new branch] gh/XuehaiPan/333/orig -> origin/gh/XuehaiPan/333/orig 2025-07-17T06:36:43.6458248Z * [new branch] gh/XuehaiPan/334/base -> origin/gh/XuehaiPan/334/base 2025-07-17T06:36:43.6458759Z * [new branch] gh/XuehaiPan/334/head -> origin/gh/XuehaiPan/334/head 2025-07-17T06:36:43.6459258Z * [new branch] gh/XuehaiPan/334/orig -> origin/gh/XuehaiPan/334/orig 2025-07-17T06:36:43.6459775Z * [new branch] gh/XuehaiPan/335/base -> origin/gh/XuehaiPan/335/base 2025-07-17T06:36:43.6462038Z * [new branch] gh/XuehaiPan/335/head -> origin/gh/XuehaiPan/335/head 2025-07-17T06:36:43.6462546Z * [new branch] gh/XuehaiPan/335/orig -> origin/gh/XuehaiPan/335/orig 2025-07-17T06:36:43.6874513Z * [new branch] gh/XuehaiPan/336/base -> origin/gh/XuehaiPan/336/base 2025-07-17T06:36:43.6875153Z * [new branch] gh/XuehaiPan/336/head -> origin/gh/XuehaiPan/336/head 2025-07-17T06:36:43.6875681Z * [new branch] gh/XuehaiPan/336/orig -> origin/gh/XuehaiPan/336/orig 2025-07-17T06:36:43.6876263Z * [new branch] gh/XuehaiPan/337/base -> origin/gh/XuehaiPan/337/base 2025-07-17T06:36:43.6876815Z * [new branch] gh/XuehaiPan/337/head -> origin/gh/XuehaiPan/337/head 2025-07-17T06:36:43.6877323Z * [new branch] gh/XuehaiPan/337/orig -> origin/gh/XuehaiPan/337/orig 2025-07-17T06:36:43.6877869Z * [new branch] gh/XuehaiPan/338/base -> origin/gh/XuehaiPan/338/base 2025-07-17T06:36:43.6878534Z * [new branch] gh/XuehaiPan/338/head -> origin/gh/XuehaiPan/338/head 2025-07-17T06:36:43.6879050Z * [new branch] gh/XuehaiPan/338/orig -> origin/gh/XuehaiPan/338/orig 2025-07-17T06:36:43.6879558Z * [new branch] gh/XuehaiPan/339/base -> origin/gh/XuehaiPan/339/base 2025-07-17T06:36:43.6880069Z * [new branch] gh/XuehaiPan/339/head -> origin/gh/XuehaiPan/339/head 2025-07-17T06:36:43.6880572Z * [new branch] gh/XuehaiPan/339/orig -> origin/gh/XuehaiPan/339/orig 2025-07-17T06:36:43.6881085Z * [new branch] gh/XuehaiPan/340/base -> origin/gh/XuehaiPan/340/base 2025-07-17T06:36:43.6881598Z * [new branch] gh/XuehaiPan/340/head -> origin/gh/XuehaiPan/340/head 2025-07-17T06:36:43.6882160Z * [new branch] gh/XuehaiPan/340/orig -> origin/gh/XuehaiPan/340/orig 2025-07-17T06:36:43.6882721Z * [new branch] gh/XuehaiPan/341/base -> origin/gh/XuehaiPan/341/base 2025-07-17T06:36:43.6883218Z * [new branch] gh/XuehaiPan/341/head -> origin/gh/XuehaiPan/341/head 2025-07-17T06:36:43.6883724Z * [new branch] gh/XuehaiPan/341/orig -> origin/gh/XuehaiPan/341/orig 2025-07-17T06:36:43.6884231Z * [new branch] gh/XuehaiPan/342/base -> origin/gh/XuehaiPan/342/base 2025-07-17T06:36:43.6884728Z * [new branch] gh/XuehaiPan/342/head -> origin/gh/XuehaiPan/342/head 2025-07-17T06:36:43.6885234Z * [new branch] gh/XuehaiPan/342/orig -> origin/gh/XuehaiPan/342/orig 2025-07-17T06:36:43.6885734Z * [new branch] gh/XuehaiPan/343/base -> origin/gh/XuehaiPan/343/base 2025-07-17T06:36:43.6886245Z * [new branch] gh/XuehaiPan/343/head -> origin/gh/XuehaiPan/343/head 2025-07-17T06:36:43.6886753Z * [new branch] gh/XuehaiPan/343/orig -> origin/gh/XuehaiPan/343/orig 2025-07-17T06:36:43.6887253Z * [new branch] gh/XuehaiPan/344/base -> origin/gh/XuehaiPan/344/base 2025-07-17T06:36:43.6887757Z * [new branch] gh/XuehaiPan/344/head -> origin/gh/XuehaiPan/344/head 2025-07-17T06:36:43.6888354Z * [new branch] gh/XuehaiPan/344/orig -> origin/gh/XuehaiPan/344/orig 2025-07-17T06:36:43.6888864Z * [new branch] gh/XuehaiPan/345/base -> origin/gh/XuehaiPan/345/base 2025-07-17T06:36:43.6889370Z * [new branch] gh/XuehaiPan/345/head -> origin/gh/XuehaiPan/345/head 2025-07-17T06:36:43.6889871Z * [new branch] gh/XuehaiPan/345/orig -> origin/gh/XuehaiPan/345/orig 2025-07-17T06:36:43.6890379Z * [new branch] gh/XuehaiPan/346/base -> origin/gh/XuehaiPan/346/base 2025-07-17T06:36:43.6890874Z * [new branch] gh/XuehaiPan/346/head -> origin/gh/XuehaiPan/346/head 2025-07-17T06:36:43.6891493Z * [new branch] gh/XuehaiPan/346/orig -> origin/gh/XuehaiPan/346/orig 2025-07-17T06:36:43.6891989Z * [new branch] gh/XuehaiPan/347/base -> origin/gh/XuehaiPan/347/base 2025-07-17T06:36:43.6892500Z * [new branch] gh/XuehaiPan/347/head -> origin/gh/XuehaiPan/347/head 2025-07-17T06:36:43.6893009Z * [new branch] gh/XuehaiPan/347/orig -> origin/gh/XuehaiPan/347/orig 2025-07-17T06:36:43.6893503Z * [new branch] gh/XuehaiPan/348/base -> origin/gh/XuehaiPan/348/base 2025-07-17T06:36:43.6894073Z * [new branch] gh/XuehaiPan/348/head -> origin/gh/XuehaiPan/348/head 2025-07-17T06:36:43.6894630Z * [new branch] gh/XuehaiPan/348/orig -> origin/gh/XuehaiPan/348/orig 2025-07-17T06:36:43.6895131Z * [new branch] gh/XuehaiPan/349/base -> origin/gh/XuehaiPan/349/base 2025-07-17T06:36:43.6895632Z * [new branch] gh/XuehaiPan/349/head -> origin/gh/XuehaiPan/349/head 2025-07-17T06:36:43.6896210Z * [new branch] gh/XuehaiPan/349/orig -> origin/gh/XuehaiPan/349/orig 2025-07-17T06:36:43.6896720Z * [new branch] gh/XuehaiPan/350/base -> origin/gh/XuehaiPan/350/base 2025-07-17T06:36:43.6897216Z * [new branch] gh/XuehaiPan/350/head -> origin/gh/XuehaiPan/350/head 2025-07-17T06:36:43.6897726Z * [new branch] gh/XuehaiPan/350/orig -> origin/gh/XuehaiPan/350/orig 2025-07-17T06:36:43.6898243Z * [new branch] gh/XuehaiPan/351/base -> origin/gh/XuehaiPan/351/base 2025-07-17T06:36:43.7460086Z * [new branch] gh/XuehaiPan/351/head -> origin/gh/XuehaiPan/351/head 2025-07-17T06:36:43.7460738Z * [new branch] gh/XuehaiPan/351/orig -> origin/gh/XuehaiPan/351/orig 2025-07-17T06:36:43.7461264Z * [new branch] gh/XuehaiPan/352/base -> origin/gh/XuehaiPan/352/base 2025-07-17T06:36:43.7461785Z * [new branch] gh/XuehaiPan/352/head -> origin/gh/XuehaiPan/352/head 2025-07-17T06:36:43.7462308Z * [new branch] gh/XuehaiPan/352/orig -> origin/gh/XuehaiPan/352/orig 2025-07-17T06:36:43.7462807Z * [new branch] gh/XuehaiPan/353/base -> origin/gh/XuehaiPan/353/base 2025-07-17T06:36:43.7463316Z * [new branch] gh/XuehaiPan/353/head -> origin/gh/XuehaiPan/353/head 2025-07-17T06:36:43.7463816Z * [new branch] gh/XuehaiPan/353/orig -> origin/gh/XuehaiPan/353/orig 2025-07-17T06:36:43.7464322Z * [new branch] gh/XuehaiPan/354/base -> origin/gh/XuehaiPan/354/base 2025-07-17T06:36:43.7464827Z * [new branch] gh/XuehaiPan/354/head -> origin/gh/XuehaiPan/354/head 2025-07-17T06:36:43.7465321Z * [new branch] gh/XuehaiPan/354/orig -> origin/gh/XuehaiPan/354/orig 2025-07-17T06:36:43.7465822Z * [new branch] gh/XuehaiPan/355/base -> origin/gh/XuehaiPan/355/base 2025-07-17T06:36:43.7466386Z * [new branch] gh/XuehaiPan/355/head -> origin/gh/XuehaiPan/355/head 2025-07-17T06:36:43.7466946Z * [new branch] gh/XuehaiPan/355/orig -> origin/gh/XuehaiPan/355/orig 2025-07-17T06:36:43.7467448Z * [new branch] gh/XuehaiPan/356/base -> origin/gh/XuehaiPan/356/base 2025-07-17T06:36:43.7467943Z * [new branch] gh/XuehaiPan/356/head -> origin/gh/XuehaiPan/356/head 2025-07-17T06:36:43.7468449Z * [new branch] gh/XuehaiPan/356/orig -> origin/gh/XuehaiPan/356/orig 2025-07-17T06:36:43.7468948Z * [new branch] gh/XuehaiPan/357/base -> origin/gh/XuehaiPan/357/base 2025-07-17T06:36:43.7469456Z * [new branch] gh/XuehaiPan/357/head -> origin/gh/XuehaiPan/357/head 2025-07-17T06:36:43.7469964Z * [new branch] gh/XuehaiPan/357/orig -> origin/gh/XuehaiPan/357/orig 2025-07-17T06:36:43.7470619Z * [new branch] gh/XuehaiPan/358/base -> origin/gh/XuehaiPan/358/base 2025-07-17T06:36:43.7471132Z * [new branch] gh/XuehaiPan/358/head -> origin/gh/XuehaiPan/358/head 2025-07-17T06:36:43.7471630Z * [new branch] gh/XuehaiPan/358/orig -> origin/gh/XuehaiPan/358/orig 2025-07-17T06:36:43.7472200Z * [new branch] gh/XuehaiPan/359/base -> origin/gh/XuehaiPan/359/base 2025-07-17T06:36:43.7472752Z * [new branch] gh/XuehaiPan/359/head -> origin/gh/XuehaiPan/359/head 2025-07-17T06:36:43.7473249Z * [new branch] gh/XuehaiPan/359/orig -> origin/gh/XuehaiPan/359/orig 2025-07-17T06:36:43.7473762Z * [new branch] gh/XuehaiPan/360/base -> origin/gh/XuehaiPan/360/base 2025-07-17T06:36:43.7474260Z * [new branch] gh/XuehaiPan/360/head -> origin/gh/XuehaiPan/360/head 2025-07-17T06:36:43.7474768Z * [new branch] gh/XuehaiPan/360/orig -> origin/gh/XuehaiPan/360/orig 2025-07-17T06:36:43.7475998Z * [new branch] gh/XuehaiPan/361/base -> origin/gh/XuehaiPan/361/base 2025-07-17T06:36:43.7476533Z * [new branch] gh/XuehaiPan/361/head -> origin/gh/XuehaiPan/361/head 2025-07-17T06:36:43.7477043Z * [new branch] gh/XuehaiPan/361/orig -> origin/gh/XuehaiPan/361/orig 2025-07-17T06:36:43.7477545Z * [new branch] gh/XuehaiPan/362/base -> origin/gh/XuehaiPan/362/base 2025-07-17T06:36:43.7478119Z * [new branch] gh/XuehaiPan/362/head -> origin/gh/XuehaiPan/362/head 2025-07-17T06:36:43.7478662Z * [new branch] gh/XuehaiPan/362/orig -> origin/gh/XuehaiPan/362/orig 2025-07-17T06:36:43.7479171Z * [new branch] gh/XuehaiPan/363/base -> origin/gh/XuehaiPan/363/base 2025-07-17T06:36:43.7479683Z * [new branch] gh/XuehaiPan/363/head -> origin/gh/XuehaiPan/363/head 2025-07-17T06:36:43.7480185Z * [new branch] gh/XuehaiPan/363/orig -> origin/gh/XuehaiPan/363/orig 2025-07-17T06:36:43.7480711Z * [new branch] gh/XuehaiPan/364/base -> origin/gh/XuehaiPan/364/base 2025-07-17T06:36:43.7481210Z * [new branch] gh/XuehaiPan/364/head -> origin/gh/XuehaiPan/364/head 2025-07-17T06:36:43.7481718Z * [new branch] gh/XuehaiPan/364/orig -> origin/gh/XuehaiPan/364/orig 2025-07-17T06:36:43.7482220Z * [new branch] gh/XuehaiPan/365/base -> origin/gh/XuehaiPan/365/base 2025-07-17T06:36:43.7482715Z * [new branch] gh/XuehaiPan/365/head -> origin/gh/XuehaiPan/365/head 2025-07-17T06:36:43.7483221Z * [new branch] gh/XuehaiPan/365/orig -> origin/gh/XuehaiPan/365/orig 2025-07-17T06:36:43.7483723Z * [new branch] gh/XuehaiPan/366/base -> origin/gh/XuehaiPan/366/base 2025-07-17T06:36:43.7484282Z * [new branch] gh/XuehaiPan/366/head -> origin/gh/XuehaiPan/366/head 2025-07-17T06:36:43.8663902Z * [new branch] gh/XuehaiPan/367/base -> origin/gh/XuehaiPan/367/base 2025-07-17T06:36:43.8665986Z * [new branch] gh/XuehaiPan/367/head -> origin/gh/XuehaiPan/367/head 2025-07-17T06:36:43.8666533Z * [new branch] gh/XuehaiPan/368/base -> origin/gh/XuehaiPan/368/base 2025-07-17T06:36:43.8667051Z * [new branch] gh/XuehaiPan/368/head -> origin/gh/XuehaiPan/368/head 2025-07-17T06:36:43.8667561Z * [new branch] gh/XuehaiPan/368/orig -> origin/gh/XuehaiPan/368/orig 2025-07-17T06:36:43.8668073Z * [new branch] gh/XuehaiPan/369/base -> origin/gh/XuehaiPan/369/base 2025-07-17T06:36:43.8668582Z * [new branch] gh/XuehaiPan/369/head -> origin/gh/XuehaiPan/369/head 2025-07-17T06:36:43.8669087Z * [new branch] gh/XuehaiPan/369/orig -> origin/gh/XuehaiPan/369/orig 2025-07-17T06:36:43.8669609Z * [new branch] gh/ZhiweiYan-96/39/base -> origin/gh/ZhiweiYan-96/39/base 2025-07-17T06:36:43.8670302Z * [new branch] gh/ZhiweiYan-96/39/head -> origin/gh/ZhiweiYan-96/39/head 2025-07-17T06:36:43.8670835Z * [new branch] gh/ZhiweiYan-96/39/orig -> origin/gh/ZhiweiYan-96/39/orig 2025-07-17T06:36:43.8671361Z * [new branch] gh/ZhiweiYan-96/44/base -> origin/gh/ZhiweiYan-96/44/base 2025-07-17T06:36:43.8671874Z * [new branch] gh/ZhiweiYan-96/44/head -> origin/gh/ZhiweiYan-96/44/head 2025-07-17T06:36:43.8672399Z * [new branch] gh/ZhiweiYan-96/45/base -> origin/gh/ZhiweiYan-96/45/base 2025-07-17T06:36:43.8672911Z * [new branch] gh/ZhiweiYan-96/45/head -> origin/gh/ZhiweiYan-96/45/head 2025-07-17T06:36:43.8673430Z * [new branch] gh/ZhiweiYan-96/49/base -> origin/gh/ZhiweiYan-96/49/base 2025-07-17T06:36:43.8673949Z * [new branch] gh/ZhiweiYan-96/49/head -> origin/gh/ZhiweiYan-96/49/head 2025-07-17T06:36:43.8674463Z * [new branch] gh/ZhiweiYan-96/56/base -> origin/gh/ZhiweiYan-96/56/base 2025-07-17T06:36:43.8677018Z * [new branch] gh/ZhiweiYan-96/56/head -> origin/gh/ZhiweiYan-96/56/head 2025-07-17T06:36:43.8677590Z * [new branch] gh/ZhiweiYan-96/56/orig -> origin/gh/ZhiweiYan-96/56/orig 2025-07-17T06:36:43.8678117Z * [new branch] gh/ZhiweiYan-96/62/base -> origin/gh/ZhiweiYan-96/62/base 2025-07-17T06:36:43.8678644Z * [new branch] gh/ZhiweiYan-96/62/head -> origin/gh/ZhiweiYan-96/62/head 2025-07-17T06:36:43.8679165Z * [new branch] gh/ZhiweiYan-96/64/base -> origin/gh/ZhiweiYan-96/64/base 2025-07-17T06:36:43.8679680Z * [new branch] gh/ZhiweiYan-96/64/head -> origin/gh/ZhiweiYan-96/64/head 2025-07-17T06:36:43.8680188Z * [new branch] gh/ZhiweiYan-96/64/orig -> origin/gh/ZhiweiYan-96/64/orig 2025-07-17T06:36:43.8680727Z * [new branch] gh/aakhundov/1/base -> origin/gh/aakhundov/1/base 2025-07-17T06:36:43.8681234Z * [new branch] gh/aakhundov/1/head -> origin/gh/aakhundov/1/head 2025-07-17T06:36:43.8681736Z * [new branch] gh/aakhundov/2/base -> origin/gh/aakhundov/2/base 2025-07-17T06:36:43.8682226Z * [new branch] gh/aakhundov/2/head -> origin/gh/aakhundov/2/head 2025-07-17T06:36:43.8682727Z * [new branch] gh/aditew01/openblas -> origin/gh/aditew01/openblas 2025-07-17T06:36:43.8683239Z * [new branch] gh/aditew01/sbgemm -> origin/gh/aditew01/sbgemm 2025-07-17T06:36:43.8683718Z * [new branch] gh/aditew01/vecbf16 -> origin/gh/aditew01/vecbf16 2025-07-17T06:36:43.8684194Z * [new branch] gh/albanD/3/base -> origin/gh/albanD/3/base 2025-07-17T06:36:43.8684657Z * [new branch] gh/albanD/3/head -> origin/gh/albanD/3/head 2025-07-17T06:36:43.8685117Z * [new branch] gh/albanD/3/orig -> origin/gh/albanD/3/orig 2025-07-17T06:36:43.8685826Z * [new branch] gh/alexbrauckmann/paddedtensor_faketensor_init -> origin/gh/alexbrauckmann/paddedtensor_faketensor_init 2025-07-17T06:36:43.8686643Z * [new branch] gh/alexbrauckmann/paddedtensor_init -> origin/gh/alexbrauckmann/paddedtensor_init 2025-07-17T06:36:43.8687409Z * [new branch] gh/alexbrauckmann/paddedtensor_meta_init -> origin/gh/alexbrauckmann/paddedtensor_meta_init 2025-07-17T06:36:43.8688082Z * [new branch] gh/alexsamardzic/4/base -> origin/gh/alexsamardzic/4/base 2025-07-17T06:36:43.8688615Z * [new branch] gh/alexsamardzic/4/head -> origin/gh/alexsamardzic/4/head 2025-07-17T06:36:43.8689158Z * [new branch] gh/alexsamardzic/4/orig -> origin/gh/alexsamardzic/4/orig 2025-07-17T06:36:43.8689686Z * [new branch] gh/alexsamardzic/5/base -> origin/gh/alexsamardzic/5/base 2025-07-17T06:36:43.8690329Z * [new branch] gh/alexsamardzic/5/head -> origin/gh/alexsamardzic/5/head 2025-07-17T06:36:43.8690877Z * [new branch] gh/alexsamardzic/5/orig -> origin/gh/alexsamardzic/5/orig 2025-07-17T06:36:43.8691409Z * [new branch] gh/alexsamardzic/6/base -> origin/gh/alexsamardzic/6/base 2025-07-17T06:36:43.9516064Z * [new branch] gh/alexsamardzic/6/head -> origin/gh/alexsamardzic/6/head 2025-07-17T06:36:43.9516657Z * [new branch] gh/alexsamardzic/6/orig -> origin/gh/alexsamardzic/6/orig 2025-07-17T06:36:43.9517209Z * [new branch] gh/alexsamardzic/7/base -> origin/gh/alexsamardzic/7/base 2025-07-17T06:36:43.9517759Z * [new branch] gh/alexsamardzic/7/head -> origin/gh/alexsamardzic/7/head 2025-07-17T06:36:43.9518290Z * [new branch] gh/alexsamardzic/7/orig -> origin/gh/alexsamardzic/7/orig 2025-07-17T06:36:43.9518802Z * [new branch] gh/amjames/18/base -> origin/gh/amjames/18/base 2025-07-17T06:36:43.9519831Z * [new branch] gh/amjames/18/head -> origin/gh/amjames/18/head 2025-07-17T06:36:43.9520344Z * [new branch] gh/amjames/18/orig -> origin/gh/amjames/18/orig 2025-07-17T06:36:43.9520847Z * [new branch] gh/andrewor14/35/base -> origin/gh/andrewor14/35/base 2025-07-17T06:36:43.9521351Z * [new branch] gh/andrewor14/35/head -> origin/gh/andrewor14/35/head 2025-07-17T06:36:43.9521853Z * [new branch] gh/andrewor14/35/orig -> origin/gh/andrewor14/35/orig 2025-07-17T06:36:43.9522345Z * [new branch] gh/andrewor14/50/base -> origin/gh/andrewor14/50/base 2025-07-17T06:36:43.9522846Z * [new branch] gh/andrewor14/50/head -> origin/gh/andrewor14/50/head 2025-07-17T06:36:43.9523350Z * [new branch] gh/andrewor14/50/orig -> origin/gh/andrewor14/50/orig 2025-07-17T06:36:43.9523858Z * [new branch] gh/andyanwang/1/base -> origin/gh/andyanwang/1/base 2025-07-17T06:36:43.9524381Z * [new branch] gh/andyanwang/1/head -> origin/gh/andyanwang/1/head 2025-07-17T06:36:43.9524882Z * [new branch] gh/andyanwang/1/orig -> origin/gh/andyanwang/1/orig 2025-07-17T06:36:43.9525393Z * [new branch] gh/andyanwang/13/base -> origin/gh/andyanwang/13/base 2025-07-17T06:36:43.9525907Z * [new branch] gh/andyanwang/13/head -> origin/gh/andyanwang/13/head 2025-07-17T06:36:43.9526405Z * [new branch] gh/andyanwang/13/orig -> origin/gh/andyanwang/13/orig 2025-07-17T06:36:43.9526913Z * [new branch] gh/andyanwang/14/base -> origin/gh/andyanwang/14/base 2025-07-17T06:36:43.9527412Z * [new branch] gh/andyanwang/14/head -> origin/gh/andyanwang/14/head 2025-07-17T06:36:43.9527918Z * [new branch] gh/andyanwang/14/orig -> origin/gh/andyanwang/14/orig 2025-07-17T06:36:43.9528423Z * [new branch] gh/andyanwang/18/base -> origin/gh/andyanwang/18/base 2025-07-17T06:36:43.9529074Z * [new branch] gh/andyanwang/18/head -> origin/gh/andyanwang/18/head 2025-07-17T06:36:43.9529584Z * [new branch] gh/andyanwang/18/orig -> origin/gh/andyanwang/18/orig 2025-07-17T06:36:43.9530097Z * [new branch] gh/andyanwang/19/base -> origin/gh/andyanwang/19/base 2025-07-17T06:36:43.9530607Z * [new branch] gh/andyanwang/19/head -> origin/gh/andyanwang/19/head 2025-07-17T06:36:43.9531110Z * [new branch] gh/andyanwang/19/orig -> origin/gh/andyanwang/19/orig 2025-07-17T06:36:43.9531610Z * [new branch] gh/andyanwang/2/base -> origin/gh/andyanwang/2/base 2025-07-17T06:36:43.9532115Z * [new branch] gh/andyanwang/2/head -> origin/gh/andyanwang/2/head 2025-07-17T06:36:43.9532610Z * [new branch] gh/andyanwang/2/orig -> origin/gh/andyanwang/2/orig 2025-07-17T06:36:43.9533255Z * [new branch] gh/andyanwang/20/base -> origin/gh/andyanwang/20/base 2025-07-17T06:36:43.9533760Z * [new branch] gh/andyanwang/20/head -> origin/gh/andyanwang/20/head 2025-07-17T06:36:43.9534269Z * [new branch] gh/andyanwang/20/orig -> origin/gh/andyanwang/20/orig 2025-07-17T06:36:43.9534777Z * [new branch] gh/andyanwang/21/base -> origin/gh/andyanwang/21/base 2025-07-17T06:36:43.9535277Z * [new branch] gh/andyanwang/21/head -> origin/gh/andyanwang/21/head 2025-07-17T06:36:43.9535790Z * [new branch] gh/andyanwang/21/orig -> origin/gh/andyanwang/21/orig 2025-07-17T06:36:43.9536293Z * [new branch] gh/andyanwang/22/base -> origin/gh/andyanwang/22/base 2025-07-17T06:36:43.9536809Z * [new branch] gh/andyanwang/22/head -> origin/gh/andyanwang/22/head 2025-07-17T06:36:43.9537316Z * [new branch] gh/andyanwang/22/orig -> origin/gh/andyanwang/22/orig 2025-07-17T06:36:43.9538193Z * [new branch] gh/andyanwang/23/base -> origin/gh/andyanwang/23/base 2025-07-17T06:36:43.9538718Z * [new branch] gh/andyanwang/23/head -> origin/gh/andyanwang/23/head 2025-07-17T06:36:43.9539217Z * [new branch] gh/andyanwang/23/orig -> origin/gh/andyanwang/23/orig 2025-07-17T06:36:43.9539721Z * [new branch] gh/andyanwang/24/base -> origin/gh/andyanwang/24/base 2025-07-17T06:36:43.9540227Z * [new branch] gh/andyanwang/24/head -> origin/gh/andyanwang/24/head 2025-07-17T06:36:43.9940771Z * [new branch] gh/andyanwang/24/orig -> origin/gh/andyanwang/24/orig 2025-07-17T06:36:43.9941353Z * [new branch] gh/andyanwang/25/base -> origin/gh/andyanwang/25/base 2025-07-17T06:36:43.9941935Z * [new branch] gh/andyanwang/25/head -> origin/gh/andyanwang/25/head 2025-07-17T06:36:43.9942553Z * [new branch] gh/andyanwang/25/orig -> origin/gh/andyanwang/25/orig 2025-07-17T06:36:43.9943070Z * [new branch] gh/andyanwang/26/base -> origin/gh/andyanwang/26/base 2025-07-17T06:36:43.9943571Z * [new branch] gh/andyanwang/26/head -> origin/gh/andyanwang/26/head 2025-07-17T06:36:43.9944096Z * [new branch] gh/andyanwang/26/orig -> origin/gh/andyanwang/26/orig 2025-07-17T06:36:43.9944607Z * [new branch] gh/andyanwang/27/base -> origin/gh/andyanwang/27/base 2025-07-17T06:36:43.9945117Z * [new branch] gh/andyanwang/27/head -> origin/gh/andyanwang/27/head 2025-07-17T06:36:43.9945625Z * [new branch] gh/andyanwang/27/orig -> origin/gh/andyanwang/27/orig 2025-07-17T06:36:43.9946133Z * [new branch] gh/andyanwang/28/base -> origin/gh/andyanwang/28/base 2025-07-17T06:36:43.9946638Z * [new branch] gh/andyanwang/28/head -> origin/gh/andyanwang/28/head 2025-07-17T06:36:43.9947146Z * [new branch] gh/andyanwang/28/orig -> origin/gh/andyanwang/28/orig 2025-07-17T06:36:43.9947708Z * [new branch] gh/andyanwang/29/base -> origin/gh/andyanwang/29/base 2025-07-17T06:36:43.9948269Z * [new branch] gh/andyanwang/29/head -> origin/gh/andyanwang/29/head 2025-07-17T06:36:43.9948772Z * [new branch] gh/andyanwang/29/orig -> origin/gh/andyanwang/29/orig 2025-07-17T06:36:43.9949282Z * [new branch] gh/andyanwang/3/base -> origin/gh/andyanwang/3/base 2025-07-17T06:36:43.9949787Z * [new branch] gh/andyanwang/3/head -> origin/gh/andyanwang/3/head 2025-07-17T06:36:43.9950295Z * [new branch] gh/andyanwang/3/orig -> origin/gh/andyanwang/3/orig 2025-07-17T06:36:43.9950808Z * [new branch] gh/andyanwang/30/base -> origin/gh/andyanwang/30/base 2025-07-17T06:36:43.9951492Z * [new branch] gh/andyanwang/30/orig -> origin/gh/andyanwang/30/orig 2025-07-17T06:36:43.9952010Z * [new branch] gh/andyanwang/31/base -> origin/gh/andyanwang/31/base 2025-07-17T06:36:43.9952511Z * [new branch] gh/andyanwang/31/orig -> origin/gh/andyanwang/31/orig 2025-07-17T06:36:43.9953023Z * [new branch] gh/andyanwang/32/base -> origin/gh/andyanwang/32/base 2025-07-17T06:36:43.9953556Z * [new branch] gh/andyanwang/32/head -> origin/gh/andyanwang/32/head 2025-07-17T06:36:43.9954122Z * [new branch] gh/andyanwang/32/orig -> origin/gh/andyanwang/32/orig 2025-07-17T06:36:43.9954641Z * [new branch] gh/andyanwang/4/base -> origin/gh/andyanwang/4/base 2025-07-17T06:36:43.9955210Z * [new branch] gh/andyanwang/4/head -> origin/gh/andyanwang/4/head 2025-07-17T06:36:43.9955734Z * [new branch] gh/andyanwang/4/orig -> origin/gh/andyanwang/4/orig 2025-07-17T06:36:43.9956642Z * [new branch] gh/andyanwang/7/base -> origin/gh/andyanwang/7/base 2025-07-17T06:36:43.9957164Z * [new branch] gh/andyanwang/7/head -> origin/gh/andyanwang/7/head 2025-07-17T06:36:43.9957675Z * [new branch] gh/andyanwang/7/orig -> origin/gh/andyanwang/7/orig 2025-07-17T06:36:43.9958170Z * [new branch] gh/angelayi/100/base -> origin/gh/angelayi/100/base 2025-07-17T06:36:43.9958673Z * [new branch] gh/angelayi/100/head -> origin/gh/angelayi/100/head 2025-07-17T06:36:43.9959164Z * [new branch] gh/angelayi/100/orig -> origin/gh/angelayi/100/orig 2025-07-17T06:36:43.9959718Z * [new branch] gh/angelayi/101/base -> origin/gh/angelayi/101/base 2025-07-17T06:36:43.9960261Z * [new branch] gh/angelayi/101/head -> origin/gh/angelayi/101/head 2025-07-17T06:36:43.9960747Z * [new branch] gh/angelayi/101/orig -> origin/gh/angelayi/101/orig 2025-07-17T06:36:43.9961256Z * [new branch] gh/angelayi/102/base -> origin/gh/angelayi/102/base 2025-07-17T06:36:43.9961749Z * [new branch] gh/angelayi/102/head -> origin/gh/angelayi/102/head 2025-07-17T06:36:43.9962239Z * [new branch] gh/angelayi/102/orig -> origin/gh/angelayi/102/orig 2025-07-17T06:36:43.9962733Z * [new branch] gh/angelayi/103/base -> origin/gh/angelayi/103/base 2025-07-17T06:36:43.9963225Z * [new branch] gh/angelayi/103/head -> origin/gh/angelayi/103/head 2025-07-17T06:36:43.9963717Z * [new branch] gh/angelayi/103/orig -> origin/gh/angelayi/103/orig 2025-07-17T06:36:43.9964203Z * [new branch] gh/angelayi/104/base -> origin/gh/angelayi/104/base 2025-07-17T06:36:43.9964702Z * [new branch] gh/angelayi/104/head -> origin/gh/angelayi/104/head 2025-07-17T06:36:44.0835654Z * [new branch] gh/angelayi/104/orig -> origin/gh/angelayi/104/orig 2025-07-17T06:36:44.0836225Z * [new branch] gh/angelayi/82/base -> origin/gh/angelayi/82/base 2025-07-17T06:36:44.0836730Z * [new branch] gh/angelayi/82/head -> origin/gh/angelayi/82/head 2025-07-17T06:36:44.0837217Z * [new branch] gh/angelayi/82/orig -> origin/gh/angelayi/82/orig 2025-07-17T06:36:44.0837694Z * [new branch] gh/angelayi/97/base -> origin/gh/angelayi/97/base 2025-07-17T06:36:44.0838177Z * [new branch] gh/angelayi/97/head -> origin/gh/angelayi/97/head 2025-07-17T06:36:44.0838655Z * [new branch] gh/angelayi/97/orig -> origin/gh/angelayi/97/orig 2025-07-17T06:36:44.0839130Z * [new branch] gh/ani300/1/base -> origin/gh/ani300/1/base 2025-07-17T06:36:44.0839594Z * [new branch] gh/ani300/1/head -> origin/gh/ani300/1/head 2025-07-17T06:36:44.0840249Z * [new branch] gh/ani300/1/orig -> origin/gh/ani300/1/orig 2025-07-17T06:36:44.0840745Z * [new branch] gh/anijain2305/162/base -> origin/gh/anijain2305/162/base 2025-07-17T06:36:44.0841265Z * [new branch] gh/anijain2305/162/head -> origin/gh/anijain2305/162/head 2025-07-17T06:36:44.0841781Z * [new branch] gh/anijain2305/710/base -> origin/gh/anijain2305/710/base 2025-07-17T06:36:44.0842293Z * [new branch] gh/anijain2305/710/head -> origin/gh/anijain2305/710/head 2025-07-17T06:36:44.0842848Z * [new branch] gh/anijain2305/710/orig -> origin/gh/anijain2305/710/orig 2025-07-17T06:36:44.0843370Z * [new branch] gh/anijain2305/753/base -> origin/gh/anijain2305/753/base 2025-07-17T06:36:44.0843877Z * [new branch] gh/anijain2305/753/head -> origin/gh/anijain2305/753/head 2025-07-17T06:36:44.0844396Z * [new branch] gh/anijain2305/753/orig -> origin/gh/anijain2305/753/orig 2025-07-17T06:36:44.0845353Z * [new branch] gh/anijain2305/766/base -> origin/gh/anijain2305/766/base 2025-07-17T06:36:44.0845875Z * [new branch] gh/anijain2305/766/head -> origin/gh/anijain2305/766/head 2025-07-17T06:36:44.0846394Z * [new branch] gh/anijain2305/766/orig -> origin/gh/anijain2305/766/orig 2025-07-17T06:36:44.0846907Z * [new branch] gh/anijain2305/790/base -> origin/gh/anijain2305/790/base 2025-07-17T06:36:44.0847433Z * [new branch] gh/anijain2305/790/head -> origin/gh/anijain2305/790/head 2025-07-17T06:36:44.0847950Z * [new branch] gh/anijain2305/790/orig -> origin/gh/anijain2305/790/orig 2025-07-17T06:36:44.0848463Z * [new branch] gh/anijain2305/791/base -> origin/gh/anijain2305/791/base 2025-07-17T06:36:44.0848986Z * [new branch] gh/anijain2305/791/head -> origin/gh/anijain2305/791/head 2025-07-17T06:36:44.0849509Z * [new branch] gh/anijain2305/791/orig -> origin/gh/anijain2305/791/orig 2025-07-17T06:36:44.0850026Z * [new branch] gh/anijain2305/792/base -> origin/gh/anijain2305/792/base 2025-07-17T06:36:44.0850541Z * [new branch] gh/anijain2305/792/head -> origin/gh/anijain2305/792/head 2025-07-17T06:36:44.0851056Z * [new branch] gh/anijain2305/792/orig -> origin/gh/anijain2305/792/orig 2025-07-17T06:36:44.0851571Z * [new branch] gh/anijain2305/793/base -> origin/gh/anijain2305/793/base 2025-07-17T06:36:44.0852080Z * [new branch] gh/anijain2305/793/head -> origin/gh/anijain2305/793/head 2025-07-17T06:36:44.0852594Z * [new branch] gh/anijain2305/793/orig -> origin/gh/anijain2305/793/orig 2025-07-17T06:36:44.0853113Z * [new branch] gh/anijain2305/794/base -> origin/gh/anijain2305/794/base 2025-07-17T06:36:44.0853633Z * [new branch] gh/anijain2305/794/head -> origin/gh/anijain2305/794/head 2025-07-17T06:36:44.0854212Z * [new branch] gh/anijain2305/794/orig -> origin/gh/anijain2305/794/orig 2025-07-17T06:36:44.0854723Z * [new branch] gh/anijain2305/795/base -> origin/gh/anijain2305/795/base 2025-07-17T06:36:44.0855243Z * [new branch] gh/anijain2305/795/head -> origin/gh/anijain2305/795/head 2025-07-17T06:36:44.0855764Z * [new branch] gh/anijain2305/795/orig -> origin/gh/anijain2305/795/orig 2025-07-17T06:36:44.0856276Z * [new branch] gh/anijain2305/796/base -> origin/gh/anijain2305/796/base 2025-07-17T06:36:44.0856798Z * [new branch] gh/anijain2305/796/head -> origin/gh/anijain2305/796/head 2025-07-17T06:36:44.0857307Z * [new branch] gh/anijain2305/796/orig -> origin/gh/anijain2305/796/orig 2025-07-17T06:36:44.0857826Z * [new branch] gh/anijain2305/797/base -> origin/gh/anijain2305/797/base 2025-07-17T06:36:44.0858495Z * [new branch] gh/anijain2305/797/head -> origin/gh/anijain2305/797/head 2025-07-17T06:36:44.0859024Z * [new branch] gh/anijain2305/797/orig -> origin/gh/anijain2305/797/orig 2025-07-17T06:36:44.0859557Z * [new branch] gh/anijain2305/798/base -> origin/gh/anijain2305/798/base 2025-07-17T06:36:44.1264098Z * [new branch] gh/anijain2305/798/head -> origin/gh/anijain2305/798/head 2025-07-17T06:36:44.1264658Z * [new branch] gh/anijain2305/799/base -> origin/gh/anijain2305/799/base 2025-07-17T06:36:44.1265193Z * [new branch] gh/anijain2305/799/head -> origin/gh/anijain2305/799/head 2025-07-17T06:36:44.1265704Z * [new branch] gh/anijain2305/800/base -> origin/gh/anijain2305/800/base 2025-07-17T06:36:44.1266219Z * [new branch] gh/anijain2305/800/head -> origin/gh/anijain2305/800/head 2025-07-17T06:36:44.1266747Z * [new branch] gh/anijain2305/801/base -> origin/gh/anijain2305/801/base 2025-07-17T06:36:44.1267687Z * [new branch] gh/anijain2305/801/head -> origin/gh/anijain2305/801/head 2025-07-17T06:36:44.1268223Z * [new branch] gh/anijain2305/801/orig -> origin/gh/anijain2305/801/orig 2025-07-17T06:36:44.1268746Z * [new branch] gh/anijain2305/802/base -> origin/gh/anijain2305/802/base 2025-07-17T06:36:44.1269267Z * [new branch] gh/anijain2305/802/head -> origin/gh/anijain2305/802/head 2025-07-17T06:36:44.1269776Z * [new branch] gh/anijain2305/802/orig -> origin/gh/anijain2305/802/orig 2025-07-17T06:36:44.1270316Z * [new branch] gh/anijain2305/803/base -> origin/gh/anijain2305/803/base 2025-07-17T06:36:44.1270832Z * [new branch] gh/anijain2305/803/head -> origin/gh/anijain2305/803/head 2025-07-17T06:36:44.1271346Z * [new branch] gh/anijain2305/803/orig -> origin/gh/anijain2305/803/orig 2025-07-17T06:36:44.1271870Z * [new branch] gh/anijain2305/804/base -> origin/gh/anijain2305/804/base 2025-07-17T06:36:44.1272378Z * [new branch] gh/anijain2305/804/head -> origin/gh/anijain2305/804/head 2025-07-17T06:36:44.1272896Z * [new branch] gh/anijain2305/804/orig -> origin/gh/anijain2305/804/orig 2025-07-17T06:36:44.1273409Z * [new branch] gh/anijain2305/805/base -> origin/gh/anijain2305/805/base 2025-07-17T06:36:44.1273920Z * [new branch] gh/anijain2305/805/head -> origin/gh/anijain2305/805/head 2025-07-17T06:36:44.1274431Z * [new branch] gh/anijain2305/805/orig -> origin/gh/anijain2305/805/orig 2025-07-17T06:36:44.1275026Z * [new branch] gh/anijain2305/806/base -> origin/gh/anijain2305/806/base 2025-07-17T06:36:44.1275549Z * [new branch] gh/anijain2305/806/head -> origin/gh/anijain2305/806/head 2025-07-17T06:36:44.1276086Z * [new branch] gh/anijain2305/806/orig -> origin/gh/anijain2305/806/orig 2025-07-17T06:36:44.1276621Z * [new branch] gh/anijain2305/807/base -> origin/gh/anijain2305/807/base 2025-07-17T06:36:44.1277139Z * [new branch] gh/anijain2305/807/head -> origin/gh/anijain2305/807/head 2025-07-17T06:36:44.1277644Z * [new branch] gh/anijain2305/807/orig -> origin/gh/anijain2305/807/orig 2025-07-17T06:36:44.1278157Z * [new branch] gh/anijain2305/808/base -> origin/gh/anijain2305/808/base 2025-07-17T06:36:44.1278666Z * [new branch] gh/anijain2305/808/head -> origin/gh/anijain2305/808/head 2025-07-17T06:36:44.1279182Z * [new branch] gh/anijain2305/808/orig -> origin/gh/anijain2305/808/orig 2025-07-17T06:36:44.1279698Z * [new branch] gh/anijain2305/809/base -> origin/gh/anijain2305/809/base 2025-07-17T06:36:44.1280204Z * [new branch] gh/anijain2305/809/head -> origin/gh/anijain2305/809/head 2025-07-17T06:36:44.1280888Z * [new branch] gh/anijain2305/809/orig -> origin/gh/anijain2305/809/orig 2025-07-17T06:36:44.1281399Z * [new branch] gh/anijain2305/810/base -> origin/gh/anijain2305/810/base 2025-07-17T06:36:44.1281921Z * [new branch] gh/anijain2305/810/head -> origin/gh/anijain2305/810/head 2025-07-17T06:36:44.1282429Z * [new branch] gh/anijain2305/810/orig -> origin/gh/anijain2305/810/orig 2025-07-17T06:36:44.1282995Z * [new branch] gh/anijain2305/811/base -> origin/gh/anijain2305/811/base 2025-07-17T06:36:44.1283547Z * [new branch] gh/anijain2305/811/head -> origin/gh/anijain2305/811/head 2025-07-17T06:36:44.1284052Z * [new branch] gh/anijain2305/811/orig -> origin/gh/anijain2305/811/orig 2025-07-17T06:36:44.1284569Z * [new branch] gh/anijain2305/812/base -> origin/gh/anijain2305/812/base 2025-07-17T06:36:44.1285086Z * [new branch] gh/anijain2305/812/head -> origin/gh/anijain2305/812/head 2025-07-17T06:36:44.1285918Z * [new branch] gh/anijain2305/812/orig -> origin/gh/anijain2305/812/orig 2025-07-17T06:36:44.1286446Z * [new branch] gh/anijain2305/813/base -> origin/gh/anijain2305/813/base 2025-07-17T06:36:44.1286959Z * [new branch] gh/anijain2305/813/head -> origin/gh/anijain2305/813/head 2025-07-17T06:36:44.1287478Z * [new branch] gh/anijain2305/813/orig -> origin/gh/anijain2305/813/orig 2025-07-17T06:36:44.1287987Z * [new branch] gh/anijain2305/814/base -> origin/gh/anijain2305/814/base 2025-07-17T06:36:44.1728012Z * [new branch] gh/anijain2305/814/head -> origin/gh/anijain2305/814/head 2025-07-17T06:36:44.1728590Z * [new branch] gh/anijain2305/814/orig -> origin/gh/anijain2305/814/orig 2025-07-17T06:36:44.1729127Z * [new branch] gh/anijain2305/815/base -> origin/gh/anijain2305/815/base 2025-07-17T06:36:44.1729674Z * [new branch] gh/anijain2305/815/head -> origin/gh/anijain2305/815/head 2025-07-17T06:36:44.1730195Z * [new branch] gh/anijain2305/815/orig -> origin/gh/anijain2305/815/orig 2025-07-17T06:36:44.1730702Z * [new branch] gh/anijain2305/816/base -> origin/gh/anijain2305/816/base 2025-07-17T06:36:44.1731218Z * [new branch] gh/anijain2305/816/head -> origin/gh/anijain2305/816/head 2025-07-17T06:36:44.1731830Z * [new branch] gh/anijain2305/817/base -> origin/gh/anijain2305/817/base 2025-07-17T06:36:44.1732365Z * [new branch] gh/anijain2305/817/head -> origin/gh/anijain2305/817/head 2025-07-17T06:36:44.1732882Z * [new branch] gh/anijain2305/817/orig -> origin/gh/anijain2305/817/orig 2025-07-17T06:36:44.1733396Z * [new branch] gh/anijain2305/818/base -> origin/gh/anijain2305/818/base 2025-07-17T06:36:44.1733913Z * [new branch] gh/anijain2305/818/head -> origin/gh/anijain2305/818/head 2025-07-17T06:36:44.1734427Z * [new branch] gh/anijain2305/818/orig -> origin/gh/anijain2305/818/orig 2025-07-17T06:36:44.1734945Z * [new branch] gh/anijain2305/819/base -> origin/gh/anijain2305/819/base 2025-07-17T06:36:44.1735466Z * [new branch] gh/anijain2305/819/head -> origin/gh/anijain2305/819/head 2025-07-17T06:36:44.1735971Z * [new branch] gh/anijain2305/819/orig -> origin/gh/anijain2305/819/orig 2025-07-17T06:36:44.1736488Z * [new branch] gh/anijain2305/820/base -> origin/gh/anijain2305/820/base 2025-07-17T06:36:44.1736994Z * [new branch] gh/anijain2305/820/head -> origin/gh/anijain2305/820/head 2025-07-17T06:36:44.1737516Z * [new branch] gh/anijain2305/820/orig -> origin/gh/anijain2305/820/orig 2025-07-17T06:36:44.1738016Z * [new branch] gh/anjali411/216/base -> origin/gh/anjali411/216/base 2025-07-17T06:36:44.1738687Z * [new branch] gh/anjali411/216/head -> origin/gh/anjali411/216/head 2025-07-17T06:36:44.1739192Z * [new branch] gh/anjali411/216/orig -> origin/gh/anjali411/216/orig 2025-07-17T06:36:44.1739703Z * [new branch] gh/ankitageorge/10/base -> origin/gh/ankitageorge/10/base 2025-07-17T06:36:44.1740236Z * [new branch] gh/ankitageorge/10/head -> origin/gh/ankitageorge/10/head 2025-07-17T06:36:44.1740759Z * [new branch] gh/ankitageorge/10/orig -> origin/gh/ankitageorge/10/orig 2025-07-17T06:36:44.1741289Z * [new branch] gh/ankitageorge/11/base -> origin/gh/ankitageorge/11/base 2025-07-17T06:36:44.1741825Z * [new branch] gh/ankitageorge/11/head -> origin/gh/ankitageorge/11/head 2025-07-17T06:36:44.1742350Z * [new branch] gh/ankitageorge/11/orig -> origin/gh/ankitageorge/11/orig 2025-07-17T06:36:44.1742878Z * [new branch] gh/ankitageorge/12/base -> origin/gh/ankitageorge/12/base 2025-07-17T06:36:44.1743842Z * [new branch] gh/ankitageorge/12/head -> origin/gh/ankitageorge/12/head 2025-07-17T06:36:44.1744398Z * [new branch] gh/ankitageorge/12/orig -> origin/gh/ankitageorge/12/orig 2025-07-17T06:36:44.1744940Z * [new branch] gh/ankitageorge/5/base -> origin/gh/ankitageorge/5/base 2025-07-17T06:36:44.1745477Z * [new branch] gh/ankitageorge/5/head -> origin/gh/ankitageorge/5/head 2025-07-17T06:36:44.1746000Z * [new branch] gh/ankitageorge/5/orig -> origin/gh/ankitageorge/5/orig 2025-07-17T06:36:44.1746514Z * [new branch] gh/ankitageorge/7/base -> origin/gh/ankitageorge/7/base 2025-07-17T06:36:44.1747037Z * [new branch] gh/ankitageorge/7/head -> origin/gh/ankitageorge/7/head 2025-07-17T06:36:44.1747560Z * [new branch] gh/ankitageorge/7/orig -> origin/gh/ankitageorge/7/orig 2025-07-17T06:36:44.1748089Z * [new branch] gh/ankitageorge/8/base -> origin/gh/ankitageorge/8/base 2025-07-17T06:36:44.1748608Z * [new branch] gh/ankitageorge/8/head -> origin/gh/ankitageorge/8/head 2025-07-17T06:36:44.1749124Z * [new branch] gh/ankitageorge/8/orig -> origin/gh/ankitageorge/8/orig 2025-07-17T06:36:44.1749654Z * [new branch] gh/ankitageorge/9/base -> origin/gh/ankitageorge/9/base 2025-07-17T06:36:44.1750176Z * [new branch] gh/ankitageorge/9/head -> origin/gh/ankitageorge/9/head 2025-07-17T06:36:44.1750688Z * [new branch] gh/ankitageorge/9/orig -> origin/gh/ankitageorge/9/orig 2025-07-17T06:36:44.1751200Z * [new branch] gh/anshul-si/1/base -> origin/gh/anshul-si/1/base 2025-07-17T06:36:44.1751684Z * [new branch] gh/anshul-si/1/head -> origin/gh/anshul-si/1/head 2025-07-17T06:36:44.2285536Z * [new branch] gh/anshul-si/2/base -> origin/gh/anshul-si/2/base 2025-07-17T06:36:44.2286105Z * [new branch] gh/anshul-si/2/head -> origin/gh/anshul-si/2/head 2025-07-17T06:36:44.2286611Z * [new branch] gh/anshul-si/3/base -> origin/gh/anshul-si/3/base 2025-07-17T06:36:44.2287105Z * [new branch] gh/anshul-si/3/head -> origin/gh/anshul-si/3/head 2025-07-17T06:36:44.2287603Z * [new branch] gh/anshul-si/4/base -> origin/gh/anshul-si/4/base 2025-07-17T06:36:44.2288093Z * [new branch] gh/anshul-si/4/head -> origin/gh/anshul-si/4/head 2025-07-17T06:36:44.2288580Z * [new branch] gh/anshul-si/5/base -> origin/gh/anshul-si/5/base 2025-07-17T06:36:44.2289056Z * [new branch] gh/anshul-si/5/head -> origin/gh/anshul-si/5/head 2025-07-17T06:36:44.2289543Z * [new branch] gh/anshul-si/6/base -> origin/gh/anshul-si/6/base 2025-07-17T06:36:44.2290188Z * [new branch] gh/anshul-si/6/head -> origin/gh/anshul-si/6/head 2025-07-17T06:36:44.2290680Z * [new branch] gh/anshul-si/6/orig -> origin/gh/anshul-si/6/orig 2025-07-17T06:36:44.2291184Z * [new branch] gh/aorenste/132/base -> origin/gh/aorenste/132/base 2025-07-17T06:36:44.2291685Z * [new branch] gh/aorenste/132/head -> origin/gh/aorenste/132/head 2025-07-17T06:36:44.2292193Z * [new branch] gh/aorenste/231/base -> origin/gh/aorenste/231/base 2025-07-17T06:36:44.2292691Z * [new branch] gh/aorenste/231/head -> origin/gh/aorenste/231/head 2025-07-17T06:36:44.2293185Z * [new branch] gh/aorenste/231/orig -> origin/gh/aorenste/231/orig 2025-07-17T06:36:44.2293679Z * [new branch] gh/aorenste/232/base -> origin/gh/aorenste/232/base 2025-07-17T06:36:44.2294165Z * [new branch] gh/aorenste/232/head -> origin/gh/aorenste/232/head 2025-07-17T06:36:44.2295066Z * [new branch] gh/aorenste/232/orig -> origin/gh/aorenste/232/orig 2025-07-17T06:36:44.2295571Z * [new branch] gh/aorenste/234/base -> origin/gh/aorenste/234/base 2025-07-17T06:36:44.2296070Z * [new branch] gh/aorenste/234/head -> origin/gh/aorenste/234/head 2025-07-17T06:36:44.2296563Z * [new branch] gh/aorenste/234/orig -> origin/gh/aorenste/234/orig 2025-07-17T06:36:44.2297066Z * [new branch] gh/aorenste/235/base -> origin/gh/aorenste/235/base 2025-07-17T06:36:44.2297586Z * [new branch] gh/aorenste/235/head -> origin/gh/aorenste/235/head 2025-07-17T06:36:44.2298075Z * [new branch] gh/aorenste/235/orig -> origin/gh/aorenste/235/orig 2025-07-17T06:36:44.2298572Z * [new branch] gh/aorenste/236/base -> origin/gh/aorenste/236/base 2025-07-17T06:36:44.2299061Z * [new branch] gh/aorenste/236/head -> origin/gh/aorenste/236/head 2025-07-17T06:36:44.2299673Z * [new branch] gh/aorenste/236/orig -> origin/gh/aorenste/236/orig 2025-07-17T06:36:44.2300234Z * [new branch] gh/bdhirsh/647/base -> origin/gh/bdhirsh/647/base 2025-07-17T06:36:44.2300721Z * [new branch] gh/bdhirsh/647/head -> origin/gh/bdhirsh/647/head 2025-07-17T06:36:44.2301211Z * [new branch] gh/bdhirsh/647/orig -> origin/gh/bdhirsh/647/orig 2025-07-17T06:36:44.2301694Z * [new branch] gh/bdhirsh/650/base -> origin/gh/bdhirsh/650/base 2025-07-17T06:36:44.2302188Z * [new branch] gh/bdhirsh/650/head -> origin/gh/bdhirsh/650/head 2025-07-17T06:36:44.2302667Z * [new branch] gh/bdhirsh/650/orig -> origin/gh/bdhirsh/650/orig 2025-07-17T06:36:44.2303146Z * [new branch] gh/bdhirsh/651/base -> origin/gh/bdhirsh/651/base 2025-07-17T06:36:44.2303631Z * [new branch] gh/bdhirsh/651/head -> origin/gh/bdhirsh/651/head 2025-07-17T06:36:44.2304115Z * [new branch] gh/bdhirsh/651/orig -> origin/gh/bdhirsh/651/orig 2025-07-17T06:36:44.2304604Z * [new branch] gh/bdhirsh/652/base -> origin/gh/bdhirsh/652/base 2025-07-17T06:36:44.2305087Z * [new branch] gh/bdhirsh/652/head -> origin/gh/bdhirsh/652/head 2025-07-17T06:36:44.2305563Z * [new branch] gh/bdhirsh/652/orig -> origin/gh/bdhirsh/652/orig 2025-07-17T06:36:44.2306050Z * [new branch] gh/bdhirsh/655/base -> origin/gh/bdhirsh/655/base 2025-07-17T06:36:44.2306526Z * [new branch] gh/bdhirsh/655/head -> origin/gh/bdhirsh/655/head 2025-07-17T06:36:44.2307008Z * [new branch] gh/bdhirsh/655/orig -> origin/gh/bdhirsh/655/orig 2025-07-17T06:36:44.2307479Z * [new branch] gh/bdhirsh/656/base -> origin/gh/bdhirsh/656/base 2025-07-17T06:36:44.2308084Z * [new branch] gh/bdhirsh/656/head -> origin/gh/bdhirsh/656/head 2025-07-17T06:36:44.2308575Z * [new branch] gh/bdhirsh/657/base -> origin/gh/bdhirsh/657/base 2025-07-17T06:36:44.2309051Z * [new branch] gh/bdhirsh/657/head -> origin/gh/bdhirsh/657/head 2025-07-17T06:36:44.2837977Z * [new branch] gh/bdhirsh/659/base -> origin/gh/bdhirsh/659/base 2025-07-17T06:36:44.2838507Z * [new branch] gh/bdhirsh/659/head -> origin/gh/bdhirsh/659/head 2025-07-17T06:36:44.2839010Z * [new branch] gh/bdhirsh/659/orig -> origin/gh/bdhirsh/659/orig 2025-07-17T06:36:44.2839520Z * [new branch] gh/bdhirsh/663/base -> origin/gh/bdhirsh/663/base 2025-07-17T06:36:44.2840000Z * [new branch] gh/bdhirsh/663/head -> origin/gh/bdhirsh/663/head 2025-07-17T06:36:44.2840487Z * [new branch] gh/bdhirsh/663/orig -> origin/gh/bdhirsh/663/orig 2025-07-17T06:36:44.2841499Z * [new branch] gh/bdhirsh/665/base -> origin/gh/bdhirsh/665/base 2025-07-17T06:36:44.2842000Z * [new branch] gh/bdhirsh/665/head -> origin/gh/bdhirsh/665/head 2025-07-17T06:36:44.2842498Z * [new branch] gh/bdhirsh/665/orig -> origin/gh/bdhirsh/665/orig 2025-07-17T06:36:44.2842981Z * [new branch] gh/bdhirsh/666/base -> origin/gh/bdhirsh/666/base 2025-07-17T06:36:44.2843469Z * [new branch] gh/bdhirsh/666/head -> origin/gh/bdhirsh/666/head 2025-07-17T06:36:44.2843960Z * [new branch] gh/bdhirsh/666/orig -> origin/gh/bdhirsh/666/orig 2025-07-17T06:36:44.2844476Z * [new branch] gh/benjaminglass1/77/base -> origin/gh/benjaminglass1/77/base 2025-07-17T06:36:44.2845046Z * [new branch] gh/benjaminglass1/77/head -> origin/gh/benjaminglass1/77/head 2025-07-17T06:36:44.2845604Z * [new branch] gh/benjaminglass1/77/orig -> origin/gh/benjaminglass1/77/orig 2025-07-17T06:36:44.2846158Z * [new branch] gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-07-17T06:36:44.2846697Z * [new branch] gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-07-17T06:36:44.2847251Z * [new branch] gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig 2025-07-17T06:36:44.2847806Z * [new branch] gh/benjaminglass1/83/base -> origin/gh/benjaminglass1/83/base 2025-07-17T06:36:44.2848359Z * [new branch] gh/benjaminglass1/83/head -> origin/gh/benjaminglass1/83/head 2025-07-17T06:36:44.2848910Z * [new branch] gh/benjaminglass1/83/orig -> origin/gh/benjaminglass1/83/orig 2025-07-17T06:36:44.2849449Z * [new branch] gh/benjaminglass1/84/base -> origin/gh/benjaminglass1/84/base 2025-07-17T06:36:44.2850007Z * [new branch] gh/benjaminglass1/84/head -> origin/gh/benjaminglass1/84/head 2025-07-17T06:36:44.2850573Z * [new branch] gh/benjaminglass1/84/orig -> origin/gh/benjaminglass1/84/orig 2025-07-17T06:36:44.2851118Z * [new branch] gh/benjaminglass1/85/base -> origin/gh/benjaminglass1/85/base 2025-07-17T06:36:44.2851675Z * [new branch] gh/benjaminglass1/85/head -> origin/gh/benjaminglass1/85/head 2025-07-17T06:36:44.2852214Z * [new branch] gh/benjaminglass1/85/orig -> origin/gh/benjaminglass1/85/orig 2025-07-17T06:36:44.2852763Z * [new branch] gh/benjaminglass1/86/base -> origin/gh/benjaminglass1/86/base 2025-07-17T06:36:44.2853314Z * [new branch] gh/benjaminglass1/86/head -> origin/gh/benjaminglass1/86/head 2025-07-17T06:36:44.2853865Z * [new branch] gh/benjaminglass1/86/orig -> origin/gh/benjaminglass1/86/orig 2025-07-17T06:36:44.2854414Z * [new branch] gh/benjaminglass1/87/base -> origin/gh/benjaminglass1/87/base 2025-07-17T06:36:44.2855077Z * [new branch] gh/benjaminglass1/87/head -> origin/gh/benjaminglass1/87/head 2025-07-17T06:36:44.2855631Z * [new branch] gh/benjaminglass1/87/orig -> origin/gh/benjaminglass1/87/orig 2025-07-17T06:36:44.2856185Z * [new branch] gh/benjaminglass1/89/base -> origin/gh/benjaminglass1/89/base 2025-07-17T06:36:44.2856726Z * [new branch] gh/benjaminglass1/89/head -> origin/gh/benjaminglass1/89/head 2025-07-17T06:36:44.2857285Z * [new branch] gh/benjaminglass1/89/orig -> origin/gh/benjaminglass1/89/orig 2025-07-17T06:36:44.2857826Z * [new branch] gh/benjaminglass1/90/base -> origin/gh/benjaminglass1/90/base 2025-07-17T06:36:44.2858378Z * [new branch] gh/benjaminglass1/90/head -> origin/gh/benjaminglass1/90/head 2025-07-17T06:36:44.2858933Z * [new branch] gh/benjaminglass1/90/orig -> origin/gh/benjaminglass1/90/orig 2025-07-17T06:36:44.2859481Z * [new branch] gh/benjaminglass1/91/base -> origin/gh/benjaminglass1/91/base 2025-07-17T06:36:44.2860365Z * [new branch] gh/benjaminglass1/91/head -> origin/gh/benjaminglass1/91/head 2025-07-17T06:36:44.2860929Z * [new branch] gh/benjaminglass1/91/orig -> origin/gh/benjaminglass1/91/orig 2025-07-17T06:36:44.2861488Z * [new branch] gh/benjaminglass1/92/base -> origin/gh/benjaminglass1/92/base 2025-07-17T06:36:44.2862036Z * [new branch] gh/benjaminglass1/92/head -> origin/gh/benjaminglass1/92/head 2025-07-17T06:36:44.2862610Z * [new branch] gh/benjaminglass1/92/orig -> origin/gh/benjaminglass1/92/orig 2025-07-17T06:36:44.3365957Z * [new branch] gh/benjaminglass1/93/base -> origin/gh/benjaminglass1/93/base 2025-07-17T06:36:44.3366546Z * [new branch] gh/benjaminglass1/93/head -> origin/gh/benjaminglass1/93/head 2025-07-17T06:36:44.3367118Z * [new branch] gh/benjaminglass1/93/orig -> origin/gh/benjaminglass1/93/orig 2025-07-17T06:36:44.3367719Z * [new branch] gh/benjaminglass1/94/base -> origin/gh/benjaminglass1/94/base 2025-07-17T06:36:44.3368264Z * [new branch] gh/benjaminglass1/94/head -> origin/gh/benjaminglass1/94/head 2025-07-17T06:36:44.3368817Z * [new branch] gh/benjaminglass1/94/orig -> origin/gh/benjaminglass1/94/orig 2025-07-17T06:36:44.3369349Z * [new branch] gh/bobrenjc93/439/base -> origin/gh/bobrenjc93/439/base 2025-07-17T06:36:44.3369872Z * [new branch] gh/bobrenjc93/439/head -> origin/gh/bobrenjc93/439/head 2025-07-17T06:36:44.3370382Z * [new branch] gh/bobrenjc93/439/orig -> origin/gh/bobrenjc93/439/orig 2025-07-17T06:36:44.3370896Z * [new branch] gh/bobrenjc93/442/base -> origin/gh/bobrenjc93/442/base 2025-07-17T06:36:44.3371415Z * [new branch] gh/bobrenjc93/442/head -> origin/gh/bobrenjc93/442/head 2025-07-17T06:36:44.3371931Z * [new branch] gh/bobrenjc93/442/orig -> origin/gh/bobrenjc93/442/orig 2025-07-17T06:36:44.3372443Z * [new branch] gh/bobrenjc93/452/base -> origin/gh/bobrenjc93/452/base 2025-07-17T06:36:44.3372948Z * [new branch] gh/bobrenjc93/452/head -> origin/gh/bobrenjc93/452/head 2025-07-17T06:36:44.3373474Z * [new branch] gh/bobrenjc93/452/orig -> origin/gh/bobrenjc93/452/orig 2025-07-17T06:36:44.3373985Z * [new branch] gh/bobrenjc93/453/base -> origin/gh/bobrenjc93/453/base 2025-07-17T06:36:44.3374492Z * [new branch] gh/bobrenjc93/453/head -> origin/gh/bobrenjc93/453/head 2025-07-17T06:36:44.3375009Z * [new branch] gh/bobrenjc93/453/orig -> origin/gh/bobrenjc93/453/orig 2025-07-17T06:36:44.3375526Z * [new branch] gh/bobrenjc93/454/base -> origin/gh/bobrenjc93/454/base 2025-07-17T06:36:44.3376190Z * [new branch] gh/bobrenjc93/454/head -> origin/gh/bobrenjc93/454/head 2025-07-17T06:36:44.3376717Z * [new branch] gh/bobrenjc93/454/orig -> origin/gh/bobrenjc93/454/orig 2025-07-17T06:36:44.3377221Z * [new branch] gh/bobrenjc93/455/base -> origin/gh/bobrenjc93/455/base 2025-07-17T06:36:44.3377743Z * [new branch] gh/bobrenjc93/455/head -> origin/gh/bobrenjc93/455/head 2025-07-17T06:36:44.3378248Z * [new branch] gh/bobrenjc93/455/orig -> origin/gh/bobrenjc93/455/orig 2025-07-17T06:36:44.3378771Z * [new branch] gh/bobrenjc93/456/base -> origin/gh/bobrenjc93/456/base 2025-07-17T06:36:44.3379297Z * [new branch] gh/bobrenjc93/456/head -> origin/gh/bobrenjc93/456/head 2025-07-17T06:36:44.3379796Z * [new branch] gh/bobrenjc93/456/orig -> origin/gh/bobrenjc93/456/orig 2025-07-17T06:36:44.3380309Z * [new branch] gh/bobrenjc93/457/base -> origin/gh/bobrenjc93/457/base 2025-07-17T06:36:44.3381210Z * [new branch] gh/bobrenjc93/457/head -> origin/gh/bobrenjc93/457/head 2025-07-17T06:36:44.3381740Z * [new branch] gh/bobrenjc93/457/orig -> origin/gh/bobrenjc93/457/orig 2025-07-17T06:36:44.3382262Z * [new branch] gh/bobrenjc93/458/base -> origin/gh/bobrenjc93/458/base 2025-07-17T06:36:44.3382764Z * [new branch] gh/bobrenjc93/458/head -> origin/gh/bobrenjc93/458/head 2025-07-17T06:36:44.3383286Z * [new branch] gh/bobrenjc93/458/orig -> origin/gh/bobrenjc93/458/orig 2025-07-17T06:36:44.3383789Z * [new branch] gh/bobrenjc93/459/base -> origin/gh/bobrenjc93/459/base 2025-07-17T06:36:44.3384313Z * [new branch] gh/bobrenjc93/459/head -> origin/gh/bobrenjc93/459/head 2025-07-17T06:36:44.3384945Z * [new branch] gh/bobrenjc93/459/orig -> origin/gh/bobrenjc93/459/orig 2025-07-17T06:36:44.3385540Z * [new branch] gh/bobrenjc93/460/base -> origin/gh/bobrenjc93/460/base 2025-07-17T06:36:44.3386089Z * [new branch] gh/bobrenjc93/460/head -> origin/gh/bobrenjc93/460/head 2025-07-17T06:36:44.3386651Z * [new branch] gh/bobrenjc93/460/orig -> origin/gh/bobrenjc93/460/orig 2025-07-17T06:36:44.3387204Z * [new branch] gh/bobrenjc93/461/base -> origin/gh/bobrenjc93/461/base 2025-07-17T06:36:44.3387776Z * [new branch] gh/bobrenjc93/461/head -> origin/gh/bobrenjc93/461/head 2025-07-17T06:36:44.3388345Z * [new branch] gh/bobrenjc93/461/orig -> origin/gh/bobrenjc93/461/orig 2025-07-17T06:36:44.3388893Z * [new branch] gh/bobrenjc93/462/base -> origin/gh/bobrenjc93/462/base 2025-07-17T06:36:44.3389460Z * [new branch] gh/bobrenjc93/462/head -> origin/gh/bobrenjc93/462/head 2025-07-17T06:36:44.3390032Z * [new branch] gh/bobrenjc93/462/orig -> origin/gh/bobrenjc93/462/orig 2025-07-17T06:36:44.3800427Z * [new branch] gh/bobrenjc93/463/base -> origin/gh/bobrenjc93/463/base 2025-07-17T06:36:44.3801092Z * [new branch] gh/bobrenjc93/463/head -> origin/gh/bobrenjc93/463/head 2025-07-17T06:36:44.3801713Z * [new branch] gh/bobrenjc93/463/orig -> origin/gh/bobrenjc93/463/orig 2025-07-17T06:36:44.3802264Z * [new branch] gh/bobrenjc93/464/base -> origin/gh/bobrenjc93/464/base 2025-07-17T06:36:44.3802825Z * [new branch] gh/bobrenjc93/464/head -> origin/gh/bobrenjc93/464/head 2025-07-17T06:36:44.3803378Z * [new branch] gh/bobrenjc93/464/orig -> origin/gh/bobrenjc93/464/orig 2025-07-17T06:36:44.3803953Z * [new branch] gh/bobrenjc93/465/base -> origin/gh/bobrenjc93/465/base 2025-07-17T06:36:44.3804507Z * [new branch] gh/bobrenjc93/465/head -> origin/gh/bobrenjc93/465/head 2025-07-17T06:36:44.3805063Z * [new branch] gh/bobrenjc93/465/orig -> origin/gh/bobrenjc93/465/orig 2025-07-17T06:36:44.3805780Z * [new branch] gh/bobrenjc93/466/base -> origin/gh/bobrenjc93/466/base 2025-07-17T06:36:44.3806326Z * [new branch] gh/bobrenjc93/466/head -> origin/gh/bobrenjc93/466/head 2025-07-17T06:36:44.3806912Z * [new branch] gh/bobrenjc93/466/orig -> origin/gh/bobrenjc93/466/orig 2025-07-17T06:36:44.3807485Z * [new branch] gh/bobrenjc93/467/base -> origin/gh/bobrenjc93/467/base 2025-07-17T06:36:44.3808032Z * [new branch] gh/bobrenjc93/467/head -> origin/gh/bobrenjc93/467/head 2025-07-17T06:36:44.3808605Z * [new branch] gh/bobrenjc93/467/orig -> origin/gh/bobrenjc93/467/orig 2025-07-17T06:36:44.3809137Z * [new branch] gh/bobrenjc93/468/base -> origin/gh/bobrenjc93/468/base 2025-07-17T06:36:44.3809703Z * [new branch] gh/bobrenjc93/468/head -> origin/gh/bobrenjc93/468/head 2025-07-17T06:36:44.3810282Z * [new branch] gh/bobrenjc93/468/orig -> origin/gh/bobrenjc93/468/orig 2025-07-17T06:36:44.3811328Z * [new branch] gh/bobrenjc93/469/base -> origin/gh/bobrenjc93/469/base 2025-07-17T06:36:44.3811918Z * [new branch] gh/bobrenjc93/469/head -> origin/gh/bobrenjc93/469/head 2025-07-17T06:36:44.3812463Z * [new branch] gh/bobrenjc93/469/orig -> origin/gh/bobrenjc93/469/orig 2025-07-17T06:36:44.3813039Z * [new branch] gh/bobrenjc93/470/base -> origin/gh/bobrenjc93/470/base 2025-07-17T06:36:44.3813607Z * [new branch] gh/bobrenjc93/470/head -> origin/gh/bobrenjc93/470/head 2025-07-17T06:36:44.3814160Z * [new branch] gh/bobrenjc93/470/orig -> origin/gh/bobrenjc93/470/orig 2025-07-17T06:36:44.3814740Z * [new branch] gh/bobrenjc93/471/base -> origin/gh/bobrenjc93/471/base 2025-07-17T06:36:44.3815286Z * [new branch] gh/bobrenjc93/471/head -> origin/gh/bobrenjc93/471/head 2025-07-17T06:36:44.3815872Z * [new branch] gh/bobrenjc93/471/orig -> origin/gh/bobrenjc93/471/orig 2025-07-17T06:36:44.3816497Z * [new branch] gh/bobrenjc93/472/base -> origin/gh/bobrenjc93/472/base 2025-07-17T06:36:44.3817088Z * [new branch] gh/bobrenjc93/472/head -> origin/gh/bobrenjc93/472/head 2025-07-17T06:36:44.3817655Z * [new branch] gh/bobrenjc93/472/orig -> origin/gh/bobrenjc93/472/orig 2025-07-17T06:36:44.3818206Z * [new branch] gh/bobrenjc93/473/base -> origin/gh/bobrenjc93/473/base 2025-07-17T06:36:44.3818777Z * [new branch] gh/bobrenjc93/473/head -> origin/gh/bobrenjc93/473/head 2025-07-17T06:36:44.3819350Z * [new branch] gh/bobrenjc93/473/orig -> origin/gh/bobrenjc93/473/orig 2025-07-17T06:36:44.3819903Z * [new branch] gh/bobrenjc93/474/base -> origin/gh/bobrenjc93/474/base 2025-07-17T06:36:44.3820473Z * [new branch] gh/bobrenjc93/474/head -> origin/gh/bobrenjc93/474/head 2025-07-17T06:36:44.3821013Z * [new branch] gh/bobrenjc93/474/orig -> origin/gh/bobrenjc93/474/orig 2025-07-17T06:36:44.3821605Z * [new branch] gh/bobrenjc93/475/base -> origin/gh/bobrenjc93/475/base 2025-07-17T06:36:44.3822175Z * [new branch] gh/bobrenjc93/475/head -> origin/gh/bobrenjc93/475/head 2025-07-17T06:36:44.3822762Z * [new branch] gh/bobrenjc93/475/orig -> origin/gh/bobrenjc93/475/orig 2025-07-17T06:36:44.3823404Z * [new branch] gh/bobrenjc93/476/base -> origin/gh/bobrenjc93/476/base 2025-07-17T06:36:44.3823949Z * [new branch] gh/bobrenjc93/476/head -> origin/gh/bobrenjc93/476/head 2025-07-17T06:36:44.3824512Z * [new branch] gh/bobrenjc93/476/orig -> origin/gh/bobrenjc93/476/orig 2025-07-17T06:36:44.3825095Z * [new branch] gh/bobrenjc93/477/base -> origin/gh/bobrenjc93/477/base 2025-07-17T06:36:44.3826205Z * [new branch] gh/bobrenjc93/477/head -> origin/gh/bobrenjc93/477/head 2025-07-17T06:36:44.3826771Z * [new branch] gh/bobrenjc93/477/orig -> origin/gh/bobrenjc93/477/orig 2025-07-17T06:36:44.3827336Z * [new branch] gh/bobrenjc93/478/base -> origin/gh/bobrenjc93/478/base 2025-07-17T06:36:44.4222544Z * [new branch] gh/bobrenjc93/478/head -> origin/gh/bobrenjc93/478/head 2025-07-17T06:36:44.4223191Z * [new branch] gh/bobrenjc93/478/orig -> origin/gh/bobrenjc93/478/orig 2025-07-17T06:36:44.4223749Z * [new branch] gh/bobrenjc93/479/base -> origin/gh/bobrenjc93/479/base 2025-07-17T06:36:44.4224320Z * [new branch] gh/bobrenjc93/479/head -> origin/gh/bobrenjc93/479/head 2025-07-17T06:36:44.4224893Z * [new branch] gh/bobrenjc93/479/orig -> origin/gh/bobrenjc93/479/orig 2025-07-17T06:36:44.4225455Z * [new branch] gh/bobrenjc93/480/base -> origin/gh/bobrenjc93/480/base 2025-07-17T06:36:44.4226384Z * [new branch] gh/bobrenjc93/480/head -> origin/gh/bobrenjc93/480/head 2025-07-17T06:36:44.4226940Z * [new branch] gh/bobrenjc93/480/orig -> origin/gh/bobrenjc93/480/orig 2025-07-17T06:36:44.4227538Z * [new branch] gh/bobrenjc93/481/base -> origin/gh/bobrenjc93/481/base 2025-07-17T06:36:44.4228132Z * [new branch] gh/bobrenjc93/481/head -> origin/gh/bobrenjc93/481/head 2025-07-17T06:36:44.4228663Z * [new branch] gh/bobrenjc93/481/orig -> origin/gh/bobrenjc93/481/orig 2025-07-17T06:36:44.4229249Z * [new branch] gh/bobrenjc93/482/base -> origin/gh/bobrenjc93/482/base 2025-07-17T06:36:44.4229787Z * [new branch] gh/bobrenjc93/482/head -> origin/gh/bobrenjc93/482/head 2025-07-17T06:36:44.4230347Z * [new branch] gh/bobrenjc93/482/orig -> origin/gh/bobrenjc93/482/orig 2025-07-17T06:36:44.4230944Z * [new branch] gh/bobrenjc93/483/base -> origin/gh/bobrenjc93/483/base 2025-07-17T06:36:44.4231481Z * [new branch] gh/bobrenjc93/483/head -> origin/gh/bobrenjc93/483/head 2025-07-17T06:36:44.4232047Z * [new branch] gh/bobrenjc93/483/orig -> origin/gh/bobrenjc93/483/orig 2025-07-17T06:36:44.4232635Z * [new branch] gh/bobrenjc93/484/base -> origin/gh/bobrenjc93/484/base 2025-07-17T06:36:44.4233176Z * [new branch] gh/bobrenjc93/484/head -> origin/gh/bobrenjc93/484/head 2025-07-17T06:36:44.4233729Z * [new branch] gh/bobrenjc93/484/orig -> origin/gh/bobrenjc93/484/orig 2025-07-17T06:36:44.4234284Z * [new branch] gh/bobrenjc93/485/base -> origin/gh/bobrenjc93/485/base 2025-07-17T06:36:44.4234874Z * [new branch] gh/bobrenjc93/485/head -> origin/gh/bobrenjc93/485/head 2025-07-17T06:36:44.4235559Z * [new branch] gh/bobrenjc93/485/orig -> origin/gh/bobrenjc93/485/orig 2025-07-17T06:36:44.4236143Z * [new branch] gh/bobrenjc93/486/base -> origin/gh/bobrenjc93/486/base 2025-07-17T06:36:44.4236713Z * [new branch] gh/bobrenjc93/486/head -> origin/gh/bobrenjc93/486/head 2025-07-17T06:36:44.4237269Z * [new branch] gh/bobrenjc93/486/orig -> origin/gh/bobrenjc93/486/orig 2025-07-17T06:36:44.4237844Z * [new branch] gh/bobrenjc93/487/base -> origin/gh/bobrenjc93/487/base 2025-07-17T06:36:44.4238515Z * [new branch] gh/bobrenjc93/487/head -> origin/gh/bobrenjc93/487/head 2025-07-17T06:36:44.4239095Z * [new branch] gh/bobrenjc93/487/orig -> origin/gh/bobrenjc93/487/orig 2025-07-17T06:36:44.4239668Z * [new branch] gh/bobrenjc93/488/base -> origin/gh/bobrenjc93/488/base 2025-07-17T06:36:44.4240210Z * [new branch] gh/bobrenjc93/488/head -> origin/gh/bobrenjc93/488/head 2025-07-17T06:36:44.4240892Z * [new branch] gh/bobrenjc93/488/orig -> origin/gh/bobrenjc93/488/orig 2025-07-17T06:36:44.4241464Z * [new branch] gh/bobrenjc93/489/base -> origin/gh/bobrenjc93/489/base 2025-07-17T06:36:44.4242002Z * [new branch] gh/bobrenjc93/489/head -> origin/gh/bobrenjc93/489/head 2025-07-17T06:36:44.4242570Z * [new branch] gh/bobrenjc93/489/orig -> origin/gh/bobrenjc93/489/orig 2025-07-17T06:36:44.4252093Z * [new branch] gh/bobrenjc93/490/base -> origin/gh/bobrenjc93/490/base 2025-07-17T06:36:44.4252667Z * [new branch] gh/bobrenjc93/490/head -> origin/gh/bobrenjc93/490/head 2025-07-17T06:36:44.4253193Z * [new branch] gh/bobrenjc93/490/orig -> origin/gh/bobrenjc93/490/orig 2025-07-17T06:36:44.4253718Z * [new branch] gh/bobrenjc93/491/base -> origin/gh/bobrenjc93/491/base 2025-07-17T06:36:44.4254234Z * [new branch] gh/bobrenjc93/491/head -> origin/gh/bobrenjc93/491/head 2025-07-17T06:36:44.4254900Z * [new branch] gh/bobrenjc93/491/orig -> origin/gh/bobrenjc93/491/orig 2025-07-17T06:36:44.4255419Z * [new branch] gh/bobrenjc93/492/base -> origin/gh/bobrenjc93/492/base 2025-07-17T06:36:44.4255939Z * [new branch] gh/bobrenjc93/492/head -> origin/gh/bobrenjc93/492/head 2025-07-17T06:36:44.4256447Z * [new branch] gh/bobrenjc93/492/orig -> origin/gh/bobrenjc93/492/orig 2025-07-17T06:36:44.4256961Z * [new branch] gh/bobrenjc93/493/base -> origin/gh/bobrenjc93/493/base 2025-07-17T06:36:44.5581755Z * [new branch] gh/bobrenjc93/493/head -> origin/gh/bobrenjc93/493/head 2025-07-17T06:36:44.5582321Z * [new branch] gh/bobrenjc93/493/orig -> origin/gh/bobrenjc93/493/orig 2025-07-17T06:36:44.5582850Z * [new branch] gh/bobrenjc93/494/base -> origin/gh/bobrenjc93/494/base 2025-07-17T06:36:44.5583394Z * [new branch] gh/bobrenjc93/494/head -> origin/gh/bobrenjc93/494/head 2025-07-17T06:36:44.5583898Z * [new branch] gh/bobrenjc93/494/orig -> origin/gh/bobrenjc93/494/orig 2025-07-17T06:36:44.5584405Z * [new branch] gh/bobrenjc93/495/base -> origin/gh/bobrenjc93/495/base 2025-07-17T06:36:44.5584922Z * [new branch] gh/bobrenjc93/495/head -> origin/gh/bobrenjc93/495/head 2025-07-17T06:36:44.5585421Z * [new branch] gh/bobrenjc93/495/orig -> origin/gh/bobrenjc93/495/orig 2025-07-17T06:36:44.5585949Z * [new branch] gh/bobrenjc93/496/base -> origin/gh/bobrenjc93/496/base 2025-07-17T06:36:44.5586453Z * [new branch] gh/bobrenjc93/496/head -> origin/gh/bobrenjc93/496/head 2025-07-17T06:36:44.5586959Z * [new branch] gh/bobrenjc93/496/orig -> origin/gh/bobrenjc93/496/orig 2025-07-17T06:36:44.5587476Z * [new branch] gh/bobrenjc93/497/base -> origin/gh/bobrenjc93/497/base 2025-07-17T06:36:44.5587979Z * [new branch] gh/bobrenjc93/497/head -> origin/gh/bobrenjc93/497/head 2025-07-17T06:36:44.5588492Z * [new branch] gh/bobrenjc93/497/orig -> origin/gh/bobrenjc93/497/orig 2025-07-17T06:36:44.5588996Z * [new branch] gh/bobrenjc93/498/base -> origin/gh/bobrenjc93/498/base 2025-07-17T06:36:44.5589501Z * [new branch] gh/bobrenjc93/498/head -> origin/gh/bobrenjc93/498/head 2025-07-17T06:36:44.5590013Z * [new branch] gh/bobrenjc93/498/orig -> origin/gh/bobrenjc93/498/orig 2025-07-17T06:36:44.5590517Z * [new branch] gh/bobrenjc93/499/base -> origin/gh/bobrenjc93/499/base 2025-07-17T06:36:44.5591020Z * [new branch] gh/bobrenjc93/499/head -> origin/gh/bobrenjc93/499/head 2025-07-17T06:36:44.5591519Z * [new branch] gh/bobrenjc93/499/orig -> origin/gh/bobrenjc93/499/orig 2025-07-17T06:36:44.5592202Z * [new branch] gh/bobrenjc93/500/base -> origin/gh/bobrenjc93/500/base 2025-07-17T06:36:44.5592716Z * [new branch] gh/bobrenjc93/500/head -> origin/gh/bobrenjc93/500/head 2025-07-17T06:36:44.5593221Z * [new branch] gh/bobrenjc93/500/orig -> origin/gh/bobrenjc93/500/orig 2025-07-17T06:36:44.5593736Z * [new branch] gh/bobrenjc93/501/base -> origin/gh/bobrenjc93/501/base 2025-07-17T06:36:44.5594236Z * [new branch] gh/bobrenjc93/501/head -> origin/gh/bobrenjc93/501/head 2025-07-17T06:36:44.5594747Z * [new branch] gh/bobrenjc93/501/orig -> origin/gh/bobrenjc93/501/orig 2025-07-17T06:36:44.5595332Z * [new branch] gh/bobrenjc93/502/base -> origin/gh/bobrenjc93/502/base 2025-07-17T06:36:44.5595832Z * [new branch] gh/bobrenjc93/502/head -> origin/gh/bobrenjc93/502/head 2025-07-17T06:36:44.5596342Z * [new branch] gh/bobrenjc93/502/orig -> origin/gh/bobrenjc93/502/orig 2025-07-17T06:36:44.5597266Z * [new branch] gh/bobrenjc93/503/base -> origin/gh/bobrenjc93/503/base 2025-07-17T06:36:44.5597793Z * [new branch] gh/bobrenjc93/503/head -> origin/gh/bobrenjc93/503/head 2025-07-17T06:36:44.5598298Z * [new branch] gh/bobrenjc93/503/orig -> origin/gh/bobrenjc93/503/orig 2025-07-17T06:36:44.5598819Z * [new branch] gh/bobrenjc93/504/base -> origin/gh/bobrenjc93/504/base 2025-07-17T06:36:44.5599339Z * [new branch] gh/bobrenjc93/504/head -> origin/gh/bobrenjc93/504/head 2025-07-17T06:36:44.5599842Z * [new branch] gh/bobrenjc93/504/orig -> origin/gh/bobrenjc93/504/orig 2025-07-17T06:36:44.5600367Z * [new branch] gh/bobrenjc93/505/base -> origin/gh/bobrenjc93/505/base 2025-07-17T06:36:44.5600943Z * [new branch] gh/bobrenjc93/505/head -> origin/gh/bobrenjc93/505/head 2025-07-17T06:36:44.5601468Z * [new branch] gh/bobrenjc93/505/orig -> origin/gh/bobrenjc93/505/orig 2025-07-17T06:36:44.5601990Z * [new branch] gh/bobrenjc93/506/base -> origin/gh/bobrenjc93/506/base 2025-07-17T06:36:44.5602489Z * [new branch] gh/bobrenjc93/506/head -> origin/gh/bobrenjc93/506/head 2025-07-17T06:36:44.5603004Z * [new branch] gh/bobrenjc93/506/orig -> origin/gh/bobrenjc93/506/orig 2025-07-17T06:36:44.5603515Z * [new branch] gh/bobrenjc93/507/base -> origin/gh/bobrenjc93/507/base 2025-07-17T06:36:44.5604028Z * [new branch] gh/bobrenjc93/507/head -> origin/gh/bobrenjc93/507/head 2025-07-17T06:36:44.5604541Z * [new branch] gh/bobrenjc93/507/orig -> origin/gh/bobrenjc93/507/orig 2025-07-17T06:36:44.5605042Z * [new branch] gh/bobrenjc93/508/base -> origin/gh/bobrenjc93/508/base 2025-07-17T06:36:44.5605550Z * [new branch] gh/bobrenjc93/508/head -> origin/gh/bobrenjc93/508/head 2025-07-17T06:36:44.6154881Z * [new branch] gh/bobrenjc93/508/orig -> origin/gh/bobrenjc93/508/orig 2025-07-17T06:36:44.6155558Z * [new branch] gh/bobrenjc93/509/base -> origin/gh/bobrenjc93/509/base 2025-07-17T06:36:44.6156089Z * [new branch] gh/bobrenjc93/509/head -> origin/gh/bobrenjc93/509/head 2025-07-17T06:36:44.6156599Z * [new branch] gh/bobrenjc93/509/orig -> origin/gh/bobrenjc93/509/orig 2025-07-17T06:36:44.6157128Z * [new branch] gh/bobrenjc93/510/base -> origin/gh/bobrenjc93/510/base 2025-07-17T06:36:44.6157649Z * [new branch] gh/bobrenjc93/510/head -> origin/gh/bobrenjc93/510/head 2025-07-17T06:36:44.6158154Z * [new branch] gh/bobrenjc93/510/orig -> origin/gh/bobrenjc93/510/orig 2025-07-17T06:36:44.6158671Z * [new branch] gh/bobrenjc93/511/base -> origin/gh/bobrenjc93/511/base 2025-07-17T06:36:44.6159355Z * [new branch] gh/bobrenjc93/511/head -> origin/gh/bobrenjc93/511/head 2025-07-17T06:36:44.6159906Z * [new branch] gh/bobrenjc93/511/orig -> origin/gh/bobrenjc93/511/orig 2025-07-17T06:36:44.6160481Z * [new branch] gh/bobrenjc93/512/base -> origin/gh/bobrenjc93/512/base 2025-07-17T06:36:44.6160993Z * [new branch] gh/bobrenjc93/512/head -> origin/gh/bobrenjc93/512/head 2025-07-17T06:36:44.6161501Z * [new branch] gh/bobrenjc93/512/orig -> origin/gh/bobrenjc93/512/orig 2025-07-17T06:36:44.6162000Z * [new branch] gh/bobrenjc93/513/base -> origin/gh/bobrenjc93/513/base 2025-07-17T06:36:44.6162512Z * [new branch] gh/bobrenjc93/513/head -> origin/gh/bobrenjc93/513/head 2025-07-17T06:36:44.6163014Z * [new branch] gh/bobrenjc93/513/orig -> origin/gh/bobrenjc93/513/orig 2025-07-17T06:36:44.6163532Z * [new branch] gh/bobrenjc93/514/base -> origin/gh/bobrenjc93/514/base 2025-07-17T06:36:44.6164142Z * [new branch] gh/bobrenjc93/514/head -> origin/gh/bobrenjc93/514/head 2025-07-17T06:36:44.6164651Z * [new branch] gh/bobrenjc93/514/orig -> origin/gh/bobrenjc93/514/orig 2025-07-17T06:36:44.6165170Z * [new branch] gh/bobrenjc93/515/base -> origin/gh/bobrenjc93/515/base 2025-07-17T06:36:44.6165671Z * [new branch] gh/bobrenjc93/515/head -> origin/gh/bobrenjc93/515/head 2025-07-17T06:36:44.6166233Z * [new branch] gh/bobrenjc93/515/orig -> origin/gh/bobrenjc93/515/orig 2025-07-17T06:36:44.6166794Z * [new branch] gh/bobrenjc93/516/base -> origin/gh/bobrenjc93/516/base 2025-07-17T06:36:44.6167300Z * [new branch] gh/bobrenjc93/516/head -> origin/gh/bobrenjc93/516/head 2025-07-17T06:36:44.6167810Z * [new branch] gh/bobrenjc93/516/orig -> origin/gh/bobrenjc93/516/orig 2025-07-17T06:36:44.6168321Z * [new branch] gh/bobrenjc93/517/base -> origin/gh/bobrenjc93/517/base 2025-07-17T06:36:44.6168835Z * [new branch] gh/bobrenjc93/517/head -> origin/gh/bobrenjc93/517/head 2025-07-17T06:36:44.6169347Z * [new branch] gh/bobrenjc93/517/orig -> origin/gh/bobrenjc93/517/orig 2025-07-17T06:36:44.6169852Z * [new branch] gh/bobrenjc93/518/base -> origin/gh/bobrenjc93/518/base 2025-07-17T06:36:44.6170366Z * [new branch] gh/bobrenjc93/518/head -> origin/gh/bobrenjc93/518/head 2025-07-17T06:36:44.6170871Z * [new branch] gh/bobrenjc93/518/orig -> origin/gh/bobrenjc93/518/orig 2025-07-17T06:36:44.6171375Z * [new branch] gh/bobrenjc93/519/base -> origin/gh/bobrenjc93/519/base 2025-07-17T06:36:44.6171927Z * [new branch] gh/bobrenjc93/519/head -> origin/gh/bobrenjc93/519/head 2025-07-17T06:36:44.6172479Z * [new branch] gh/bobrenjc93/519/orig -> origin/gh/bobrenjc93/519/orig 2025-07-17T06:36:44.6173094Z * [new branch] gh/bobrenjc93/520/base -> origin/gh/bobrenjc93/520/base 2025-07-17T06:36:44.6173648Z * [new branch] gh/bobrenjc93/520/head -> origin/gh/bobrenjc93/520/head 2025-07-17T06:36:44.6174262Z * [new branch] gh/bobrenjc93/520/orig -> origin/gh/bobrenjc93/520/orig 2025-07-17T06:36:44.6174808Z * [new branch] gh/bobrenjc93/521/base -> origin/gh/bobrenjc93/521/base 2025-07-17T06:36:44.6175364Z * [new branch] gh/bobrenjc93/521/head -> origin/gh/bobrenjc93/521/head 2025-07-17T06:36:44.6175965Z * [new branch] gh/bobrenjc93/521/orig -> origin/gh/bobrenjc93/521/orig 2025-07-17T06:36:44.6176517Z * [new branch] gh/bobrenjc93/522/base -> origin/gh/bobrenjc93/522/base 2025-07-17T06:36:44.6177125Z * [new branch] gh/bobrenjc93/522/head -> origin/gh/bobrenjc93/522/head 2025-07-17T06:36:44.6177821Z * [new branch] gh/bobrenjc93/522/orig -> origin/gh/bobrenjc93/522/orig 2025-07-17T06:36:44.6178389Z * [new branch] gh/bobrenjc93/523/base -> origin/gh/bobrenjc93/523/base 2025-07-17T06:36:44.6178990Z * [new branch] gh/bobrenjc93/523/head -> origin/gh/bobrenjc93/523/head 2025-07-17T06:36:44.6603072Z * [new branch] gh/bobrenjc93/523/orig -> origin/gh/bobrenjc93/523/orig 2025-07-17T06:36:44.6603683Z * [new branch] gh/bobrenjc93/524/base -> origin/gh/bobrenjc93/524/base 2025-07-17T06:36:44.6604253Z * [new branch] gh/bobrenjc93/524/head -> origin/gh/bobrenjc93/524/head 2025-07-17T06:36:44.6604789Z * [new branch] gh/bobrenjc93/524/orig -> origin/gh/bobrenjc93/524/orig 2025-07-17T06:36:44.6605308Z * [new branch] gh/bobrenjc93/525/base -> origin/gh/bobrenjc93/525/base 2025-07-17T06:36:44.6605807Z * [new branch] gh/bobrenjc93/525/head -> origin/gh/bobrenjc93/525/head 2025-07-17T06:36:44.6606488Z * [new branch] gh/bobrenjc93/525/orig -> origin/gh/bobrenjc93/525/orig 2025-07-17T06:36:44.6607014Z * [new branch] gh/bobrenjc93/526/base -> origin/gh/bobrenjc93/526/base 2025-07-17T06:36:44.6607513Z * [new branch] gh/bobrenjc93/526/head -> origin/gh/bobrenjc93/526/head 2025-07-17T06:36:44.6608037Z * [new branch] gh/bobrenjc93/526/orig -> origin/gh/bobrenjc93/526/orig 2025-07-17T06:36:44.6608537Z * [new branch] gh/bobrenjc93/527/base -> origin/gh/bobrenjc93/527/base 2025-07-17T06:36:44.6609053Z * [new branch] gh/bobrenjc93/527/head -> origin/gh/bobrenjc93/527/head 2025-07-17T06:36:44.6609562Z * [new branch] gh/bobrenjc93/527/orig -> origin/gh/bobrenjc93/527/orig 2025-07-17T06:36:44.6610063Z * [new branch] gh/bobrenjc93/528/base -> origin/gh/bobrenjc93/528/base 2025-07-17T06:36:44.6610577Z * [new branch] gh/bobrenjc93/528/head -> origin/gh/bobrenjc93/528/head 2025-07-17T06:36:44.6611077Z * [new branch] gh/bobrenjc93/528/orig -> origin/gh/bobrenjc93/528/orig 2025-07-17T06:36:44.6611593Z * [new branch] gh/bobrenjc93/529/base -> origin/gh/bobrenjc93/529/base 2025-07-17T06:36:44.6612102Z * [new branch] gh/bobrenjc93/529/head -> origin/gh/bobrenjc93/529/head 2025-07-17T06:36:44.6612603Z * [new branch] gh/bobrenjc93/529/orig -> origin/gh/bobrenjc93/529/orig 2025-07-17T06:36:44.6613116Z * [new branch] gh/bobrenjc93/530/base -> origin/gh/bobrenjc93/530/base 2025-07-17T06:36:44.6613614Z * [new branch] gh/bobrenjc93/530/head -> origin/gh/bobrenjc93/530/head 2025-07-17T06:36:44.6614125Z * [new branch] gh/bobrenjc93/530/orig -> origin/gh/bobrenjc93/530/orig 2025-07-17T06:36:44.6614625Z * [new branch] gh/bobrenjc93/531/base -> origin/gh/bobrenjc93/531/base 2025-07-17T06:36:44.6615150Z * [new branch] gh/bobrenjc93/531/head -> origin/gh/bobrenjc93/531/head 2025-07-17T06:36:44.6615657Z * [new branch] gh/bobrenjc93/531/orig -> origin/gh/bobrenjc93/531/orig 2025-07-17T06:36:44.6616160Z * [new branch] gh/bobrenjc93/532/base -> origin/gh/bobrenjc93/532/base 2025-07-17T06:36:44.6616666Z * [new branch] gh/bobrenjc93/532/head -> origin/gh/bobrenjc93/532/head 2025-07-17T06:36:44.6617169Z * [new branch] gh/bobrenjc93/532/orig -> origin/gh/bobrenjc93/532/orig 2025-07-17T06:36:44.6617678Z * [new branch] gh/bobrenjc93/533/base -> origin/gh/bobrenjc93/533/base 2025-07-17T06:36:44.6618189Z * [new branch] gh/bobrenjc93/533/head -> origin/gh/bobrenjc93/533/head 2025-07-17T06:36:44.6618694Z * [new branch] gh/bobrenjc93/533/orig -> origin/gh/bobrenjc93/533/orig 2025-07-17T06:36:44.6619317Z * [new branch] gh/bobrenjc93/534/base -> origin/gh/bobrenjc93/534/base 2025-07-17T06:36:44.6619934Z * [new branch] gh/bobrenjc93/534/head -> origin/gh/bobrenjc93/534/head 2025-07-17T06:36:44.6620509Z * [new branch] gh/bobrenjc93/534/orig -> origin/gh/bobrenjc93/534/orig 2025-07-17T06:36:44.6621021Z * [new branch] gh/bobrenjc93/535/base -> origin/gh/bobrenjc93/535/base 2025-07-17T06:36:44.6621528Z * [new branch] gh/bobrenjc93/535/head -> origin/gh/bobrenjc93/535/head 2025-07-17T06:36:44.6622034Z * [new branch] gh/bobrenjc93/535/orig -> origin/gh/bobrenjc93/535/orig 2025-07-17T06:36:44.6622531Z * [new branch] gh/bobrenjc93/536/base -> origin/gh/bobrenjc93/536/base 2025-07-17T06:36:44.6623038Z * [new branch] gh/bobrenjc93/536/head -> origin/gh/bobrenjc93/536/head 2025-07-17T06:36:44.6623544Z * [new branch] gh/bobrenjc93/536/orig -> origin/gh/bobrenjc93/536/orig 2025-07-17T06:36:44.6624163Z * [new branch] gh/briancoutinho/2/base -> origin/gh/briancoutinho/2/base 2025-07-17T06:36:44.6624716Z * [new branch] gh/briancoutinho/2/head -> origin/gh/briancoutinho/2/head 2025-07-17T06:36:44.6625211Z * [new branch] gh/c00w/23/base -> origin/gh/c00w/23/base 2025-07-17T06:36:44.6625674Z * [new branch] gh/c00w/23/head -> origin/gh/c00w/23/head 2025-07-17T06:36:44.6626124Z * [new branch] gh/c00w/38/base -> origin/gh/c00w/38/base 2025-07-17T06:36:44.6626562Z * [new branch] gh/c00w/38/head -> origin/gh/c00w/38/head 2025-07-17T06:36:44.7194873Z * [new branch] gh/c00w/38/orig -> origin/gh/c00w/38/orig 2025-07-17T06:36:44.7195410Z * [new branch] gh/c00w/48/base -> origin/gh/c00w/48/base 2025-07-17T06:36:44.7195888Z * [new branch] gh/c00w/48/head -> origin/gh/c00w/48/head 2025-07-17T06:36:44.7196386Z * [new branch] gh/c00w/48/orig -> origin/gh/c00w/48/orig 2025-07-17T06:36:44.7196823Z * [new branch] gh/c00w/49/base -> origin/gh/c00w/49/base 2025-07-17T06:36:44.7197267Z * [new branch] gh/c00w/49/head -> origin/gh/c00w/49/head 2025-07-17T06:36:44.7197703Z * [new branch] gh/c00w/49/orig -> origin/gh/c00w/49/orig 2025-07-17T06:36:44.7198142Z * [new branch] gh/c00w/50/base -> origin/gh/c00w/50/base 2025-07-17T06:36:44.7198581Z * [new branch] gh/c00w/50/head -> origin/gh/c00w/50/head 2025-07-17T06:36:44.7199016Z * [new branch] gh/c00w/50/orig -> origin/gh/c00w/50/orig 2025-07-17T06:36:44.7199471Z * [new branch] gh/c00w/51/base -> origin/gh/c00w/51/base 2025-07-17T06:36:44.7199910Z * [new branch] gh/c00w/51/head -> origin/gh/c00w/51/head 2025-07-17T06:36:44.7200376Z * [new branch] gh/c00w/51/orig -> origin/gh/c00w/51/orig 2025-07-17T06:36:44.7200840Z * [new branch] gh/clee2000/1/base -> origin/gh/clee2000/1/base 2025-07-17T06:36:44.7201316Z * [new branch] gh/clee2000/1/head -> origin/gh/clee2000/1/head 2025-07-17T06:36:44.7201800Z * [new branch] gh/clee2000/1/orig -> origin/gh/clee2000/1/orig 2025-07-17T06:36:44.7202265Z * [new branch] gh/clee2000/2/base -> origin/gh/clee2000/2/base 2025-07-17T06:36:44.7202733Z * [new branch] gh/clee2000/2/head -> origin/gh/clee2000/2/head 2025-07-17T06:36:44.7203256Z * [new branch] gh/clee2000/2/orig -> origin/gh/clee2000/2/orig 2025-07-17T06:36:44.7203793Z * [new branch] gh/clee2000/3/base -> origin/gh/clee2000/3/base 2025-07-17T06:36:44.7204328Z * [new branch] gh/clee2000/3/head -> origin/gh/clee2000/3/head 2025-07-17T06:36:44.7204975Z * [new branch] gh/clee2000/3/orig -> origin/gh/clee2000/3/orig 2025-07-17T06:36:44.7205486Z * [new branch] gh/coconutruben/1/base -> origin/gh/coconutruben/1/base 2025-07-17T06:36:44.7206022Z * [new branch] gh/coconutruben/1/head -> origin/gh/coconutruben/1/head 2025-07-17T06:36:44.7206588Z * [new branch] gh/coconutruben/10/base -> origin/gh/coconutruben/10/base 2025-07-17T06:36:44.7207116Z * [new branch] gh/coconutruben/10/head -> origin/gh/coconutruben/10/head 2025-07-17T06:36:44.7207657Z * [new branch] gh/coconutruben/10/orig -> origin/gh/coconutruben/10/orig 2025-07-17T06:36:44.7208190Z * [new branch] gh/coconutruben/11/base -> origin/gh/coconutruben/11/base 2025-07-17T06:36:44.7208711Z * [new branch] gh/coconutruben/11/head -> origin/gh/coconutruben/11/head 2025-07-17T06:36:44.7209246Z * [new branch] gh/coconutruben/11/orig -> origin/gh/coconutruben/11/orig 2025-07-17T06:36:44.7209863Z * [new branch] gh/coconutruben/12/base -> origin/gh/coconutruben/12/base 2025-07-17T06:36:44.7210395Z * [new branch] gh/coconutruben/12/head -> origin/gh/coconutruben/12/head 2025-07-17T06:36:44.7210935Z * [new branch] gh/coconutruben/12/orig -> origin/gh/coconutruben/12/orig 2025-07-17T06:36:44.7211464Z * [new branch] gh/coconutruben/13/base -> origin/gh/coconutruben/13/base 2025-07-17T06:36:44.7211997Z * [new branch] gh/coconutruben/13/head -> origin/gh/coconutruben/13/head 2025-07-17T06:36:44.7212534Z * [new branch] gh/coconutruben/13/orig -> origin/gh/coconutruben/13/orig 2025-07-17T06:36:44.7213071Z * [new branch] gh/coconutruben/14/base -> origin/gh/coconutruben/14/base 2025-07-17T06:36:44.7213598Z * [new branch] gh/coconutruben/14/head -> origin/gh/coconutruben/14/head 2025-07-17T06:36:44.7214129Z * [new branch] gh/coconutruben/14/orig -> origin/gh/coconutruben/14/orig 2025-07-17T06:36:44.7214665Z * [new branch] gh/coconutruben/15/base -> origin/gh/coconutruben/15/base 2025-07-17T06:36:44.7215193Z * [new branch] gh/coconutruben/15/head -> origin/gh/coconutruben/15/head 2025-07-17T06:36:44.7215722Z * [new branch] gh/coconutruben/15/orig -> origin/gh/coconutruben/15/orig 2025-07-17T06:36:44.7216261Z * [new branch] gh/coconutruben/16/base -> origin/gh/coconutruben/16/base 2025-07-17T06:36:44.7216782Z * [new branch] gh/coconutruben/16/head -> origin/gh/coconutruben/16/head 2025-07-17T06:36:44.7217315Z * [new branch] gh/coconutruben/16/orig -> origin/gh/coconutruben/16/orig 2025-07-17T06:36:44.7217838Z * [new branch] gh/coconutruben/17/base -> origin/gh/coconutruben/17/base 2025-07-17T06:36:44.7218373Z * [new branch] gh/coconutruben/17/head -> origin/gh/coconutruben/17/head 2025-07-17T06:36:44.7634942Z * [new branch] gh/coconutruben/17/orig -> origin/gh/coconutruben/17/orig 2025-07-17T06:36:44.7635537Z * [new branch] gh/coconutruben/18/base -> origin/gh/coconutruben/18/base 2025-07-17T06:36:44.7636101Z * [new branch] gh/coconutruben/18/head -> origin/gh/coconutruben/18/head 2025-07-17T06:36:44.7636629Z * [new branch] gh/coconutruben/18/orig -> origin/gh/coconutruben/18/orig 2025-07-17T06:36:44.7637163Z * [new branch] gh/coconutruben/19/base -> origin/gh/coconutruben/19/base 2025-07-17T06:36:44.7637695Z * [new branch] gh/coconutruben/19/head -> origin/gh/coconutruben/19/head 2025-07-17T06:36:44.7638225Z * [new branch] gh/coconutruben/19/orig -> origin/gh/coconutruben/19/orig 2025-07-17T06:36:44.7638815Z * [new branch] gh/coconutruben/2/base -> origin/gh/coconutruben/2/base 2025-07-17T06:36:44.7639557Z * [new branch] gh/coconutruben/2/head -> origin/gh/coconutruben/2/head 2025-07-17T06:36:44.7640088Z * [new branch] gh/coconutruben/2/orig -> origin/gh/coconutruben/2/orig 2025-07-17T06:36:44.7640624Z * [new branch] gh/coconutruben/20/base -> origin/gh/coconutruben/20/base 2025-07-17T06:36:44.7641152Z * [new branch] gh/coconutruben/20/head -> origin/gh/coconutruben/20/head 2025-07-17T06:36:44.7641692Z * [new branch] gh/coconutruben/20/orig -> origin/gh/coconutruben/20/orig 2025-07-17T06:36:44.7642216Z * [new branch] gh/coconutruben/21/base -> origin/gh/coconutruben/21/base 2025-07-17T06:36:44.7642751Z * [new branch] gh/coconutruben/21/head -> origin/gh/coconutruben/21/head 2025-07-17T06:36:44.7643290Z * [new branch] gh/coconutruben/21/orig -> origin/gh/coconutruben/21/orig 2025-07-17T06:36:44.7643812Z * [new branch] gh/coconutruben/22/base -> origin/gh/coconutruben/22/base 2025-07-17T06:36:44.7644480Z * [new branch] gh/coconutruben/22/head -> origin/gh/coconutruben/22/head 2025-07-17T06:36:44.7645055Z * [new branch] gh/coconutruben/22/orig -> origin/gh/coconutruben/22/orig 2025-07-17T06:36:44.7645591Z * [new branch] gh/coconutruben/23/base -> origin/gh/coconutruben/23/base 2025-07-17T06:36:44.7646131Z * [new branch] gh/coconutruben/23/head -> origin/gh/coconutruben/23/head 2025-07-17T06:36:44.7646658Z * [new branch] gh/coconutruben/23/orig -> origin/gh/coconutruben/23/orig 2025-07-17T06:36:44.7647184Z * [new branch] gh/coconutruben/24/base -> origin/gh/coconutruben/24/base 2025-07-17T06:36:44.7647703Z * [new branch] gh/coconutruben/24/head -> origin/gh/coconutruben/24/head 2025-07-17T06:36:44.7648233Z * [new branch] gh/coconutruben/24/orig -> origin/gh/coconutruben/24/orig 2025-07-17T06:36:44.7648775Z * [new branch] gh/coconutruben/3/base -> origin/gh/coconutruben/3/base 2025-07-17T06:36:44.7649296Z * [new branch] gh/coconutruben/3/head -> origin/gh/coconutruben/3/head 2025-07-17T06:36:44.7649820Z * [new branch] gh/coconutruben/3/orig -> origin/gh/coconutruben/3/orig 2025-07-17T06:36:44.7650337Z * [new branch] gh/coconutruben/4/base -> origin/gh/coconutruben/4/base 2025-07-17T06:36:44.7650859Z * [new branch] gh/coconutruben/4/head -> origin/gh/coconutruben/4/head 2025-07-17T06:36:44.7651370Z * [new branch] gh/coconutruben/4/orig -> origin/gh/coconutruben/4/orig 2025-07-17T06:36:44.7651888Z * [new branch] gh/coconutruben/5/base -> origin/gh/coconutruben/5/base 2025-07-17T06:36:44.7652407Z * [new branch] gh/coconutruben/5/head -> origin/gh/coconutruben/5/head 2025-07-17T06:36:44.7652928Z * [new branch] gh/coconutruben/5/orig -> origin/gh/coconutruben/5/orig 2025-07-17T06:36:44.7653453Z * [new branch] gh/coconutruben/6/base -> origin/gh/coconutruben/6/base 2025-07-17T06:36:44.7653964Z * [new branch] gh/coconutruben/6/head -> origin/gh/coconutruben/6/head 2025-07-17T06:36:44.7654483Z * [new branch] gh/coconutruben/6/orig -> origin/gh/coconutruben/6/orig 2025-07-17T06:36:44.7655017Z * [new branch] gh/coconutruben/7/base -> origin/gh/coconutruben/7/base 2025-07-17T06:36:44.7655587Z * [new branch] gh/coconutruben/7/head -> origin/gh/coconutruben/7/head 2025-07-17T06:36:44.7656163Z * [new branch] gh/coconutruben/7/orig -> origin/gh/coconutruben/7/orig 2025-07-17T06:36:44.7656679Z * [new branch] gh/coconutruben/8/base -> origin/gh/coconutruben/8/base 2025-07-17T06:36:44.7657203Z * [new branch] gh/coconutruben/8/head -> origin/gh/coconutruben/8/head 2025-07-17T06:36:44.7657829Z * [new branch] gh/coconutruben/8/orig -> origin/gh/coconutruben/8/orig 2025-07-17T06:36:44.7658348Z * [new branch] gh/coconutruben/9/base -> origin/gh/coconutruben/9/base 2025-07-17T06:36:44.7658880Z * [new branch] gh/coconutruben/9/head -> origin/gh/coconutruben/9/head 2025-07-17T06:36:45.1462011Z * [new branch] gh/coconutruben/9/orig -> origin/gh/coconutruben/9/orig 2025-07-17T06:36:45.1462640Z * [new branch] gh/codingwithsurya/1/base -> origin/gh/codingwithsurya/1/base 2025-07-17T06:36:45.1463211Z * [new branch] gh/codingwithsurya/1/head -> origin/gh/codingwithsurya/1/head 2025-07-17T06:36:45.1463780Z * [new branch] gh/codingwithsurya/1/orig -> origin/gh/codingwithsurya/1/orig 2025-07-17T06:36:45.1464347Z * [new branch] gh/codingwithsurya/10/base -> origin/gh/codingwithsurya/10/base 2025-07-17T06:36:45.1464953Z * [new branch] gh/codingwithsurya/10/head -> origin/gh/codingwithsurya/10/head 2025-07-17T06:36:45.1465717Z * [new branch] gh/codingwithsurya/10/orig -> origin/gh/codingwithsurya/10/orig 2025-07-17T06:36:45.1466313Z * [new branch] gh/codingwithsurya/11/base -> origin/gh/codingwithsurya/11/base 2025-07-17T06:36:45.1466883Z * [new branch] gh/codingwithsurya/11/head -> origin/gh/codingwithsurya/11/head 2025-07-17T06:36:45.1467464Z * [new branch] gh/codingwithsurya/11/orig -> origin/gh/codingwithsurya/11/orig 2025-07-17T06:36:45.1468025Z * [new branch] gh/codingwithsurya/12/base -> origin/gh/codingwithsurya/12/base 2025-07-17T06:36:45.1468593Z * [new branch] gh/codingwithsurya/12/head -> origin/gh/codingwithsurya/12/head 2025-07-17T06:36:45.1469158Z * [new branch] gh/codingwithsurya/12/orig -> origin/gh/codingwithsurya/12/orig 2025-07-17T06:36:45.1469730Z * [new branch] gh/codingwithsurya/2/base -> origin/gh/codingwithsurya/2/base 2025-07-17T06:36:45.1470309Z * [new branch] gh/codingwithsurya/2/head -> origin/gh/codingwithsurya/2/head 2025-07-17T06:36:45.1470870Z * [new branch] gh/codingwithsurya/2/orig -> origin/gh/codingwithsurya/2/orig 2025-07-17T06:36:45.1471430Z * [new branch] gh/codingwithsurya/3/base -> origin/gh/codingwithsurya/3/base 2025-07-17T06:36:45.1471998Z * [new branch] gh/codingwithsurya/3/head -> origin/gh/codingwithsurya/3/head 2025-07-17T06:36:45.1472552Z * [new branch] gh/codingwithsurya/3/orig -> origin/gh/codingwithsurya/3/orig 2025-07-17T06:36:45.1473112Z * [new branch] gh/codingwithsurya/4/base -> origin/gh/codingwithsurya/4/base 2025-07-17T06:36:45.1473667Z * [new branch] gh/codingwithsurya/4/head -> origin/gh/codingwithsurya/4/head 2025-07-17T06:36:45.1474230Z * [new branch] gh/codingwithsurya/4/orig -> origin/gh/codingwithsurya/4/orig 2025-07-17T06:36:45.1474798Z * [new branch] gh/codingwithsurya/5/base -> origin/gh/codingwithsurya/5/base 2025-07-17T06:36:45.1475437Z * [new branch] gh/codingwithsurya/5/head -> origin/gh/codingwithsurya/5/head 2025-07-17T06:36:45.1476007Z * [new branch] gh/codingwithsurya/5/orig -> origin/gh/codingwithsurya/5/orig 2025-07-17T06:36:45.1476571Z * [new branch] gh/codingwithsurya/6/base -> origin/gh/codingwithsurya/6/base 2025-07-17T06:36:45.1477146Z * [new branch] gh/codingwithsurya/6/head -> origin/gh/codingwithsurya/6/head 2025-07-17T06:36:45.1477714Z * [new branch] gh/codingwithsurya/6/orig -> origin/gh/codingwithsurya/6/orig 2025-07-17T06:36:45.1478271Z * [new branch] gh/codingwithsurya/7/base -> origin/gh/codingwithsurya/7/base 2025-07-17T06:36:45.1478839Z * [new branch] gh/codingwithsurya/7/head -> origin/gh/codingwithsurya/7/head 2025-07-17T06:36:45.1479539Z * [new branch] gh/codingwithsurya/7/orig -> origin/gh/codingwithsurya/7/orig 2025-07-17T06:36:45.1480109Z * [new branch] gh/codingwithsurya/8/base -> origin/gh/codingwithsurya/8/base 2025-07-17T06:36:45.1480662Z * [new branch] gh/codingwithsurya/8/head -> origin/gh/codingwithsurya/8/head 2025-07-17T06:36:45.1481237Z * [new branch] gh/codingwithsurya/8/orig -> origin/gh/codingwithsurya/8/orig 2025-07-17T06:36:45.1481800Z * [new branch] gh/codingwithsurya/9/base -> origin/gh/codingwithsurya/9/base 2025-07-17T06:36:45.1482351Z * [new branch] gh/codingwithsurya/9/head -> origin/gh/codingwithsurya/9/head 2025-07-17T06:36:45.1482918Z * [new branch] gh/codingwithsurya/9/orig -> origin/gh/codingwithsurya/9/orig 2025-07-17T06:36:45.1483466Z * [new branch] gh/davidberard98/347/base -> origin/gh/davidberard98/347/base 2025-07-17T06:36:45.1484016Z * [new branch] gh/davidberard98/347/head -> origin/gh/davidberard98/347/head 2025-07-17T06:36:45.1484667Z * [new branch] gh/davidberard98/347/orig -> origin/gh/davidberard98/347/orig 2025-07-17T06:36:45.1485214Z * [new branch] gh/davidberard98/351/base -> origin/gh/davidberard98/351/base 2025-07-17T06:36:45.1485768Z * [new branch] gh/davidberard98/351/head -> origin/gh/davidberard98/351/head 2025-07-17T06:36:45.1486312Z * [new branch] gh/davidberard98/351/orig -> origin/gh/davidberard98/351/orig 2025-07-17T06:36:45.1486859Z * [new branch] gh/davidberard98/353/base -> origin/gh/davidberard98/353/base 2025-07-17T06:36:45.2020031Z * [new branch] gh/davidberard98/353/head -> origin/gh/davidberard98/353/head 2025-07-17T06:36:45.2020727Z * [new branch] gh/davidberard98/353/orig -> origin/gh/davidberard98/353/orig 2025-07-17T06:36:45.2021285Z * [new branch] gh/davidberard98/356/base -> origin/gh/davidberard98/356/base 2025-07-17T06:36:45.2021876Z * [new branch] gh/davidberard98/356/head -> origin/gh/davidberard98/356/head 2025-07-17T06:36:45.2022422Z * [new branch] gh/davidberard98/356/orig -> origin/gh/davidberard98/356/orig 2025-07-17T06:36:45.2022964Z * [new branch] gh/davidberard98/370/base -> origin/gh/davidberard98/370/base 2025-07-17T06:36:45.2023504Z * [new branch] gh/davidberard98/370/head -> origin/gh/davidberard98/370/head 2025-07-17T06:36:45.2024094Z * [new branch] gh/davidberard98/370/orig -> origin/gh/davidberard98/370/orig 2025-07-17T06:36:45.2024682Z * [new branch] gh/davidberard98/375/base -> origin/gh/davidberard98/375/base 2025-07-17T06:36:45.2025224Z * [new branch] gh/davidberard98/375/head -> origin/gh/davidberard98/375/head 2025-07-17T06:36:45.2025766Z * [new branch] gh/davidberard98/375/orig -> origin/gh/davidberard98/375/orig 2025-07-17T06:36:45.2026313Z * [new branch] gh/davidberard98/378/base -> origin/gh/davidberard98/378/base 2025-07-17T06:36:45.2026860Z * [new branch] gh/davidberard98/378/head -> origin/gh/davidberard98/378/head 2025-07-17T06:36:45.2027403Z * [new branch] gh/davidberard98/378/orig -> origin/gh/davidberard98/378/orig 2025-07-17T06:36:45.2027943Z * [new branch] gh/davidberard98/379/base -> origin/gh/davidberard98/379/base 2025-07-17T06:36:45.2028504Z * [new branch] gh/davidberard98/379/head -> origin/gh/davidberard98/379/head 2025-07-17T06:36:45.2029038Z * [new branch] gh/davidberard98/379/orig -> origin/gh/davidberard98/379/orig 2025-07-17T06:36:45.2029585Z * [new branch] gh/davidberard98/380/base -> origin/gh/davidberard98/380/base 2025-07-17T06:36:45.2030170Z * [new branch] gh/davidberard98/380/head -> origin/gh/davidberard98/380/head 2025-07-17T06:36:45.2030936Z * [new branch] gh/davidberard98/380/orig -> origin/gh/davidberard98/380/orig 2025-07-17T06:36:45.2031493Z * [new branch] gh/davidberard98/381/base -> origin/gh/davidberard98/381/base 2025-07-17T06:36:45.2032036Z * [new branch] gh/davidberard98/381/head -> origin/gh/davidberard98/381/head 2025-07-17T06:36:45.2032581Z * [new branch] gh/davidberard98/381/orig -> origin/gh/davidberard98/381/orig 2025-07-17T06:36:45.2033116Z * [new branch] gh/davidberard98/382/base -> origin/gh/davidberard98/382/base 2025-07-17T06:36:45.2033677Z * [new branch] gh/davidberard98/382/head -> origin/gh/davidberard98/382/head 2025-07-17T06:36:45.2034229Z * [new branch] gh/davidberard98/382/orig -> origin/gh/davidberard98/382/orig 2025-07-17T06:36:45.2034762Z * [new branch] gh/davidberard98/383/base -> origin/gh/davidberard98/383/base 2025-07-17T06:36:45.2035384Z * [new branch] gh/davidberard98/383/head -> origin/gh/davidberard98/383/head 2025-07-17T06:36:45.2036128Z * [new branch] gh/davidberard98/383/orig -> origin/gh/davidberard98/383/orig 2025-07-17T06:36:45.2036689Z * [new branch] gh/davidberard98/384/base -> origin/gh/davidberard98/384/base 2025-07-17T06:36:45.2037230Z * [new branch] gh/davidberard98/384/head -> origin/gh/davidberard98/384/head 2025-07-17T06:36:45.2037778Z * [new branch] gh/davidberard98/384/orig -> origin/gh/davidberard98/384/orig 2025-07-17T06:36:45.2038332Z * [new branch] gh/davidberard98/385/base -> origin/gh/davidberard98/385/base 2025-07-17T06:36:45.2038872Z * [new branch] gh/davidberard98/385/head -> origin/gh/davidberard98/385/head 2025-07-17T06:36:45.2039418Z * [new branch] gh/davidberard98/385/orig -> origin/gh/davidberard98/385/orig 2025-07-17T06:36:45.2039958Z * [new branch] gh/davidberard98/386/base -> origin/gh/davidberard98/386/base 2025-07-17T06:36:45.2040507Z * [new branch] gh/davidberard98/386/head -> origin/gh/davidberard98/386/head 2025-07-17T06:36:45.2041061Z * [new branch] gh/davidberard98/386/orig -> origin/gh/davidberard98/386/orig 2025-07-17T06:36:45.2041644Z * [new branch] gh/davidberard98/387/base -> origin/gh/davidberard98/387/base 2025-07-17T06:36:45.2042237Z * [new branch] gh/davidberard98/387/head -> origin/gh/davidberard98/387/head 2025-07-17T06:36:45.2042781Z * [new branch] gh/davidberard98/387/orig -> origin/gh/davidberard98/387/orig 2025-07-17T06:36:45.2043325Z * [new branch] gh/davidberard98/388/base -> origin/gh/davidberard98/388/base 2025-07-17T06:36:45.2043868Z * [new branch] gh/davidberard98/388/head -> origin/gh/davidberard98/388/head 2025-07-17T06:36:45.2044406Z * [new branch] gh/davidberard98/388/orig -> origin/gh/davidberard98/388/orig 2025-07-17T06:36:45.2516035Z * [new branch] gh/davidberard98/389/base -> origin/gh/davidberard98/389/base 2025-07-17T06:36:45.2516685Z * [new branch] gh/davidberard98/389/head -> origin/gh/davidberard98/389/head 2025-07-17T06:36:45.2517245Z * [new branch] gh/davidberard98/389/orig -> origin/gh/davidberard98/389/orig 2025-07-17T06:36:45.2517797Z * [new branch] gh/davidberard98/390/base -> origin/gh/davidberard98/390/base 2025-07-17T06:36:45.2518345Z * [new branch] gh/davidberard98/390/head -> origin/gh/davidberard98/390/head 2025-07-17T06:36:45.2518896Z * [new branch] gh/davidberard98/390/orig -> origin/gh/davidberard98/390/orig 2025-07-17T06:36:45.2519438Z * [new branch] gh/desertfire/559/base -> origin/gh/desertfire/559/base 2025-07-17T06:36:45.2519955Z * [new branch] gh/desertfire/559/head -> origin/gh/desertfire/559/head 2025-07-17T06:36:45.2520476Z * [new branch] gh/desertfire/559/orig -> origin/gh/desertfire/559/orig 2025-07-17T06:36:45.2521166Z * [new branch] gh/desertfire/570/base -> origin/gh/desertfire/570/base 2025-07-17T06:36:45.2521691Z * [new branch] gh/desertfire/570/head -> origin/gh/desertfire/570/head 2025-07-17T06:36:45.2522427Z * [new branch] gh/desertfire/570/orig -> origin/gh/desertfire/570/orig 2025-07-17T06:36:45.2522942Z * [new branch] gh/desertfire/572/base -> origin/gh/desertfire/572/base 2025-07-17T06:36:45.2523470Z * [new branch] gh/desertfire/572/head -> origin/gh/desertfire/572/head 2025-07-17T06:36:45.2523991Z * [new branch] gh/desertfire/572/orig -> origin/gh/desertfire/572/orig 2025-07-17T06:36:45.2524518Z * [new branch] gh/desertfire/585/base -> origin/gh/desertfire/585/base 2025-07-17T06:36:45.2525036Z * [new branch] gh/desertfire/585/head -> origin/gh/desertfire/585/head 2025-07-17T06:36:45.2525558Z * [new branch] gh/desertfire/585/orig -> origin/gh/desertfire/585/orig 2025-07-17T06:36:45.2526170Z * [new branch] gh/desertfire/586/base -> origin/gh/desertfire/586/base 2025-07-17T06:36:45.2526694Z * [new branch] gh/desertfire/586/head -> origin/gh/desertfire/586/head 2025-07-17T06:36:45.2527212Z * [new branch] gh/desertfire/586/orig -> origin/gh/desertfire/586/orig 2025-07-17T06:36:45.2527790Z * [new branch] gh/desertfire/587/base -> origin/gh/desertfire/587/base 2025-07-17T06:36:45.2528352Z * [new branch] gh/desertfire/587/head -> origin/gh/desertfire/587/head 2025-07-17T06:36:45.2528874Z * [new branch] gh/desertfire/587/orig -> origin/gh/desertfire/587/orig 2025-07-17T06:36:45.2529389Z * [new branch] gh/desertfire/588/base -> origin/gh/desertfire/588/base 2025-07-17T06:36:45.2529909Z * [new branch] gh/desertfire/588/head -> origin/gh/desertfire/588/head 2025-07-17T06:36:45.2530438Z * [new branch] gh/desertfire/588/orig -> origin/gh/desertfire/588/orig 2025-07-17T06:36:45.2530934Z * [new branch] gh/dharakk/1/base -> origin/gh/dharakk/1/base 2025-07-17T06:36:45.2531437Z * [new branch] gh/dharakk/1/head -> origin/gh/dharakk/1/head 2025-07-17T06:36:45.2531911Z * [new branch] gh/dharakk/4/base -> origin/gh/dharakk/4/base 2025-07-17T06:36:45.2532403Z * [new branch] gh/dharakk/4/head -> origin/gh/dharakk/4/head 2025-07-17T06:36:45.2532865Z * [new branch] gh/dharakk/4/orig -> origin/gh/dharakk/4/orig 2025-07-17T06:36:45.2533398Z * [new branch] gh/drisspg/136/base -> origin/gh/drisspg/136/base 2025-07-17T06:36:45.2533933Z * [new branch] gh/drisspg/136/head -> origin/gh/drisspg/136/head 2025-07-17T06:36:45.2534428Z * [new branch] gh/drisspg/136/orig -> origin/gh/drisspg/136/orig 2025-07-17T06:36:45.2534927Z * [new branch] gh/drisspg/140/base -> origin/gh/drisspg/140/base 2025-07-17T06:36:45.2535411Z * [new branch] gh/drisspg/140/head -> origin/gh/drisspg/140/head 2025-07-17T06:36:45.2535895Z * [new branch] gh/drisspg/140/orig -> origin/gh/drisspg/140/orig 2025-07-17T06:36:45.2536371Z * [new branch] gh/drisspg/149/base -> origin/gh/drisspg/149/base 2025-07-17T06:36:45.2536854Z * [new branch] gh/drisspg/149/head -> origin/gh/drisspg/149/head 2025-07-17T06:36:45.2537330Z * [new branch] gh/drisspg/149/orig -> origin/gh/drisspg/149/orig 2025-07-17T06:36:45.2537816Z * [new branch] gh/drisspg/150/base -> origin/gh/drisspg/150/base 2025-07-17T06:36:45.2538299Z * [new branch] gh/drisspg/150/head -> origin/gh/drisspg/150/head 2025-07-17T06:36:45.2538883Z * [new branch] gh/drisspg/150/orig -> origin/gh/drisspg/150/orig 2025-07-17T06:36:45.2539433Z * [new branch] gh/drisspg/151/base -> origin/gh/drisspg/151/base 2025-07-17T06:36:45.2539966Z * [new branch] gh/drisspg/151/head -> origin/gh/drisspg/151/head 2025-07-17T06:36:45.3001032Z * [new branch] gh/drisspg/151/orig -> origin/gh/drisspg/151/orig 2025-07-17T06:36:45.3001595Z * [new branch] gh/drisspg/154/base -> origin/gh/drisspg/154/base 2025-07-17T06:36:45.3002089Z * [new branch] gh/drisspg/154/head -> origin/gh/drisspg/154/head 2025-07-17T06:36:45.3002581Z * [new branch] gh/drisspg/154/orig -> origin/gh/drisspg/154/orig 2025-07-17T06:36:45.3003060Z * [new branch] gh/drisspg/155/base -> origin/gh/drisspg/155/base 2025-07-17T06:36:45.3003554Z * [new branch] gh/drisspg/155/head -> origin/gh/drisspg/155/head 2025-07-17T06:36:45.3004053Z * [new branch] gh/drisspg/155/orig -> origin/gh/drisspg/155/orig 2025-07-17T06:36:45.3004788Z * [new branch] gh/drisspg/156/base -> origin/gh/drisspg/156/base 2025-07-17T06:36:45.3005290Z * [new branch] gh/drisspg/156/head -> origin/gh/drisspg/156/head 2025-07-17T06:36:45.3005766Z * [new branch] gh/drisspg/156/orig -> origin/gh/drisspg/156/orig 2025-07-17T06:36:45.3006257Z * [new branch] gh/drisspg/157/base -> origin/gh/drisspg/157/base 2025-07-17T06:36:45.3006747Z * [new branch] gh/drisspg/157/head -> origin/gh/drisspg/157/head 2025-07-17T06:36:45.3007229Z * [new branch] gh/drisspg/157/orig -> origin/gh/drisspg/157/orig 2025-07-17T06:36:45.3007723Z * [new branch] gh/drisspg/158/base -> origin/gh/drisspg/158/base 2025-07-17T06:36:45.3008208Z * [new branch] gh/drisspg/158/head -> origin/gh/drisspg/158/head 2025-07-17T06:36:45.3008702Z * [new branch] gh/drisspg/158/orig -> origin/gh/drisspg/158/orig 2025-07-17T06:36:45.3009186Z * [new branch] gh/drisspg/159/base -> origin/gh/drisspg/159/base 2025-07-17T06:36:45.3009669Z * [new branch] gh/drisspg/159/head -> origin/gh/drisspg/159/head 2025-07-17T06:36:45.3010204Z * [new branch] gh/drisspg/159/orig -> origin/gh/drisspg/159/orig 2025-07-17T06:36:45.3010746Z * [new branch] gh/drisspg/160/base -> origin/gh/drisspg/160/base 2025-07-17T06:36:45.3011236Z * [new branch] gh/drisspg/160/head -> origin/gh/drisspg/160/head 2025-07-17T06:36:45.3011723Z * [new branch] gh/drisspg/160/orig -> origin/gh/drisspg/160/orig 2025-07-17T06:36:45.3012196Z * [new branch] gh/drisspg/161/base -> origin/gh/drisspg/161/base 2025-07-17T06:36:45.3012695Z * [new branch] gh/drisspg/161/head -> origin/gh/drisspg/161/head 2025-07-17T06:36:45.3013191Z * [new branch] gh/drisspg/161/orig -> origin/gh/drisspg/161/orig 2025-07-17T06:36:45.3013679Z * [new branch] gh/drisspg/162/base -> origin/gh/drisspg/162/base 2025-07-17T06:36:45.3014168Z * [new branch] gh/drisspg/162/head -> origin/gh/drisspg/162/head 2025-07-17T06:36:45.3014646Z * [new branch] gh/drisspg/162/orig -> origin/gh/drisspg/162/orig 2025-07-17T06:36:45.3015128Z * [new branch] gh/drisspg/163/base -> origin/gh/drisspg/163/base 2025-07-17T06:36:45.3015606Z * [new branch] gh/drisspg/163/head -> origin/gh/drisspg/163/head 2025-07-17T06:36:45.3016171Z * [new branch] gh/drisspg/163/orig -> origin/gh/drisspg/163/orig 2025-07-17T06:36:45.3016679Z * [new branch] gh/drisspg/164/base -> origin/gh/drisspg/164/base 2025-07-17T06:36:45.3017265Z * [new branch] gh/drisspg/164/head -> origin/gh/drisspg/164/head 2025-07-17T06:36:45.3017764Z * [new branch] gh/drisspg/164/orig -> origin/gh/drisspg/164/orig 2025-07-17T06:36:45.3018248Z * [new branch] gh/drisspg/165/base -> origin/gh/drisspg/165/base 2025-07-17T06:36:45.3018734Z * [new branch] gh/drisspg/165/head -> origin/gh/drisspg/165/head 2025-07-17T06:36:45.3019221Z * [new branch] gh/drisspg/165/orig -> origin/gh/drisspg/165/orig 2025-07-17T06:36:45.3019721Z * [new branch] gh/drisspg/166/base -> origin/gh/drisspg/166/base 2025-07-17T06:36:45.3020212Z * [new branch] gh/drisspg/166/head -> origin/gh/drisspg/166/head 2025-07-17T06:36:45.3020688Z * [new branch] gh/drisspg/166/orig -> origin/gh/drisspg/166/orig 2025-07-17T06:36:45.3021180Z * [new branch] gh/drisspg/167/base -> origin/gh/drisspg/167/base 2025-07-17T06:36:45.3021721Z * [new branch] gh/drisspg/167/head -> origin/gh/drisspg/167/head 2025-07-17T06:36:45.3022346Z * [new branch] gh/drisspg/167/orig -> origin/gh/drisspg/167/orig 2025-07-17T06:36:45.3022834Z * [new branch] gh/drisspg/168/base -> origin/gh/drisspg/168/base 2025-07-17T06:36:45.3023321Z * [new branch] gh/drisspg/168/head -> origin/gh/drisspg/168/head 2025-07-17T06:36:45.3023811Z * [new branch] gh/drisspg/168/orig -> origin/gh/drisspg/168/orig 2025-07-17T06:36:45.3024291Z * [new branch] gh/drisspg/169/base -> origin/gh/drisspg/169/base 2025-07-17T06:36:45.3584791Z * [new branch] gh/drisspg/169/head -> origin/gh/drisspg/169/head 2025-07-17T06:36:45.3585347Z * [new branch] gh/drisspg/169/orig -> origin/gh/drisspg/169/orig 2025-07-17T06:36:45.3585844Z * [new branch] gh/drisspg/170/base -> origin/gh/drisspg/170/base 2025-07-17T06:36:45.3586373Z * [new branch] gh/drisspg/170/head -> origin/gh/drisspg/170/head 2025-07-17T06:36:45.3586914Z * [new branch] gh/drisspg/170/orig -> origin/gh/drisspg/170/orig 2025-07-17T06:36:45.3587455Z * [new branch] gh/drisspg/171/base -> origin/gh/drisspg/171/base 2025-07-17T06:36:45.3587940Z * [new branch] gh/drisspg/171/head -> origin/gh/drisspg/171/head 2025-07-17T06:36:45.3588422Z * [new branch] gh/drisspg/171/orig -> origin/gh/drisspg/171/orig 2025-07-17T06:36:45.3588910Z * [new branch] gh/dsjohns2/1/base -> origin/gh/dsjohns2/1/base 2025-07-17T06:36:45.3589389Z * [new branch] gh/dsjohns2/1/head -> origin/gh/dsjohns2/1/head 2025-07-17T06:36:45.3589888Z * [new branch] gh/eellison/779/base -> origin/gh/eellison/779/base 2025-07-17T06:36:45.3590390Z * [new branch] gh/eellison/779/head -> origin/gh/eellison/779/head 2025-07-17T06:36:45.3590894Z * [new branch] gh/eellison/779/orig -> origin/gh/eellison/779/orig 2025-07-17T06:36:45.3591392Z * [new branch] gh/eellison/781/base -> origin/gh/eellison/781/base 2025-07-17T06:36:45.3591881Z * [new branch] gh/eellison/781/head -> origin/gh/eellison/781/head 2025-07-17T06:36:45.3592383Z * [new branch] gh/eellison/781/orig -> origin/gh/eellison/781/orig 2025-07-17T06:36:45.3592924Z * [new branch] gh/eellison/784/base -> origin/gh/eellison/784/base 2025-07-17T06:36:45.3593465Z * [new branch] gh/eellison/784/head -> origin/gh/eellison/784/head 2025-07-17T06:36:45.3593962Z * [new branch] gh/eellison/784/orig -> origin/gh/eellison/784/orig 2025-07-17T06:36:45.3594450Z * [new branch] gh/eellison/785/base -> origin/gh/eellison/785/base 2025-07-17T06:36:45.3595197Z * [new branch] gh/eellison/785/head -> origin/gh/eellison/785/head 2025-07-17T06:36:45.3595706Z * [new branch] gh/eellison/785/orig -> origin/gh/eellison/785/orig 2025-07-17T06:36:45.3596193Z * [new branch] gh/eellison/789/base -> origin/gh/eellison/789/base 2025-07-17T06:36:45.3596685Z * [new branch] gh/eellison/789/head -> origin/gh/eellison/789/head 2025-07-17T06:36:45.3597186Z * [new branch] gh/eellison/789/orig -> origin/gh/eellison/789/orig 2025-07-17T06:36:45.3597697Z * [new branch] gh/eellison/800/base -> origin/gh/eellison/800/base 2025-07-17T06:36:45.3598195Z * [new branch] gh/eellison/800/head -> origin/gh/eellison/800/head 2025-07-17T06:36:45.3598737Z * [new branch] gh/eellison/800/orig -> origin/gh/eellison/800/orig 2025-07-17T06:36:45.3599285Z * [new branch] gh/eellison/801/base -> origin/gh/eellison/801/base 2025-07-17T06:36:45.3599880Z * [new branch] gh/eellison/801/head -> origin/gh/eellison/801/head 2025-07-17T06:36:45.3600379Z * [new branch] gh/eellison/801/orig -> origin/gh/eellison/801/orig 2025-07-17T06:36:45.3600875Z * [new branch] gh/eellison/802/base -> origin/gh/eellison/802/base 2025-07-17T06:36:45.3601378Z * [new branch] gh/eellison/802/head -> origin/gh/eellison/802/head 2025-07-17T06:36:45.3601890Z * [new branch] gh/eellison/802/orig -> origin/gh/eellison/802/orig 2025-07-17T06:36:45.3602380Z * [new branch] gh/eellison/805/base -> origin/gh/eellison/805/base 2025-07-17T06:36:45.3602872Z * [new branch] gh/eellison/805/head -> origin/gh/eellison/805/head 2025-07-17T06:36:45.3603363Z * [new branch] gh/eellison/805/orig -> origin/gh/eellison/805/orig 2025-07-17T06:36:45.3603861Z * [new branch] gh/eellison/808/base -> origin/gh/eellison/808/base 2025-07-17T06:36:45.3604411Z * [new branch] gh/eellison/808/head -> origin/gh/eellison/808/head 2025-07-17T06:36:45.3604952Z * [new branch] gh/eellison/808/orig -> origin/gh/eellison/808/orig 2025-07-17T06:36:45.3605430Z * [new branch] gh/etaf/117/base -> origin/gh/etaf/117/base 2025-07-17T06:36:45.3605884Z * [new branch] gh/etaf/117/head -> origin/gh/etaf/117/head 2025-07-17T06:36:45.3606341Z * [new branch] gh/etaf/117/orig -> origin/gh/etaf/117/orig 2025-07-17T06:36:45.3606793Z * [new branch] gh/etaf/130/base -> origin/gh/etaf/130/base 2025-07-17T06:36:45.3607239Z * [new branch] gh/etaf/130/head -> origin/gh/etaf/130/head 2025-07-17T06:36:45.3607694Z * [new branch] gh/etaf/130/orig -> origin/gh/etaf/130/orig 2025-07-17T06:36:45.3608139Z * [new branch] gh/etaf/132/base -> origin/gh/etaf/132/base 2025-07-17T06:36:45.4165334Z * [new branch] gh/etaf/132/head -> origin/gh/etaf/132/head 2025-07-17T06:36:45.4166445Z * [new branch] gh/etaf/132/orig -> origin/gh/etaf/132/orig 2025-07-17T06:36:45.4167397Z * [new branch] gh/etaf/134/base -> origin/gh/etaf/134/base 2025-07-17T06:36:45.4168079Z * [new branch] gh/etaf/134/head -> origin/gh/etaf/134/head 2025-07-17T06:36:45.4168783Z * [new branch] gh/etaf/134/orig -> origin/gh/etaf/134/orig 2025-07-17T06:36:45.4169425Z * [new branch] gh/etaf/137/base -> origin/gh/etaf/137/base 2025-07-17T06:36:45.4169912Z * [new branch] gh/etaf/137/head -> origin/gh/etaf/137/head 2025-07-17T06:36:45.4170572Z * [new branch] gh/etaf/137/orig -> origin/gh/etaf/137/orig 2025-07-17T06:36:45.4171174Z * [new branch] gh/etaf/138/base -> origin/gh/etaf/138/base 2025-07-17T06:36:45.4172110Z * [new branch] gh/etaf/138/head -> origin/gh/etaf/138/head 2025-07-17T06:36:45.4172732Z * [new branch] gh/etaf/138/orig -> origin/gh/etaf/138/orig 2025-07-17T06:36:45.4173379Z * [new branch] gh/etaf/139/base -> origin/gh/etaf/139/base 2025-07-17T06:36:45.4174116Z * [new branch] gh/etaf/139/head -> origin/gh/etaf/139/head 2025-07-17T06:36:45.4174847Z * [new branch] gh/etaf/139/orig -> origin/gh/etaf/139/orig 2025-07-17T06:36:45.4175365Z * [new branch] gh/etaf/140/base -> origin/gh/etaf/140/base 2025-07-17T06:36:45.4176000Z * [new branch] gh/etaf/140/head -> origin/gh/etaf/140/head 2025-07-17T06:36:45.4176668Z * [new branch] gh/etaf/140/orig -> origin/gh/etaf/140/orig 2025-07-17T06:36:45.4177311Z * [new branch] gh/etaf/141/base -> origin/gh/etaf/141/base 2025-07-17T06:36:45.4178085Z * [new branch] gh/etaf/141/head -> origin/gh/etaf/141/head 2025-07-17T06:36:45.4178782Z * [new branch] gh/etaf/141/orig -> origin/gh/etaf/141/orig 2025-07-17T06:36:45.4179492Z * [new branch] gh/etaf/142/base -> origin/gh/etaf/142/base 2025-07-17T06:36:45.4180087Z * [new branch] gh/etaf/142/head -> origin/gh/etaf/142/head 2025-07-17T06:36:45.4180757Z * [new branch] gh/etaf/143/base -> origin/gh/etaf/143/base 2025-07-17T06:36:45.4181422Z * [new branch] gh/etaf/143/head -> origin/gh/etaf/143/head 2025-07-17T06:36:45.4182012Z * [new branch] gh/etaf/143/orig -> origin/gh/etaf/143/orig 2025-07-17T06:36:45.4182643Z * [new branch] gh/etaf/144/base -> origin/gh/etaf/144/base 2025-07-17T06:36:45.4183308Z * [new branch] gh/etaf/144/head -> origin/gh/etaf/144/head 2025-07-17T06:36:45.4183945Z * [new branch] gh/etaf/144/orig -> origin/gh/etaf/144/orig 2025-07-17T06:36:45.4184600Z * [new branch] gh/etaf/145/base -> origin/gh/etaf/145/base 2025-07-17T06:36:45.4185229Z * [new branch] gh/etaf/145/head -> origin/gh/etaf/145/head 2025-07-17T06:36:45.4185930Z * [new branch] gh/etaf/146/base -> origin/gh/etaf/146/base 2025-07-17T06:36:45.4186520Z * [new branch] gh/etaf/146/head -> origin/gh/etaf/146/head 2025-07-17T06:36:45.4187220Z * [new branch] gh/ezyang/2374/base -> origin/gh/ezyang/2374/base 2025-07-17T06:36:45.4187741Z * [new branch] gh/ezyang/2374/head -> origin/gh/ezyang/2374/head 2025-07-17T06:36:45.4188417Z * [new branch] gh/ezyang/2374/orig -> origin/gh/ezyang/2374/orig 2025-07-17T06:36:45.4189181Z * [new branch] gh/ezyang/2973/base -> origin/gh/ezyang/2973/base 2025-07-17T06:36:45.4189896Z * [new branch] gh/ezyang/2973/head -> origin/gh/ezyang/2973/head 2025-07-17T06:36:45.4190545Z * [new branch] gh/ezyang/2973/orig -> origin/gh/ezyang/2973/orig 2025-07-17T06:36:45.4191253Z * [new branch] gh/ezyang/2974/base -> origin/gh/ezyang/2974/base 2025-07-17T06:36:45.4191917Z * [new branch] gh/ezyang/2974/head -> origin/gh/ezyang/2974/head 2025-07-17T06:36:45.4192551Z * [new branch] gh/ezyang/2974/orig -> origin/gh/ezyang/2974/orig 2025-07-17T06:36:45.4193066Z * [new branch] gh/ezyang/3068/base -> origin/gh/ezyang/3068/base 2025-07-17T06:36:45.4193731Z * [new branch] gh/ezyang/3068/head -> origin/gh/ezyang/3068/head 2025-07-17T06:36:45.4194391Z * [new branch] gh/ezyang/3068/orig -> origin/gh/ezyang/3068/orig 2025-07-17T06:36:45.4196467Z * [new branch] gh/ezyang/3071/base -> origin/gh/ezyang/3071/base 2025-07-17T06:36:45.4197156Z * [new branch] gh/ezyang/3071/head -> origin/gh/ezyang/3071/head 2025-07-17T06:36:45.4197874Z * [new branch] gh/ezyang/3071/orig -> origin/gh/ezyang/3071/orig 2025-07-17T06:36:45.4198544Z * [new branch] gh/ezyang/3072/base -> origin/gh/ezyang/3072/base 2025-07-17T06:36:45.4713539Z * [new branch] gh/ezyang/3072/head -> origin/gh/ezyang/3072/head 2025-07-17T06:36:45.4714075Z * [new branch] gh/ezyang/3072/orig -> origin/gh/ezyang/3072/orig 2025-07-17T06:36:45.4714571Z * [new branch] gh/ezyang/3074/base -> origin/gh/ezyang/3074/base 2025-07-17T06:36:45.4715099Z * [new branch] gh/ezyang/3074/head -> origin/gh/ezyang/3074/head 2025-07-17T06:36:45.4715604Z * [new branch] gh/ezyang/3074/orig -> origin/gh/ezyang/3074/orig 2025-07-17T06:36:45.4716259Z * [new branch] gh/ezyang/3078/base -> origin/gh/ezyang/3078/base 2025-07-17T06:36:45.4716739Z * [new branch] gh/ezyang/3078/head -> origin/gh/ezyang/3078/head 2025-07-17T06:36:45.4717264Z * [new branch] gh/ezyang/3078/orig -> origin/gh/ezyang/3078/orig 2025-07-17T06:36:45.4717767Z * [new branch] gh/ezyang/3079/base -> origin/gh/ezyang/3079/base 2025-07-17T06:36:45.4718255Z * [new branch] gh/ezyang/3079/head -> origin/gh/ezyang/3079/head 2025-07-17T06:36:45.4718727Z * [new branch] gh/ezyang/3079/orig -> origin/gh/ezyang/3079/orig 2025-07-17T06:36:45.4719202Z * [new branch] gh/ezyang/3080/base -> origin/gh/ezyang/3080/base 2025-07-17T06:36:45.4719683Z * [new branch] gh/ezyang/3080/head -> origin/gh/ezyang/3080/head 2025-07-17T06:36:45.4720151Z * [new branch] gh/ezyang/3080/orig -> origin/gh/ezyang/3080/orig 2025-07-17T06:36:45.4720640Z * [new branch] gh/ezyang/3081/base -> origin/gh/ezyang/3081/base 2025-07-17T06:36:45.4721108Z * [new branch] gh/ezyang/3081/head -> origin/gh/ezyang/3081/head 2025-07-17T06:36:45.4721588Z * [new branch] gh/ezyang/3081/orig -> origin/gh/ezyang/3081/orig 2025-07-17T06:36:45.4722065Z * [new branch] gh/ezyang/3082/base -> origin/gh/ezyang/3082/base 2025-07-17T06:36:45.4722536Z * [new branch] gh/ezyang/3082/head -> origin/gh/ezyang/3082/head 2025-07-17T06:36:45.4723049Z * [new branch] gh/ezyang/3082/orig -> origin/gh/ezyang/3082/orig 2025-07-17T06:36:45.4723569Z * [new branch] gh/ezyang/3083/base -> origin/gh/ezyang/3083/base 2025-07-17T06:36:45.4724055Z * [new branch] gh/ezyang/3083/head -> origin/gh/ezyang/3083/head 2025-07-17T06:36:45.4724537Z * [new branch] gh/ezyang/3083/orig -> origin/gh/ezyang/3083/orig 2025-07-17T06:36:45.4725011Z * [new branch] gh/ezyang/3084/base -> origin/gh/ezyang/3084/base 2025-07-17T06:36:45.4725499Z * [new branch] gh/ezyang/3084/head -> origin/gh/ezyang/3084/head 2025-07-17T06:36:45.4725973Z * [new branch] gh/ezyang/3084/orig -> origin/gh/ezyang/3084/orig 2025-07-17T06:36:45.4726457Z * [new branch] gh/ezyang/3085/base -> origin/gh/ezyang/3085/base 2025-07-17T06:36:45.4726934Z * [new branch] gh/ezyang/3085/head -> origin/gh/ezyang/3085/head 2025-07-17T06:36:45.4727410Z * [new branch] gh/ezyang/3085/orig -> origin/gh/ezyang/3085/orig 2025-07-17T06:36:45.4727887Z * [new branch] gh/ezyang/3086/base -> origin/gh/ezyang/3086/base 2025-07-17T06:36:45.4728357Z * [new branch] gh/ezyang/3086/head -> origin/gh/ezyang/3086/head 2025-07-17T06:36:45.4728974Z * [new branch] gh/ezyang/3086/orig -> origin/gh/ezyang/3086/orig 2025-07-17T06:36:45.4729528Z * [new branch] gh/ezyang/3087/base -> origin/gh/ezyang/3087/base 2025-07-17T06:36:45.4730068Z * [new branch] gh/ezyang/3087/head -> origin/gh/ezyang/3087/head 2025-07-17T06:36:45.4730582Z * [new branch] gh/ezyang/3087/orig -> origin/gh/ezyang/3087/orig 2025-07-17T06:36:45.4731136Z * [new branch] gh/ezyang/3088/base -> origin/gh/ezyang/3088/base 2025-07-17T06:36:45.4731668Z * [new branch] gh/ezyang/3088/head -> origin/gh/ezyang/3088/head 2025-07-17T06:36:45.4732177Z * [new branch] gh/ezyang/3088/orig -> origin/gh/ezyang/3088/orig 2025-07-17T06:36:45.4732737Z * [new branch] gh/ezyang/3089/base -> origin/gh/ezyang/3089/base 2025-07-17T06:36:45.4733258Z * [new branch] gh/ezyang/3089/head -> origin/gh/ezyang/3089/head 2025-07-17T06:36:45.4733895Z * [new branch] gh/ezyang/3089/orig -> origin/gh/ezyang/3089/orig 2025-07-17T06:36:45.4734418Z * [new branch] gh/ezyang/3090/base -> origin/gh/ezyang/3090/base 2025-07-17T06:36:45.4734966Z * [new branch] gh/ezyang/3090/head -> origin/gh/ezyang/3090/head 2025-07-17T06:36:45.4735449Z * [new branch] gh/ezyang/3090/orig -> origin/gh/ezyang/3090/orig 2025-07-17T06:36:45.4735925Z * [new branch] gh/ezyang/3091/base -> origin/gh/ezyang/3091/base 2025-07-17T06:36:45.4736393Z * [new branch] gh/ezyang/3091/head -> origin/gh/ezyang/3091/head 2025-07-17T06:36:45.4736880Z * [new branch] gh/ezyang/3091/orig -> origin/gh/ezyang/3091/orig 2025-07-17T06:36:45.5132305Z * [new branch] gh/ezyang/3092/base -> origin/gh/ezyang/3092/base 2025-07-17T06:36:45.5132853Z * [new branch] gh/ezyang/3092/head -> origin/gh/ezyang/3092/head 2025-07-17T06:36:45.5133372Z * [new branch] gh/ezyang/3092/orig -> origin/gh/ezyang/3092/orig 2025-07-17T06:36:45.5133909Z * [new branch] gh/ezyang/3093/base -> origin/gh/ezyang/3093/base 2025-07-17T06:36:45.5134441Z * [new branch] gh/ezyang/3093/head -> origin/gh/ezyang/3093/head 2025-07-17T06:36:45.5134930Z * [new branch] gh/ezyang/3093/orig -> origin/gh/ezyang/3093/orig 2025-07-17T06:36:45.5135419Z * [new branch] gh/ezyang/3094/base -> origin/gh/ezyang/3094/base 2025-07-17T06:36:45.5135890Z * [new branch] gh/ezyang/3094/head -> origin/gh/ezyang/3094/head 2025-07-17T06:36:45.5136382Z * [new branch] gh/ezyang/3094/orig -> origin/gh/ezyang/3094/orig 2025-07-17T06:36:45.5136884Z * [new branch] gh/ezyang/3095/base -> origin/gh/ezyang/3095/base 2025-07-17T06:36:45.5137362Z * [new branch] gh/ezyang/3095/head -> origin/gh/ezyang/3095/head 2025-07-17T06:36:45.5137844Z * [new branch] gh/ezyang/3095/orig -> origin/gh/ezyang/3095/orig 2025-07-17T06:36:45.5138317Z * [new branch] gh/ezyang/3096/base -> origin/gh/ezyang/3096/base 2025-07-17T06:36:45.5138796Z * [new branch] gh/ezyang/3096/head -> origin/gh/ezyang/3096/head 2025-07-17T06:36:45.5139265Z * [new branch] gh/ezyang/3096/orig -> origin/gh/ezyang/3096/orig 2025-07-17T06:36:45.5139794Z * [new branch] gh/ezyang/3097/base -> origin/gh/ezyang/3097/base 2025-07-17T06:36:45.5140323Z * [new branch] gh/ezyang/3097/head -> origin/gh/ezyang/3097/head 2025-07-17T06:36:45.5140795Z * [new branch] gh/ezyang/3097/orig -> origin/gh/ezyang/3097/orig 2025-07-17T06:36:45.5141276Z * [new branch] gh/ezyang/3098/base -> origin/gh/ezyang/3098/base 2025-07-17T06:36:45.5141903Z * [new branch] gh/ezyang/3098/head -> origin/gh/ezyang/3098/head 2025-07-17T06:36:45.5142392Z * [new branch] gh/ezyang/3098/orig -> origin/gh/ezyang/3098/orig 2025-07-17T06:36:45.5142878Z * [new branch] gh/ezyang/3099/base -> origin/gh/ezyang/3099/base 2025-07-17T06:36:45.5143363Z * [new branch] gh/ezyang/3099/head -> origin/gh/ezyang/3099/head 2025-07-17T06:36:45.5143842Z * [new branch] gh/ezyang/3099/orig -> origin/gh/ezyang/3099/orig 2025-07-17T06:36:45.5144320Z * [new branch] gh/ezyang/3100/base -> origin/gh/ezyang/3100/base 2025-07-17T06:36:45.5144799Z * [new branch] gh/ezyang/3100/head -> origin/gh/ezyang/3100/head 2025-07-17T06:36:45.5145338Z * [new branch] gh/ezyang/3100/orig -> origin/gh/ezyang/3100/orig 2025-07-17T06:36:45.5145861Z * [new branch] gh/ezyang/3101/base -> origin/gh/ezyang/3101/base 2025-07-17T06:36:45.5147017Z * [new branch] gh/ezyang/3101/head -> origin/gh/ezyang/3101/head 2025-07-17T06:36:45.5147516Z * [new branch] gh/ezyang/3101/orig -> origin/gh/ezyang/3101/orig 2025-07-17T06:36:45.5147997Z * [new branch] gh/ezyang/3102/base -> origin/gh/ezyang/3102/base 2025-07-17T06:36:45.5148477Z * [new branch] gh/ezyang/3102/head -> origin/gh/ezyang/3102/head 2025-07-17T06:36:45.5148956Z * [new branch] gh/ezyang/3102/orig -> origin/gh/ezyang/3102/orig 2025-07-17T06:36:45.5149432Z * [new branch] gh/ezyang/3103/base -> origin/gh/ezyang/3103/base 2025-07-17T06:36:45.5149899Z * [new branch] gh/ezyang/3103/head -> origin/gh/ezyang/3103/head 2025-07-17T06:36:45.5150379Z * [new branch] gh/ezyang/3103/orig -> origin/gh/ezyang/3103/orig 2025-07-17T06:36:45.5150859Z * [new branch] gh/ezyang/3104/base -> origin/gh/ezyang/3104/base 2025-07-17T06:36:45.5151408Z * [new branch] gh/ezyang/3104/head -> origin/gh/ezyang/3104/head 2025-07-17T06:36:45.5151934Z * [new branch] gh/ezyang/3104/orig -> origin/gh/ezyang/3104/orig 2025-07-17T06:36:45.5152408Z * [new branch] gh/ezyang/3105/base -> origin/gh/ezyang/3105/base 2025-07-17T06:36:45.5152889Z * [new branch] gh/ezyang/3105/head -> origin/gh/ezyang/3105/head 2025-07-17T06:36:45.5153360Z * [new branch] gh/ezyang/3105/orig -> origin/gh/ezyang/3105/orig 2025-07-17T06:36:45.5153846Z * [new branch] gh/ezyang/3106/base -> origin/gh/ezyang/3106/base 2025-07-17T06:36:45.5154335Z * [new branch] gh/ezyang/3106/head -> origin/gh/ezyang/3106/head 2025-07-17T06:36:45.5154812Z * [new branch] gh/ezyang/3106/orig -> origin/gh/ezyang/3106/orig 2025-07-17T06:36:45.5155375Z * [new branch] gh/ezyang/3107/base -> origin/gh/ezyang/3107/base 2025-07-17T06:36:45.5155858Z * [new branch] gh/ezyang/3107/head -> origin/gh/ezyang/3107/head 2025-07-17T06:36:45.5960081Z * [new branch] gh/ezyang/3107/orig -> origin/gh/ezyang/3107/orig 2025-07-17T06:36:45.5960619Z * [new branch] gh/ezyang/3108/base -> origin/gh/ezyang/3108/base 2025-07-17T06:36:45.5961119Z * [new branch] gh/ezyang/3108/head -> origin/gh/ezyang/3108/head 2025-07-17T06:36:45.5961599Z * [new branch] gh/ezyang/3108/orig -> origin/gh/ezyang/3108/orig 2025-07-17T06:36:45.5962108Z * [new branch] gh/fadara01/1/base -> origin/gh/fadara01/1/base 2025-07-17T06:36:45.5962589Z * [new branch] gh/fadara01/1/head -> origin/gh/fadara01/1/head 2025-07-17T06:36:45.5963070Z * [new branch] gh/fadara01/1/orig -> origin/gh/fadara01/1/orig 2025-07-17T06:36:45.5963720Z * [new branch] gh/fduwjj/146/base -> origin/gh/fduwjj/146/base 2025-07-17T06:36:45.5964226Z * [new branch] gh/fduwjj/146/head -> origin/gh/fduwjj/146/head 2025-07-17T06:36:45.5964694Z * [new branch] gh/fduwjj/146/orig -> origin/gh/fduwjj/146/orig 2025-07-17T06:36:45.5965181Z * [new branch] gh/fduwjj/150/base -> origin/gh/fduwjj/150/base 2025-07-17T06:36:45.5965659Z * [new branch] gh/fduwjj/150/head -> origin/gh/fduwjj/150/head 2025-07-17T06:36:45.5966125Z * [new branch] gh/fduwjj/150/orig -> origin/gh/fduwjj/150/orig 2025-07-17T06:36:45.5966598Z * [new branch] gh/fduwjj/151/base -> origin/gh/fduwjj/151/base 2025-07-17T06:36:45.5967064Z * [new branch] gh/fduwjj/151/head -> origin/gh/fduwjj/151/head 2025-07-17T06:36:45.5967539Z * [new branch] gh/fduwjj/151/orig -> origin/gh/fduwjj/151/orig 2025-07-17T06:36:45.5968105Z * [new branch] gh/fduwjj/152/base -> origin/gh/fduwjj/152/base 2025-07-17T06:36:45.5968584Z * [new branch] gh/fduwjj/152/head -> origin/gh/fduwjj/152/head 2025-07-17T06:36:45.5969070Z * [new branch] gh/fduwjj/152/orig -> origin/gh/fduwjj/152/orig 2025-07-17T06:36:45.5969540Z * [new branch] gh/fduwjj/153/base -> origin/gh/fduwjj/153/base 2025-07-17T06:36:45.5970022Z * [new branch] gh/fduwjj/153/head -> origin/gh/fduwjj/153/head 2025-07-17T06:36:45.5970507Z * [new branch] gh/fduwjj/153/orig -> origin/gh/fduwjj/153/orig 2025-07-17T06:36:45.5970976Z * [new branch] gh/fduwjj/154/base -> origin/gh/fduwjj/154/base 2025-07-17T06:36:45.5971464Z * [new branch] gh/fduwjj/154/head -> origin/gh/fduwjj/154/head 2025-07-17T06:36:45.5971931Z * [new branch] gh/fduwjj/154/orig -> origin/gh/fduwjj/154/orig 2025-07-17T06:36:45.5972422Z * [new branch] gh/fduwjj/155/base -> origin/gh/fduwjj/155/base 2025-07-17T06:36:45.5972894Z * [new branch] gh/fduwjj/155/head -> origin/gh/fduwjj/155/head 2025-07-17T06:36:45.5973367Z * [new branch] gh/fduwjj/155/orig -> origin/gh/fduwjj/155/orig 2025-07-17T06:36:45.5973847Z * [new branch] gh/fduwjj/156/base -> origin/gh/fduwjj/156/base 2025-07-17T06:36:45.5974315Z * [new branch] gh/fduwjj/156/head -> origin/gh/fduwjj/156/head 2025-07-17T06:36:45.5974790Z * [new branch] gh/fduwjj/156/orig -> origin/gh/fduwjj/156/orig 2025-07-17T06:36:45.5975251Z * [new branch] gh/fduwjj/157/base -> origin/gh/fduwjj/157/base 2025-07-17T06:36:45.5975727Z * [new branch] gh/fduwjj/157/head -> origin/gh/fduwjj/157/head 2025-07-17T06:36:45.5976209Z * [new branch] gh/fduwjj/157/orig -> origin/gh/fduwjj/157/orig 2025-07-17T06:36:45.5976682Z * [new branch] gh/fduwjj/158/base -> origin/gh/fduwjj/158/base 2025-07-17T06:36:45.5977157Z * [new branch] gh/fduwjj/158/head -> origin/gh/fduwjj/158/head 2025-07-17T06:36:45.5977620Z * [new branch] gh/fduwjj/158/orig -> origin/gh/fduwjj/158/orig 2025-07-17T06:36:45.5978101Z * [new branch] gh/fduwjj/159/base -> origin/gh/fduwjj/159/base 2025-07-17T06:36:45.5978570Z * [new branch] gh/fduwjj/159/head -> origin/gh/fduwjj/159/head 2025-07-17T06:36:45.5979042Z * [new branch] gh/fduwjj/159/orig -> origin/gh/fduwjj/159/orig 2025-07-17T06:36:45.5979514Z * [new branch] gh/fduwjj/160/base -> origin/gh/fduwjj/160/base 2025-07-17T06:36:45.5979979Z * [new branch] gh/fduwjj/160/head -> origin/gh/fduwjj/160/head 2025-07-17T06:36:45.5980539Z * [new branch] gh/fduwjj/160/orig -> origin/gh/fduwjj/160/orig 2025-07-17T06:36:45.5981041Z * [new branch] gh/fduwjj/161/base -> origin/gh/fduwjj/161/base 2025-07-17T06:36:45.5981507Z * [new branch] gh/fduwjj/161/head -> origin/gh/fduwjj/161/head 2025-07-17T06:36:45.5981988Z * [new branch] gh/fduwjj/161/orig -> origin/gh/fduwjj/161/orig 2025-07-17T06:36:45.5982459Z * [new branch] gh/fduwjj/162/base -> origin/gh/fduwjj/162/base 2025-07-17T06:36:45.5982936Z * [new branch] gh/fduwjj/162/head -> origin/gh/fduwjj/162/head 2025-07-17T06:36:45.6398923Z * [new branch] gh/fduwjj/162/orig -> origin/gh/fduwjj/162/orig 2025-07-17T06:36:45.6399476Z * [new branch] gh/fduwjj/163/base -> origin/gh/fduwjj/163/base 2025-07-17T06:36:45.6399963Z * [new branch] gh/fduwjj/163/head -> origin/gh/fduwjj/163/head 2025-07-17T06:36:45.6400520Z * [new branch] gh/fduwjj/163/orig -> origin/gh/fduwjj/163/orig 2025-07-17T06:36:45.6401200Z * [new branch] gh/fduwjj/164/base -> origin/gh/fduwjj/164/base 2025-07-17T06:36:45.6401693Z * [new branch] gh/fduwjj/164/head -> origin/gh/fduwjj/164/head 2025-07-17T06:36:45.6402158Z * [new branch] gh/fduwjj/164/orig -> origin/gh/fduwjj/164/orig 2025-07-17T06:36:45.6402643Z * [new branch] gh/fduwjj/165/base -> origin/gh/fduwjj/165/base 2025-07-17T06:36:45.6403111Z * [new branch] gh/fduwjj/165/head -> origin/gh/fduwjj/165/head 2025-07-17T06:36:45.6403598Z * [new branch] gh/fduwjj/165/orig -> origin/gh/fduwjj/165/orig 2025-07-17T06:36:45.6404073Z * [new branch] gh/fduwjj/166/base -> origin/gh/fduwjj/166/base 2025-07-17T06:36:45.6404544Z * [new branch] gh/fduwjj/166/head -> origin/gh/fduwjj/166/head 2025-07-17T06:36:45.6405021Z * [new branch] gh/fduwjj/166/orig -> origin/gh/fduwjj/166/orig 2025-07-17T06:36:45.6405494Z * [new branch] gh/fduwjj/167/base -> origin/gh/fduwjj/167/base 2025-07-17T06:36:45.6405974Z * [new branch] gh/fduwjj/167/head -> origin/gh/fduwjj/167/head 2025-07-17T06:36:45.6406505Z * [new branch] gh/fduwjj/167/orig -> origin/gh/fduwjj/167/orig 2025-07-17T06:36:45.6407040Z * [new branch] gh/fduwjj/168/base -> origin/gh/fduwjj/168/base 2025-07-17T06:36:45.6407517Z * [new branch] gh/fduwjj/168/head -> origin/gh/fduwjj/168/head 2025-07-17T06:36:45.6407986Z * [new branch] gh/fduwjj/168/orig -> origin/gh/fduwjj/168/orig 2025-07-17T06:36:45.6408465Z * [new branch] gh/fduwjj/169/base -> origin/gh/fduwjj/169/base 2025-07-17T06:36:45.6408938Z * [new branch] gh/fduwjj/169/head -> origin/gh/fduwjj/169/head 2025-07-17T06:36:45.6409429Z * [new branch] gh/fduwjj/169/orig -> origin/gh/fduwjj/169/orig 2025-07-17T06:36:45.6409900Z * [new branch] gh/fegin/306/base -> origin/gh/fegin/306/base 2025-07-17T06:36:45.6410363Z * [new branch] gh/fegin/306/head -> origin/gh/fegin/306/head 2025-07-17T06:36:45.6410839Z * [new branch] gh/fegin/306/orig -> origin/gh/fegin/306/orig 2025-07-17T06:36:45.6411299Z * [new branch] gh/fegin/307/base -> origin/gh/fegin/307/base 2025-07-17T06:36:45.6411771Z * [new branch] gh/fegin/307/head -> origin/gh/fegin/307/head 2025-07-17T06:36:45.6412308Z * [new branch] gh/fegin/307/orig -> origin/gh/fegin/307/orig 2025-07-17T06:36:45.6412828Z * [new branch] gh/fffrog/103/base -> origin/gh/fffrog/103/base 2025-07-17T06:36:45.6413311Z * [new branch] gh/fffrog/103/head -> origin/gh/fffrog/103/head 2025-07-17T06:36:45.6413893Z * [new branch] gh/fffrog/103/orig -> origin/gh/fffrog/103/orig 2025-07-17T06:36:45.6414375Z * [new branch] gh/fffrog/104/base -> origin/gh/fffrog/104/base 2025-07-17T06:36:45.6414862Z * [new branch] gh/fffrog/104/head -> origin/gh/fffrog/104/head 2025-07-17T06:36:45.6415329Z * [new branch] gh/fffrog/104/orig -> origin/gh/fffrog/104/orig 2025-07-17T06:36:45.6415813Z * [new branch] gh/fffrog/105/base -> origin/gh/fffrog/105/base 2025-07-17T06:36:45.6416277Z * [new branch] gh/fffrog/105/head -> origin/gh/fffrog/105/head 2025-07-17T06:36:45.6416753Z * [new branch] gh/fffrog/105/orig -> origin/gh/fffrog/105/orig 2025-07-17T06:36:45.6417220Z * [new branch] gh/fffrog/106/base -> origin/gh/fffrog/106/base 2025-07-17T06:36:45.6417740Z * [new branch] gh/fffrog/106/head -> origin/gh/fffrog/106/head 2025-07-17T06:36:45.6418346Z * [new branch] gh/fffrog/106/orig -> origin/gh/fffrog/106/orig 2025-07-17T06:36:45.6418825Z * [new branch] gh/fffrog/107/base -> origin/gh/fffrog/107/base 2025-07-17T06:36:45.6419306Z * [new branch] gh/fffrog/107/head -> origin/gh/fffrog/107/head 2025-07-17T06:36:45.6419779Z * [new branch] gh/fffrog/107/orig -> origin/gh/fffrog/107/orig 2025-07-17T06:36:45.6420276Z * [new branch] gh/fffrog/108/base -> origin/gh/fffrog/108/base 2025-07-17T06:36:45.6420752Z * [new branch] gh/fffrog/108/head -> origin/gh/fffrog/108/head 2025-07-17T06:36:45.6421229Z * [new branch] gh/fffrog/108/orig -> origin/gh/fffrog/108/orig 2025-07-17T06:36:45.6421709Z * [new branch] gh/fffrog/109/base -> origin/gh/fffrog/109/base 2025-07-17T06:36:45.6422183Z * [new branch] gh/fffrog/109/head -> origin/gh/fffrog/109/head 2025-07-17T06:36:45.6943903Z * [new branch] gh/fffrog/109/orig -> origin/gh/fffrog/109/orig 2025-07-17T06:36:45.6944454Z * [new branch] gh/fffrog/110/base -> origin/gh/fffrog/110/base 2025-07-17T06:36:45.6944939Z * [new branch] gh/fffrog/110/head -> origin/gh/fffrog/110/head 2025-07-17T06:36:45.6945426Z * [new branch] gh/fffrog/110/orig -> origin/gh/fffrog/110/orig 2025-07-17T06:36:45.6945912Z * [new branch] gh/fffrog/111/base -> origin/gh/fffrog/111/base 2025-07-17T06:36:45.6946384Z * [new branch] gh/fffrog/111/head -> origin/gh/fffrog/111/head 2025-07-17T06:36:45.6946861Z * [new branch] gh/fffrog/111/orig -> origin/gh/fffrog/111/orig 2025-07-17T06:36:45.6947328Z * [new branch] gh/fffrog/112/base -> origin/gh/fffrog/112/base 2025-07-17T06:36:45.6947807Z * [new branch] gh/fffrog/112/head -> origin/gh/fffrog/112/head 2025-07-17T06:36:45.6948284Z * [new branch] gh/fffrog/112/orig -> origin/gh/fffrog/112/orig 2025-07-17T06:36:45.6948759Z * [new branch] gh/fffrog/113/base -> origin/gh/fffrog/113/base 2025-07-17T06:36:45.6949236Z * [new branch] gh/fffrog/113/head -> origin/gh/fffrog/113/head 2025-07-17T06:36:45.6949702Z * [new branch] gh/fffrog/113/orig -> origin/gh/fffrog/113/orig 2025-07-17T06:36:45.6950177Z * [new branch] gh/fffrog/114/base -> origin/gh/fffrog/114/base 2025-07-17T06:36:45.6950643Z * [new branch] gh/fffrog/114/head -> origin/gh/fffrog/114/head 2025-07-17T06:36:45.6951118Z * [new branch] gh/fffrog/114/orig -> origin/gh/fffrog/114/orig 2025-07-17T06:36:45.6951604Z * [new branch] gh/fffrog/115/base -> origin/gh/fffrog/115/base 2025-07-17T06:36:45.6952231Z * [new branch] gh/fffrog/115/head -> origin/gh/fffrog/115/head 2025-07-17T06:36:45.6952720Z * [new branch] gh/fffrog/115/orig -> origin/gh/fffrog/115/orig 2025-07-17T06:36:45.6953190Z * [new branch] gh/fffrog/116/base -> origin/gh/fffrog/116/base 2025-07-17T06:36:45.6953681Z * [new branch] gh/fffrog/116/head -> origin/gh/fffrog/116/head 2025-07-17T06:36:45.6954174Z * [new branch] gh/fffrog/116/orig -> origin/gh/fffrog/116/orig 2025-07-17T06:36:45.6954644Z * [new branch] gh/fffrog/117/base -> origin/gh/fffrog/117/base 2025-07-17T06:36:45.6955211Z * [new branch] gh/fffrog/117/head -> origin/gh/fffrog/117/head 2025-07-17T06:36:45.6955694Z * [new branch] gh/fffrog/117/orig -> origin/gh/fffrog/117/orig 2025-07-17T06:36:45.6956174Z * [new branch] gh/fffrog/118/base -> origin/gh/fffrog/118/base 2025-07-17T06:36:45.6956740Z * [new branch] gh/fffrog/118/head -> origin/gh/fffrog/118/head 2025-07-17T06:36:45.6957225Z * [new branch] gh/fffrog/118/orig -> origin/gh/fffrog/118/orig 2025-07-17T06:36:45.6957719Z * [new branch] gh/fffrog/119/base -> origin/gh/fffrog/119/base 2025-07-17T06:36:45.6958198Z * [new branch] gh/fffrog/119/head -> origin/gh/fffrog/119/head 2025-07-17T06:36:45.6958669Z * [new branch] gh/fffrog/119/orig -> origin/gh/fffrog/119/orig 2025-07-17T06:36:45.6959143Z * [new branch] gh/fffrog/120/base -> origin/gh/fffrog/120/base 2025-07-17T06:36:45.6959621Z * [new branch] gh/fffrog/120/head -> origin/gh/fffrog/120/head 2025-07-17T06:36:45.6960090Z * [new branch] gh/fffrog/120/orig -> origin/gh/fffrog/120/orig 2025-07-17T06:36:45.6960571Z * [new branch] gh/fffrog/121/base -> origin/gh/fffrog/121/base 2025-07-17T06:36:45.6961044Z * [new branch] gh/fffrog/121/head -> origin/gh/fffrog/121/head 2025-07-17T06:36:45.6961529Z * [new branch] gh/fffrog/121/orig -> origin/gh/fffrog/121/orig 2025-07-17T06:36:45.6961994Z * [new branch] gh/fffrog/122/base -> origin/gh/fffrog/122/base 2025-07-17T06:36:45.6962474Z * [new branch] gh/fffrog/122/head -> origin/gh/fffrog/122/head 2025-07-17T06:36:45.6962957Z * [new branch] gh/fffrog/122/orig -> origin/gh/fffrog/122/orig 2025-07-17T06:36:45.6963428Z * [new branch] gh/fffrog/123/base -> origin/gh/fffrog/123/base 2025-07-17T06:36:45.6963908Z * [new branch] gh/fffrog/123/head -> origin/gh/fffrog/123/head 2025-07-17T06:36:45.6964376Z * [new branch] gh/fffrog/123/orig -> origin/gh/fffrog/123/orig 2025-07-17T06:36:45.6964860Z * [new branch] gh/fffrog/39/base -> origin/gh/fffrog/39/base 2025-07-17T06:36:45.6965339Z * [new branch] gh/fffrog/39/head -> origin/gh/fffrog/39/head 2025-07-17T06:36:45.6965801Z * [new branch] gh/fffrog/39/orig -> origin/gh/fffrog/39/orig 2025-07-17T06:36:45.6966270Z * [new branch] gh/fffrog/67/base -> origin/gh/fffrog/67/base 2025-07-17T06:36:45.7671622Z * [new branch] gh/fffrog/67/head -> origin/gh/fffrog/67/head 2025-07-17T06:36:45.7672198Z * [new branch] gh/fffrog/67/orig -> origin/gh/fffrog/67/orig 2025-07-17T06:36:45.7672682Z * [new branch] gh/fffrog/87/base -> origin/gh/fffrog/87/base 2025-07-17T06:36:45.7673153Z * [new branch] gh/fffrog/87/head -> origin/gh/fffrog/87/head 2025-07-17T06:36:45.7673626Z * [new branch] gh/fffrog/87/orig -> origin/gh/fffrog/87/orig 2025-07-17T06:36:45.7674088Z * [new branch] gh/fffrog/93/base -> origin/gh/fffrog/93/base 2025-07-17T06:36:45.7674748Z * [new branch] gh/fffrog/93/head -> origin/gh/fffrog/93/head 2025-07-17T06:36:45.7675290Z * [new branch] gh/fffrog/93/orig -> origin/gh/fffrog/93/orig 2025-07-17T06:36:45.7675749Z * [new branch] gh/fffrog/99/base -> origin/gh/fffrog/99/base 2025-07-17T06:36:45.7676228Z * [new branch] gh/fffrog/99/head -> origin/gh/fffrog/99/head 2025-07-17T06:36:45.7676693Z * [new branch] gh/fffrog/99/orig -> origin/gh/fffrog/99/orig 2025-07-17T06:36:45.7677189Z * [new branch] gh/gmagogsfm/1/base -> origin/gh/gmagogsfm/1/base 2025-07-17T06:36:45.7677739Z * [new branch] gh/gmagogsfm/1/head -> origin/gh/gmagogsfm/1/head 2025-07-17T06:36:45.7678284Z * [new branch] gh/gmagogsfm/1/orig -> origin/gh/gmagogsfm/1/orig 2025-07-17T06:36:45.7678783Z * [new branch] gh/gmagogsfm/2/base -> origin/gh/gmagogsfm/2/base 2025-07-17T06:36:45.7679359Z * [new branch] gh/gmagogsfm/2/head -> origin/gh/gmagogsfm/2/head 2025-07-17T06:36:45.7679857Z * [new branch] gh/gmagogsfm/2/orig -> origin/gh/gmagogsfm/2/orig 2025-07-17T06:36:45.7680344Z * [new branch] gh/gmagogsfm/3/base -> origin/gh/gmagogsfm/3/base 2025-07-17T06:36:45.7680863Z * [new branch] gh/gmagogsfm/3/head -> origin/gh/gmagogsfm/3/head 2025-07-17T06:36:45.7681362Z * [new branch] gh/gmagogsfm/3/orig -> origin/gh/gmagogsfm/3/orig 2025-07-17T06:36:45.7681851Z * [new branch] gh/gmagogsfm/4/base -> origin/gh/gmagogsfm/4/base 2025-07-17T06:36:45.7682354Z * [new branch] gh/gmagogsfm/4/head -> origin/gh/gmagogsfm/4/head 2025-07-17T06:36:45.7682841Z * [new branch] gh/gmagogsfm/4/orig -> origin/gh/gmagogsfm/4/orig 2025-07-17T06:36:45.7683391Z * [new branch] gh/guangyey/130/base -> origin/gh/guangyey/130/base 2025-07-17T06:36:45.7683950Z * [new branch] gh/guangyey/130/head -> origin/gh/guangyey/130/head 2025-07-17T06:36:45.7684440Z * [new branch] gh/guangyey/130/orig -> origin/gh/guangyey/130/orig 2025-07-17T06:36:45.7684932Z * [new branch] gh/guangyey/133/base -> origin/gh/guangyey/133/base 2025-07-17T06:36:45.7685419Z * [new branch] gh/guangyey/133/head -> origin/gh/guangyey/133/head 2025-07-17T06:36:45.7685911Z * [new branch] gh/guangyey/133/orig -> origin/gh/guangyey/133/orig 2025-07-17T06:36:45.7686404Z * [new branch] gh/guangyey/134/base -> origin/gh/guangyey/134/base 2025-07-17T06:36:45.7686892Z * [new branch] gh/guangyey/134/head -> origin/gh/guangyey/134/head 2025-07-17T06:36:45.7687400Z * [new branch] gh/guangyey/134/orig -> origin/gh/guangyey/134/orig 2025-07-17T06:36:45.7687899Z * [new branch] gh/guangyey/135/base -> origin/gh/guangyey/135/base 2025-07-17T06:36:45.7688397Z * [new branch] gh/guangyey/135/head -> origin/gh/guangyey/135/head 2025-07-17T06:36:45.7688939Z * [new branch] gh/guangyey/135/orig -> origin/gh/guangyey/135/orig 2025-07-17T06:36:45.7689470Z * [new branch] gh/guangyey/139/base -> origin/gh/guangyey/139/base 2025-07-17T06:36:45.7689965Z * [new branch] gh/guangyey/139/head -> origin/gh/guangyey/139/head 2025-07-17T06:36:45.7690451Z * [new branch] gh/guangyey/139/orig -> origin/gh/guangyey/139/orig 2025-07-17T06:36:45.7690946Z * [new branch] gh/guangyey/140/base -> origin/gh/guangyey/140/base 2025-07-17T06:36:45.7691434Z * [new branch] gh/guangyey/140/head -> origin/gh/guangyey/140/head 2025-07-17T06:36:45.7691927Z * [new branch] gh/guangyey/140/orig -> origin/gh/guangyey/140/orig 2025-07-17T06:36:45.7692542Z * [new branch] gh/guangyey/142/base -> origin/gh/guangyey/142/base 2025-07-17T06:36:45.7693039Z * [new branch] gh/guangyey/142/head -> origin/gh/guangyey/142/head 2025-07-17T06:36:45.7693541Z * [new branch] gh/guangyey/142/orig -> origin/gh/guangyey/142/orig 2025-07-17T06:36:45.7694036Z * [new branch] gh/guangyey/145/base -> origin/gh/guangyey/145/base 2025-07-17T06:36:45.7694578Z * [new branch] gh/guangyey/145/head -> origin/gh/guangyey/145/head 2025-07-17T06:36:45.7695127Z * [new branch] gh/guangyey/145/orig -> origin/gh/guangyey/145/orig 2025-07-17T06:36:45.8101323Z * [new branch] gh/guangyey/153/base -> origin/gh/guangyey/153/base 2025-07-17T06:36:45.8101897Z * [new branch] gh/guangyey/153/head -> origin/gh/guangyey/153/head 2025-07-17T06:36:45.8102422Z * [new branch] gh/guangyey/153/orig -> origin/gh/guangyey/153/orig 2025-07-17T06:36:45.8103059Z * [new branch] gh/guangyey/154/base -> origin/gh/guangyey/154/base 2025-07-17T06:36:45.8103568Z * [new branch] gh/guangyey/154/head -> origin/gh/guangyey/154/head 2025-07-17T06:36:45.8104105Z * [new branch] gh/guangyey/154/orig -> origin/gh/guangyey/154/orig 2025-07-17T06:36:45.8104657Z * [new branch] gh/guangyey/158/base -> origin/gh/guangyey/158/base 2025-07-17T06:36:45.8105159Z * [new branch] gh/guangyey/158/head -> origin/gh/guangyey/158/head 2025-07-17T06:36:45.8105656Z * [new branch] gh/guangyey/158/orig -> origin/gh/guangyey/158/orig 2025-07-17T06:36:45.8106162Z * [new branch] gh/guangyey/159/base -> origin/gh/guangyey/159/base 2025-07-17T06:36:45.8106651Z * [new branch] gh/guangyey/159/head -> origin/gh/guangyey/159/head 2025-07-17T06:36:45.8107159Z * [new branch] gh/guangyey/159/orig -> origin/gh/guangyey/159/orig 2025-07-17T06:36:45.8107650Z * [new branch] gh/guangyey/160/base -> origin/gh/guangyey/160/base 2025-07-17T06:36:45.8108141Z * [new branch] gh/guangyey/160/head -> origin/gh/guangyey/160/head 2025-07-17T06:36:45.8108639Z * [new branch] gh/guangyey/160/orig -> origin/gh/guangyey/160/orig 2025-07-17T06:36:45.8109125Z * [new branch] gh/guangyey/161/base -> origin/gh/guangyey/161/base 2025-07-17T06:36:45.8109651Z * [new branch] gh/guangyey/161/head -> origin/gh/guangyey/161/head 2025-07-17T06:36:45.8110198Z * [new branch] gh/guangyey/161/orig -> origin/gh/guangyey/161/orig 2025-07-17T06:36:45.8110712Z * [new branch] gh/guangyey/162/base -> origin/gh/guangyey/162/base 2025-07-17T06:36:45.8111202Z * [new branch] gh/guangyey/162/head -> origin/gh/guangyey/162/head 2025-07-17T06:36:45.8111697Z * [new branch] gh/guangyey/162/orig -> origin/gh/guangyey/162/orig 2025-07-17T06:36:45.8112193Z * [new branch] gh/guangyey/163/base -> origin/gh/guangyey/163/base 2025-07-17T06:36:45.8112684Z * [new branch] gh/guangyey/163/head -> origin/gh/guangyey/163/head 2025-07-17T06:36:45.8113183Z * [new branch] gh/guangyey/163/orig -> origin/gh/guangyey/163/orig 2025-07-17T06:36:45.8113675Z * [new branch] gh/guangyey/164/base -> origin/gh/guangyey/164/base 2025-07-17T06:36:45.8114287Z * [new branch] gh/guangyey/164/head -> origin/gh/guangyey/164/head 2025-07-17T06:36:45.8114841Z * [new branch] gh/guangyey/164/orig -> origin/gh/guangyey/164/orig 2025-07-17T06:36:45.8115539Z * [new branch] gh/guangyey/165/base -> origin/gh/guangyey/165/base 2025-07-17T06:36:45.8116269Z * [new branch] gh/guangyey/165/head -> origin/gh/guangyey/165/head 2025-07-17T06:36:45.8116847Z * [new branch] gh/guangyey/165/orig -> origin/gh/guangyey/165/orig 2025-07-17T06:36:45.8117404Z * [new branch] gh/guangyey/166/base -> origin/gh/guangyey/166/base 2025-07-17T06:36:45.8117941Z * [new branch] gh/guangyey/166/head -> origin/gh/guangyey/166/head 2025-07-17T06:36:45.8118498Z * [new branch] gh/guangyey/166/orig -> origin/gh/guangyey/166/orig 2025-07-17T06:36:45.8119024Z * [new branch] gh/guangyey/167/base -> origin/gh/guangyey/167/base 2025-07-17T06:36:45.8128443Z * [new branch] gh/guangyey/167/head -> origin/gh/guangyey/167/head 2025-07-17T06:36:45.8129062Z * [new branch] gh/guangyey/167/orig -> origin/gh/guangyey/167/orig 2025-07-17T06:36:45.8129578Z * [new branch] gh/guangyey/168/base -> origin/gh/guangyey/168/base 2025-07-17T06:36:45.8130239Z * [new branch] gh/guangyey/168/head -> origin/gh/guangyey/168/head 2025-07-17T06:36:45.8130753Z * [new branch] gh/guangyey/168/orig -> origin/gh/guangyey/168/orig 2025-07-17T06:36:45.8131248Z * [new branch] gh/guangyey/169/base -> origin/gh/guangyey/169/base 2025-07-17T06:36:45.8131765Z * [new branch] gh/guangyey/169/head -> origin/gh/guangyey/169/head 2025-07-17T06:36:45.8132267Z * [new branch] gh/guangyey/169/orig -> origin/gh/guangyey/169/orig 2025-07-17T06:36:45.8132811Z * [new branch] gh/guangyey/170/base -> origin/gh/guangyey/170/base 2025-07-17T06:36:45.8133354Z * [new branch] gh/guangyey/170/head -> origin/gh/guangyey/170/head 2025-07-17T06:36:45.8133840Z * [new branch] gh/guangyey/170/orig -> origin/gh/guangyey/170/orig 2025-07-17T06:36:45.8134345Z * [new branch] gh/guangyey/171/base -> origin/gh/guangyey/171/base 2025-07-17T06:36:45.8134845Z * [new branch] gh/guangyey/171/head -> origin/gh/guangyey/171/head 2025-07-17T06:36:45.8574500Z * [new branch] gh/guangyey/171/orig -> origin/gh/guangyey/171/orig 2025-07-17T06:36:45.8575053Z * [new branch] gh/guangyey/172/base -> origin/gh/guangyey/172/base 2025-07-17T06:36:45.8575554Z * [new branch] gh/guangyey/172/head -> origin/gh/guangyey/172/head 2025-07-17T06:36:45.8576055Z * [new branch] gh/guangyey/172/orig -> origin/gh/guangyey/172/orig 2025-07-17T06:36:45.8576557Z * [new branch] gh/guangyey/79/base -> origin/gh/guangyey/79/base 2025-07-17T06:36:45.8577042Z * [new branch] gh/guangyey/79/head -> origin/gh/guangyey/79/head 2025-07-17T06:36:45.8577535Z * [new branch] gh/guangyey/79/orig -> origin/gh/guangyey/79/orig 2025-07-17T06:36:45.8578080Z * [new branch] gh/guangyey/89/base -> origin/gh/guangyey/89/base 2025-07-17T06:36:45.8578629Z * [new branch] gh/guangyey/89/head -> origin/gh/guangyey/89/head 2025-07-17T06:36:45.8579119Z * [new branch] gh/guangyey/89/orig -> origin/gh/guangyey/89/orig 2025-07-17T06:36:45.8579662Z * [new branch] gh/guilhermeleobas/107/base -> origin/gh/guilhermeleobas/107/base 2025-07-17T06:36:45.8580253Z * [new branch] gh/guilhermeleobas/107/head -> origin/gh/guilhermeleobas/107/head 2025-07-17T06:36:45.8580821Z * [new branch] gh/guilhermeleobas/107/orig -> origin/gh/guilhermeleobas/107/orig 2025-07-17T06:36:45.8581396Z * [new branch] gh/guilhermeleobas/108/base -> origin/gh/guilhermeleobas/108/base 2025-07-17T06:36:45.8581966Z * [new branch] gh/guilhermeleobas/108/head -> origin/gh/guilhermeleobas/108/head 2025-07-17T06:36:45.8582538Z * [new branch] gh/guilhermeleobas/108/orig -> origin/gh/guilhermeleobas/108/orig 2025-07-17T06:36:45.8583281Z * [new branch] gh/guilhermeleobas/120/base -> origin/gh/guilhermeleobas/120/base 2025-07-17T06:36:45.8583896Z * [new branch] gh/guilhermeleobas/120/head -> origin/gh/guilhermeleobas/120/head 2025-07-17T06:36:45.8584527Z * [new branch] gh/guilhermeleobas/120/orig -> origin/gh/guilhermeleobas/120/orig 2025-07-17T06:36:45.8585094Z * [new branch] gh/guilhermeleobas/124/base -> origin/gh/guilhermeleobas/124/base 2025-07-17T06:36:45.8585668Z * [new branch] gh/guilhermeleobas/124/head -> origin/gh/guilhermeleobas/124/head 2025-07-17T06:36:45.8586242Z * [new branch] gh/guilhermeleobas/124/orig -> origin/gh/guilhermeleobas/124/orig 2025-07-17T06:36:45.8586814Z * [new branch] gh/guilhermeleobas/127/base -> origin/gh/guilhermeleobas/127/base 2025-07-17T06:36:45.8587384Z * [new branch] gh/guilhermeleobas/127/head -> origin/gh/guilhermeleobas/127/head 2025-07-17T06:36:45.8588042Z * [new branch] gh/guilhermeleobas/127/orig -> origin/gh/guilhermeleobas/127/orig 2025-07-17T06:36:45.8588625Z * [new branch] gh/guilhermeleobas/143/base -> origin/gh/guilhermeleobas/143/base 2025-07-17T06:36:45.8589207Z * [new branch] gh/guilhermeleobas/143/head -> origin/gh/guilhermeleobas/143/head 2025-07-17T06:36:45.8589827Z * [new branch] gh/guilhermeleobas/143/orig -> origin/gh/guilhermeleobas/143/orig 2025-07-17T06:36:45.8590464Z * [new branch] gh/guilhermeleobas/145/base -> origin/gh/guilhermeleobas/145/base 2025-07-17T06:36:45.8591035Z * [new branch] gh/guilhermeleobas/145/head -> origin/gh/guilhermeleobas/145/head 2025-07-17T06:36:45.8591615Z * [new branch] gh/guilhermeleobas/145/orig -> origin/gh/guilhermeleobas/145/orig 2025-07-17T06:36:45.8592190Z * [new branch] gh/guilhermeleobas/146/base -> origin/gh/guilhermeleobas/146/base 2025-07-17T06:36:45.8592768Z * [new branch] gh/guilhermeleobas/146/head -> origin/gh/guilhermeleobas/146/head 2025-07-17T06:36:45.8593355Z * [new branch] gh/guilhermeleobas/146/orig -> origin/gh/guilhermeleobas/146/orig 2025-07-17T06:36:45.8593925Z * [new branch] gh/guilhermeleobas/147/base -> origin/gh/guilhermeleobas/147/base 2025-07-17T06:36:45.8594517Z * [new branch] gh/guilhermeleobas/147/head -> origin/gh/guilhermeleobas/147/head 2025-07-17T06:36:45.8595163Z * [new branch] gh/guilhermeleobas/147/orig -> origin/gh/guilhermeleobas/147/orig 2025-07-17T06:36:45.8595826Z * [new branch] gh/guilhermeleobas/148/base -> origin/gh/guilhermeleobas/148/base 2025-07-17T06:36:45.8596407Z * [new branch] gh/guilhermeleobas/148/head -> origin/gh/guilhermeleobas/148/head 2025-07-17T06:36:45.8596975Z * [new branch] gh/guilhermeleobas/148/orig -> origin/gh/guilhermeleobas/148/orig 2025-07-17T06:36:45.8597558Z * [new branch] gh/guilhermeleobas/149/base -> origin/gh/guilhermeleobas/149/base 2025-07-17T06:36:45.8598139Z * [new branch] gh/guilhermeleobas/149/head -> origin/gh/guilhermeleobas/149/head 2025-07-17T06:36:45.8598705Z * [new branch] gh/guilhermeleobas/149/orig -> origin/gh/guilhermeleobas/149/orig 2025-07-17T06:36:45.8599279Z * [new branch] gh/guilhermeleobas/150/base -> origin/gh/guilhermeleobas/150/base 2025-07-17T06:36:45.8971706Z * [new branch] gh/guilhermeleobas/150/head -> origin/gh/guilhermeleobas/150/head 2025-07-17T06:36:45.8972336Z * [new branch] gh/guilhermeleobas/150/orig -> origin/gh/guilhermeleobas/150/orig 2025-07-17T06:36:45.8972932Z * [new branch] gh/guilhermeleobas/151/base -> origin/gh/guilhermeleobas/151/base 2025-07-17T06:36:45.8973502Z * [new branch] gh/guilhermeleobas/151/head -> origin/gh/guilhermeleobas/151/head 2025-07-17T06:36:45.8974245Z * [new branch] gh/guilhermeleobas/151/orig -> origin/gh/guilhermeleobas/151/orig 2025-07-17T06:36:45.8974827Z * [new branch] gh/guilhermeleobas/152/base -> origin/gh/guilhermeleobas/152/base 2025-07-17T06:36:45.8975423Z * [new branch] gh/guilhermeleobas/152/head -> origin/gh/guilhermeleobas/152/head 2025-07-17T06:36:45.8976005Z * [new branch] gh/guilhermeleobas/152/orig -> origin/gh/guilhermeleobas/152/orig 2025-07-17T06:36:45.8976594Z * [new branch] gh/guilhermeleobas/153/base -> origin/gh/guilhermeleobas/153/base 2025-07-17T06:36:45.8977175Z * [new branch] gh/guilhermeleobas/153/head -> origin/gh/guilhermeleobas/153/head 2025-07-17T06:36:45.8977754Z * [new branch] gh/guilhermeleobas/153/orig -> origin/gh/guilhermeleobas/153/orig 2025-07-17T06:36:45.8978321Z * [new branch] gh/guilhermeleobas/154/base -> origin/gh/guilhermeleobas/154/base 2025-07-17T06:36:45.8978903Z * [new branch] gh/guilhermeleobas/154/head -> origin/gh/guilhermeleobas/154/head 2025-07-17T06:36:45.8979560Z * [new branch] gh/guilhermeleobas/154/orig -> origin/gh/guilhermeleobas/154/orig 2025-07-17T06:36:45.8980152Z * [new branch] gh/guilhermeleobas/155/base -> origin/gh/guilhermeleobas/155/base 2025-07-17T06:36:45.8980733Z * [new branch] gh/guilhermeleobas/155/head -> origin/gh/guilhermeleobas/155/head 2025-07-17T06:36:45.8981307Z * [new branch] gh/guilhermeleobas/155/orig -> origin/gh/guilhermeleobas/155/orig 2025-07-17T06:36:45.8981889Z * [new branch] gh/guilhermeleobas/156/base -> origin/gh/guilhermeleobas/156/base 2025-07-17T06:36:45.8982461Z * [new branch] gh/guilhermeleobas/156/head -> origin/gh/guilhermeleobas/156/head 2025-07-17T06:36:45.8983043Z * [new branch] gh/guilhermeleobas/156/orig -> origin/gh/guilhermeleobas/156/orig 2025-07-17T06:36:45.8983618Z * [new branch] gh/guilhermeleobas/157/base -> origin/gh/guilhermeleobas/157/base 2025-07-17T06:36:45.8984201Z * [new branch] gh/guilhermeleobas/157/head -> origin/gh/guilhermeleobas/157/head 2025-07-17T06:36:45.8984787Z * [new branch] gh/guilhermeleobas/157/orig -> origin/gh/guilhermeleobas/157/orig 2025-07-17T06:36:45.8985354Z * [new branch] gh/guilhermeleobas/158/base -> origin/gh/guilhermeleobas/158/base 2025-07-17T06:36:45.8985931Z * [new branch] gh/guilhermeleobas/158/head -> origin/gh/guilhermeleobas/158/head 2025-07-17T06:36:45.8986508Z * [new branch] gh/guilhermeleobas/158/orig -> origin/gh/guilhermeleobas/158/orig 2025-07-17T06:36:45.8987080Z * [new branch] gh/guilhermeleobas/159/base -> origin/gh/guilhermeleobas/159/base 2025-07-17T06:36:45.8987651Z * [new branch] gh/guilhermeleobas/159/head -> origin/gh/guilhermeleobas/159/head 2025-07-17T06:36:45.8988215Z * [new branch] gh/guilhermeleobas/159/orig -> origin/gh/guilhermeleobas/159/orig 2025-07-17T06:36:45.8988801Z * [new branch] gh/guilhermeleobas/160/base -> origin/gh/guilhermeleobas/160/base 2025-07-17T06:36:45.8989376Z * [new branch] gh/guilhermeleobas/160/head -> origin/gh/guilhermeleobas/160/head 2025-07-17T06:36:45.8989951Z * [new branch] gh/guilhermeleobas/160/orig -> origin/gh/guilhermeleobas/160/orig 2025-07-17T06:36:45.8990528Z * [new branch] gh/guilhermeleobas/161/base -> origin/gh/guilhermeleobas/161/base 2025-07-17T06:36:45.8991093Z * [new branch] gh/guilhermeleobas/161/head -> origin/gh/guilhermeleobas/161/head 2025-07-17T06:36:45.8991669Z * [new branch] gh/guilhermeleobas/161/orig -> origin/gh/guilhermeleobas/161/orig 2025-07-17T06:36:45.8992232Z * [new branch] gh/guilhermeleobas/162/base -> origin/gh/guilhermeleobas/162/base 2025-07-17T06:36:45.8992811Z * [new branch] gh/guilhermeleobas/162/head -> origin/gh/guilhermeleobas/162/head 2025-07-17T06:36:45.8993474Z * [new branch] gh/guilhermeleobas/162/orig -> origin/gh/guilhermeleobas/162/orig 2025-07-17T06:36:45.8994053Z * [new branch] gh/guilhermeleobas/163/base -> origin/gh/guilhermeleobas/163/base 2025-07-17T06:36:45.8994629Z * [new branch] gh/guilhermeleobas/163/head -> origin/gh/guilhermeleobas/163/head 2025-07-17T06:36:45.8995367Z * [new branch] gh/guilhermeleobas/163/orig -> origin/gh/guilhermeleobas/163/orig 2025-07-17T06:36:45.8995946Z * [new branch] gh/guilhermeleobas/164/base -> origin/gh/guilhermeleobas/164/base 2025-07-17T06:36:45.8996525Z * [new branch] gh/guilhermeleobas/164/head -> origin/gh/guilhermeleobas/164/head 2025-07-17T06:36:45.9372218Z * [new branch] gh/guilhermeleobas/164/orig -> origin/gh/guilhermeleobas/164/orig 2025-07-17T06:36:45.9372848Z * [new branch] gh/guilhermeleobas/165/base -> origin/gh/guilhermeleobas/165/base 2025-07-17T06:36:45.9373442Z * [new branch] gh/guilhermeleobas/165/head -> origin/gh/guilhermeleobas/165/head 2025-07-17T06:36:45.9374155Z * [new branch] gh/guilhermeleobas/165/orig -> origin/gh/guilhermeleobas/165/orig 2025-07-17T06:36:45.9374743Z * [new branch] gh/guilhermeleobas/166/base -> origin/gh/guilhermeleobas/166/base 2025-07-17T06:36:45.9375336Z * [new branch] gh/guilhermeleobas/166/head -> origin/gh/guilhermeleobas/166/head 2025-07-17T06:36:45.9375924Z * [new branch] gh/guilhermeleobas/166/orig -> origin/gh/guilhermeleobas/166/orig 2025-07-17T06:36:45.9376503Z * [new branch] gh/guilhermeleobas/167/base -> origin/gh/guilhermeleobas/167/base 2025-07-17T06:36:45.9377067Z * [new branch] gh/guilhermeleobas/167/head -> origin/gh/guilhermeleobas/167/head 2025-07-17T06:36:45.9377655Z * [new branch] gh/guilhermeleobas/167/orig -> origin/gh/guilhermeleobas/167/orig 2025-07-17T06:36:45.9378231Z * [new branch] gh/guilhermeleobas/168/base -> origin/gh/guilhermeleobas/168/base 2025-07-17T06:36:45.9378816Z * [new branch] gh/guilhermeleobas/168/head -> origin/gh/guilhermeleobas/168/head 2025-07-17T06:36:45.9379393Z * [new branch] gh/guilhermeleobas/168/orig -> origin/gh/guilhermeleobas/168/orig 2025-07-17T06:36:45.9379960Z * [new branch] gh/guilhermeleobas/169/base -> origin/gh/guilhermeleobas/169/base 2025-07-17T06:36:45.9380535Z * [new branch] gh/guilhermeleobas/169/head -> origin/gh/guilhermeleobas/169/head 2025-07-17T06:36:45.9381107Z * [new branch] gh/guilhermeleobas/169/orig -> origin/gh/guilhermeleobas/169/orig 2025-07-17T06:36:45.9381684Z * [new branch] gh/guilhermeleobas/170/base -> origin/gh/guilhermeleobas/170/base 2025-07-17T06:36:45.9382262Z * [new branch] gh/guilhermeleobas/170/head -> origin/gh/guilhermeleobas/170/head 2025-07-17T06:36:45.9382828Z * [new branch] gh/guilhermeleobas/170/orig -> origin/gh/guilhermeleobas/170/orig 2025-07-17T06:36:45.9383409Z * [new branch] gh/guilhermeleobas/171/base -> origin/gh/guilhermeleobas/171/base 2025-07-17T06:36:45.9383976Z * [new branch] gh/guilhermeleobas/171/head -> origin/gh/guilhermeleobas/171/head 2025-07-17T06:36:45.9384548Z * [new branch] gh/guilhermeleobas/171/orig -> origin/gh/guilhermeleobas/171/orig 2025-07-17T06:36:45.9385121Z * [new branch] gh/guilhermeleobas/172/base -> origin/gh/guilhermeleobas/172/base 2025-07-17T06:36:45.9385692Z * [new branch] gh/guilhermeleobas/172/head -> origin/gh/guilhermeleobas/172/head 2025-07-17T06:36:45.9386274Z * [new branch] gh/guilhermeleobas/172/orig -> origin/gh/guilhermeleobas/172/orig 2025-07-17T06:36:45.9386842Z * [new branch] gh/guilhermeleobas/173/base -> origin/gh/guilhermeleobas/173/base 2025-07-17T06:36:45.9387416Z * [new branch] gh/guilhermeleobas/173/head -> origin/gh/guilhermeleobas/173/head 2025-07-17T06:36:45.9388085Z * [new branch] gh/guilhermeleobas/173/orig -> origin/gh/guilhermeleobas/173/orig 2025-07-17T06:36:45.9388658Z * [new branch] gh/guilhermeleobas/174/base -> origin/gh/guilhermeleobas/174/base 2025-07-17T06:36:45.9389254Z * [new branch] gh/guilhermeleobas/174/head -> origin/gh/guilhermeleobas/174/head 2025-07-17T06:36:45.9389833Z * [new branch] gh/guilhermeleobas/174/orig -> origin/gh/guilhermeleobas/174/orig 2025-07-17T06:36:45.9390409Z * [new branch] gh/guilhermeleobas/175/base -> origin/gh/guilhermeleobas/175/base 2025-07-17T06:36:45.9390980Z * [new branch] gh/guilhermeleobas/175/head -> origin/gh/guilhermeleobas/175/head 2025-07-17T06:36:45.9391554Z * [new branch] gh/guilhermeleobas/175/orig -> origin/gh/guilhermeleobas/175/orig 2025-07-17T06:36:45.9392131Z * [new branch] gh/guilhermeleobas/176/base -> origin/gh/guilhermeleobas/176/base 2025-07-17T06:36:45.9392714Z * [new branch] gh/guilhermeleobas/176/head -> origin/gh/guilhermeleobas/176/head 2025-07-17T06:36:45.9393363Z * [new branch] gh/guilhermeleobas/176/orig -> origin/gh/guilhermeleobas/176/orig 2025-07-17T06:36:45.9393946Z * [new branch] gh/guilhermeleobas/177/base -> origin/gh/guilhermeleobas/177/base 2025-07-17T06:36:45.9394514Z * [new branch] gh/guilhermeleobas/177/head -> origin/gh/guilhermeleobas/177/head 2025-07-17T06:36:45.9395162Z * [new branch] gh/guilhermeleobas/177/orig -> origin/gh/guilhermeleobas/177/orig 2025-07-17T06:36:45.9395733Z * [new branch] gh/guilhermeleobas/178/base -> origin/gh/guilhermeleobas/178/base 2025-07-17T06:36:45.9396315Z * [new branch] gh/guilhermeleobas/178/head -> origin/gh/guilhermeleobas/178/head 2025-07-17T06:36:45.9396885Z * [new branch] gh/guilhermeleobas/178/orig -> origin/gh/guilhermeleobas/178/orig 2025-07-17T06:36:45.9926226Z * [new branch] gh/guilhermeleobas/179/base -> origin/gh/guilhermeleobas/179/base 2025-07-17T06:36:45.9926875Z * [new branch] gh/guilhermeleobas/179/head -> origin/gh/guilhermeleobas/179/head 2025-07-17T06:36:45.9927454Z * [new branch] gh/guilhermeleobas/179/orig -> origin/gh/guilhermeleobas/179/orig 2025-07-17T06:36:45.9928035Z * [new branch] gh/guilhermeleobas/180/base -> origin/gh/guilhermeleobas/180/base 2025-07-17T06:36:45.9928618Z * [new branch] gh/guilhermeleobas/180/head -> origin/gh/guilhermeleobas/180/head 2025-07-17T06:36:45.9929190Z * [new branch] gh/guilhermeleobas/180/orig -> origin/gh/guilhermeleobas/180/orig 2025-07-17T06:36:45.9929766Z * [new branch] gh/guilhermeleobas/181/base -> origin/gh/guilhermeleobas/181/base 2025-07-17T06:36:45.9930336Z * [new branch] gh/guilhermeleobas/181/head -> origin/gh/guilhermeleobas/181/head 2025-07-17T06:36:45.9930917Z * [new branch] gh/guilhermeleobas/181/orig -> origin/gh/guilhermeleobas/181/orig 2025-07-17T06:36:45.9931504Z * [new branch] gh/guilhermeleobas/182/base -> origin/gh/guilhermeleobas/182/base 2025-07-17T06:36:45.9932076Z * [new branch] gh/guilhermeleobas/182/head -> origin/gh/guilhermeleobas/182/head 2025-07-17T06:36:45.9932650Z * [new branch] gh/guilhermeleobas/182/orig -> origin/gh/guilhermeleobas/182/orig 2025-07-17T06:36:45.9933220Z * [new branch] gh/guilhermeleobas/183/base -> origin/gh/guilhermeleobas/183/base 2025-07-17T06:36:45.9933794Z * [new branch] gh/guilhermeleobas/183/head -> origin/gh/guilhermeleobas/183/head 2025-07-17T06:36:45.9934390Z * [new branch] gh/guilhermeleobas/183/orig -> origin/gh/guilhermeleobas/183/orig 2025-07-17T06:36:45.9934962Z * [new branch] gh/guilhermeleobas/184/base -> origin/gh/guilhermeleobas/184/base 2025-07-17T06:36:45.9935645Z * [new branch] gh/guilhermeleobas/184/head -> origin/gh/guilhermeleobas/184/head 2025-07-17T06:36:45.9936398Z * [new branch] gh/guilhermeleobas/184/orig -> origin/gh/guilhermeleobas/184/orig 2025-07-17T06:36:45.9936982Z * [new branch] gh/guilhermeleobas/185/base -> origin/gh/guilhermeleobas/185/base 2025-07-17T06:36:45.9937575Z * [new branch] gh/guilhermeleobas/185/head -> origin/gh/guilhermeleobas/185/head 2025-07-17T06:36:45.9938155Z * [new branch] gh/guilhermeleobas/185/orig -> origin/gh/guilhermeleobas/185/orig 2025-07-17T06:36:45.9938743Z * [new branch] gh/guilhermeleobas/186/base -> origin/gh/guilhermeleobas/186/base 2025-07-17T06:36:45.9939316Z * [new branch] gh/guilhermeleobas/186/head -> origin/gh/guilhermeleobas/186/head 2025-07-17T06:36:45.9939889Z * [new branch] gh/guilhermeleobas/186/orig -> origin/gh/guilhermeleobas/186/orig 2025-07-17T06:36:45.9940467Z * [new branch] gh/guilhermeleobas/187/base -> origin/gh/guilhermeleobas/187/base 2025-07-17T06:36:45.9941129Z * [new branch] gh/guilhermeleobas/187/head -> origin/gh/guilhermeleobas/187/head 2025-07-17T06:36:45.9941721Z * [new branch] gh/guilhermeleobas/187/orig -> origin/gh/guilhermeleobas/187/orig 2025-07-17T06:36:45.9942291Z * [new branch] gh/guilhermeleobas/188/base -> origin/gh/guilhermeleobas/188/base 2025-07-17T06:36:45.9942879Z * [new branch] gh/guilhermeleobas/188/head -> origin/gh/guilhermeleobas/188/head 2025-07-17T06:36:45.9943459Z * [new branch] gh/guilhermeleobas/188/orig -> origin/gh/guilhermeleobas/188/orig 2025-07-17T06:36:45.9944035Z * [new branch] gh/guilhermeleobas/189/base -> origin/gh/guilhermeleobas/189/base 2025-07-17T06:36:45.9944620Z * [new branch] gh/guilhermeleobas/189/head -> origin/gh/guilhermeleobas/189/head 2025-07-17T06:36:45.9945188Z * [new branch] gh/guilhermeleobas/189/orig -> origin/gh/guilhermeleobas/189/orig 2025-07-17T06:36:45.9945776Z * [new branch] gh/guilhermeleobas/190/base -> origin/gh/guilhermeleobas/190/base 2025-07-17T06:36:45.9946363Z * [new branch] gh/guilhermeleobas/190/head -> origin/gh/guilhermeleobas/190/head 2025-07-17T06:36:45.9946933Z * [new branch] gh/guilhermeleobas/190/orig -> origin/gh/guilhermeleobas/190/orig 2025-07-17T06:36:45.9947507Z * [new branch] gh/guilhermeleobas/191/base -> origin/gh/guilhermeleobas/191/base 2025-07-17T06:36:45.9948075Z * [new branch] gh/guilhermeleobas/191/head -> origin/gh/guilhermeleobas/191/head 2025-07-17T06:36:45.9948653Z * [new branch] gh/guilhermeleobas/191/orig -> origin/gh/guilhermeleobas/191/orig 2025-07-17T06:36:45.9949225Z * [new branch] gh/guilhermeleobas/192/base -> origin/gh/guilhermeleobas/192/base 2025-07-17T06:36:45.9949800Z * [new branch] gh/guilhermeleobas/192/head -> origin/gh/guilhermeleobas/192/head 2025-07-17T06:36:45.9950384Z * [new branch] gh/guilhermeleobas/192/orig -> origin/gh/guilhermeleobas/192/orig 2025-07-17T06:36:45.9950957Z * [new branch] gh/guilhermeleobas/193/base -> origin/gh/guilhermeleobas/193/base 2025-07-17T06:36:46.0756467Z * [new branch] gh/guilhermeleobas/193/head -> origin/gh/guilhermeleobas/193/head 2025-07-17T06:36:46.0757084Z * [new branch] gh/guilhermeleobas/193/orig -> origin/gh/guilhermeleobas/193/orig 2025-07-17T06:36:46.0757692Z * [new branch] gh/guilhermeleobas/194/base -> origin/gh/guilhermeleobas/194/base 2025-07-17T06:36:46.0758269Z * [new branch] gh/guilhermeleobas/194/head -> origin/gh/guilhermeleobas/194/head 2025-07-17T06:36:46.0758892Z * [new branch] gh/guilhermeleobas/194/orig -> origin/gh/guilhermeleobas/194/orig 2025-07-17T06:36:46.0759515Z * [new branch] gh/guilhermeleobas/195/base -> origin/gh/guilhermeleobas/195/base 2025-07-17T06:36:46.0760097Z * [new branch] gh/guilhermeleobas/195/head -> origin/gh/guilhermeleobas/195/head 2025-07-17T06:36:46.0760851Z * [new branch] gh/guilhermeleobas/195/orig -> origin/gh/guilhermeleobas/195/orig 2025-07-17T06:36:46.0761432Z * [new branch] gh/guilhermeleobas/196/base -> origin/gh/guilhermeleobas/196/base 2025-07-17T06:36:46.0762008Z * [new branch] gh/guilhermeleobas/196/head -> origin/gh/guilhermeleobas/196/head 2025-07-17T06:36:46.0762600Z * [new branch] gh/guilhermeleobas/196/orig -> origin/gh/guilhermeleobas/196/orig 2025-07-17T06:36:46.0763179Z * [new branch] gh/guilhermeleobas/197/base -> origin/gh/guilhermeleobas/197/base 2025-07-17T06:36:46.0763747Z * [new branch] gh/guilhermeleobas/197/head -> origin/gh/guilhermeleobas/197/head 2025-07-17T06:36:46.0764322Z * [new branch] gh/guilhermeleobas/197/orig -> origin/gh/guilhermeleobas/197/orig 2025-07-17T06:36:46.0764939Z * [new branch] gh/guilhermeleobas/198/base -> origin/gh/guilhermeleobas/198/base 2025-07-17T06:36:46.0765700Z * [new branch] gh/guilhermeleobas/198/head -> origin/gh/guilhermeleobas/198/head 2025-07-17T06:36:46.0766376Z * [new branch] gh/guilhermeleobas/198/orig -> origin/gh/guilhermeleobas/198/orig 2025-07-17T06:36:46.0767040Z * [new branch] gh/guilhermeleobas/199/base -> origin/gh/guilhermeleobas/199/base 2025-07-17T06:36:46.0767667Z * [new branch] gh/guilhermeleobas/199/head -> origin/gh/guilhermeleobas/199/head 2025-07-17T06:36:46.0768339Z * [new branch] gh/guilhermeleobas/199/orig -> origin/gh/guilhermeleobas/199/orig 2025-07-17T06:36:46.0769006Z * [new branch] gh/guilhermeleobas/200/base -> origin/gh/guilhermeleobas/200/base 2025-07-17T06:36:46.0769629Z * [new branch] gh/guilhermeleobas/200/head -> origin/gh/guilhermeleobas/200/head 2025-07-17T06:36:46.0770288Z * [new branch] gh/guilhermeleobas/200/orig -> origin/gh/guilhermeleobas/200/orig 2025-07-17T06:36:46.0770964Z * [new branch] gh/guilhermeleobas/201/base -> origin/gh/guilhermeleobas/201/base 2025-07-17T06:36:46.0771578Z * [new branch] gh/guilhermeleobas/201/head -> origin/gh/guilhermeleobas/201/head 2025-07-17T06:36:46.0772246Z * [new branch] gh/guilhermeleobas/201/orig -> origin/gh/guilhermeleobas/201/orig 2025-07-17T06:36:46.0772908Z * [new branch] gh/guilhermeleobas/202/base -> origin/gh/guilhermeleobas/202/base 2025-07-17T06:36:46.0773558Z * [new branch] gh/guilhermeleobas/202/head -> origin/gh/guilhermeleobas/202/head 2025-07-17T06:36:46.0774199Z * [new branch] gh/guilhermeleobas/202/orig -> origin/gh/guilhermeleobas/202/orig 2025-07-17T06:36:46.0774863Z * [new branch] gh/guilhermeleobas/203/base -> origin/gh/guilhermeleobas/203/base 2025-07-17T06:36:46.0775525Z * [new branch] gh/guilhermeleobas/203/head -> origin/gh/guilhermeleobas/203/head 2025-07-17T06:36:46.0776147Z * [new branch] gh/guilhermeleobas/203/orig -> origin/gh/guilhermeleobas/203/orig 2025-07-17T06:36:46.0776820Z * [new branch] gh/guilhermeleobas/204/base -> origin/gh/guilhermeleobas/204/base 2025-07-17T06:36:46.0777484Z * [new branch] gh/guilhermeleobas/204/head -> origin/gh/guilhermeleobas/204/head 2025-07-17T06:36:46.0778095Z * [new branch] gh/guilhermeleobas/204/orig -> origin/gh/guilhermeleobas/204/orig 2025-07-17T06:36:46.0778764Z * [new branch] gh/guilhermeleobas/205/base -> origin/gh/guilhermeleobas/205/base 2025-07-17T06:36:46.0779423Z * [new branch] gh/guilhermeleobas/205/head -> origin/gh/guilhermeleobas/205/head 2025-07-17T06:36:46.0780045Z * [new branch] gh/guilhermeleobas/205/orig -> origin/gh/guilhermeleobas/205/orig 2025-07-17T06:36:46.0780713Z * [new branch] gh/guilhermeleobas/206/base -> origin/gh/guilhermeleobas/206/base 2025-07-17T06:36:46.0782107Z * [new branch] gh/guilhermeleobas/206/head -> origin/gh/guilhermeleobas/206/head 2025-07-17T06:36:46.0782749Z * [new branch] gh/guilhermeleobas/206/orig -> origin/gh/guilhermeleobas/206/orig 2025-07-17T06:36:46.0783423Z * [new branch] gh/guilhermeleobas/73/base -> origin/gh/guilhermeleobas/73/base 2025-07-17T06:36:46.0784099Z * [new branch] gh/guilhermeleobas/73/head -> origin/gh/guilhermeleobas/73/head 2025-07-17T06:36:46.1306257Z * [new branch] gh/guilhermeleobas/73/orig -> origin/gh/guilhermeleobas/73/orig 2025-07-17T06:36:46.1307112Z * [new branch] gh/henrylhtsang/100/base -> origin/gh/henrylhtsang/100/base 2025-07-17T06:36:46.1307670Z * [new branch] gh/henrylhtsang/100/head -> origin/gh/henrylhtsang/100/head 2025-07-17T06:36:46.1308240Z * [new branch] gh/henrylhtsang/100/orig -> origin/gh/henrylhtsang/100/orig 2025-07-17T06:36:46.1308778Z * [new branch] gh/henrylhtsang/101/base -> origin/gh/henrylhtsang/101/base 2025-07-17T06:36:46.1309495Z * [new branch] gh/henrylhtsang/101/head -> origin/gh/henrylhtsang/101/head 2025-07-17T06:36:46.1310033Z * [new branch] gh/henrylhtsang/101/orig -> origin/gh/henrylhtsang/101/orig 2025-07-17T06:36:46.1310573Z * [new branch] gh/henrylhtsang/102/base -> origin/gh/henrylhtsang/102/base 2025-07-17T06:36:46.1311114Z * [new branch] gh/henrylhtsang/102/head -> origin/gh/henrylhtsang/102/head 2025-07-17T06:36:46.1311649Z * [new branch] gh/henrylhtsang/102/orig -> origin/gh/henrylhtsang/102/orig 2025-07-17T06:36:46.1312195Z * [new branch] gh/henrylhtsang/103/base -> origin/gh/henrylhtsang/103/base 2025-07-17T06:36:46.1312729Z * [new branch] gh/henrylhtsang/103/head -> origin/gh/henrylhtsang/103/head 2025-07-17T06:36:46.1313266Z * [new branch] gh/henrylhtsang/103/orig -> origin/gh/henrylhtsang/103/orig 2025-07-17T06:36:46.1313818Z * [new branch] gh/henrylhtsang/104/base -> origin/gh/henrylhtsang/104/base 2025-07-17T06:36:46.1314344Z * [new branch] gh/henrylhtsang/104/head -> origin/gh/henrylhtsang/104/head 2025-07-17T06:36:46.1314882Z * [new branch] gh/henrylhtsang/104/orig -> origin/gh/henrylhtsang/104/orig 2025-07-17T06:36:46.1315488Z * [new branch] gh/henrylhtsang/105/base -> origin/gh/henrylhtsang/105/base 2025-07-17T06:36:46.1316038Z * [new branch] gh/henrylhtsang/105/head -> origin/gh/henrylhtsang/105/head 2025-07-17T06:36:46.1316780Z * [new branch] gh/henrylhtsang/105/orig -> origin/gh/henrylhtsang/105/orig 2025-07-17T06:36:46.1317814Z * [new branch] gh/henrylhtsang/106/base -> origin/gh/henrylhtsang/106/base 2025-07-17T06:36:46.1318539Z * [new branch] gh/henrylhtsang/106/head -> origin/gh/henrylhtsang/106/head 2025-07-17T06:36:46.1319079Z * [new branch] gh/henrylhtsang/106/orig -> origin/gh/henrylhtsang/106/orig 2025-07-17T06:36:46.1319632Z * [new branch] gh/henrylhtsang/107/base -> origin/gh/henrylhtsang/107/base 2025-07-17T06:36:46.1320166Z * [new branch] gh/henrylhtsang/107/head -> origin/gh/henrylhtsang/107/head 2025-07-17T06:36:46.1320708Z * [new branch] gh/henrylhtsang/107/orig -> origin/gh/henrylhtsang/107/orig 2025-07-17T06:36:46.1321256Z * [new branch] gh/henrylhtsang/108/base -> origin/gh/henrylhtsang/108/base 2025-07-17T06:36:46.1321784Z * [new branch] gh/henrylhtsang/108/head -> origin/gh/henrylhtsang/108/head 2025-07-17T06:36:46.1322326Z * [new branch] gh/henrylhtsang/108/orig -> origin/gh/henrylhtsang/108/orig 2025-07-17T06:36:46.1322854Z * [new branch] gh/henrylhtsang/109/base -> origin/gh/henrylhtsang/109/base 2025-07-17T06:36:46.1323393Z * [new branch] gh/henrylhtsang/109/head -> origin/gh/henrylhtsang/109/head 2025-07-17T06:36:46.1324074Z * [new branch] gh/henrylhtsang/109/orig -> origin/gh/henrylhtsang/109/orig 2025-07-17T06:36:46.1324614Z * [new branch] gh/henrylhtsang/110/base -> origin/gh/henrylhtsang/110/base 2025-07-17T06:36:46.1325165Z * [new branch] gh/henrylhtsang/110/head -> origin/gh/henrylhtsang/110/head 2025-07-17T06:36:46.1325704Z * [new branch] gh/henrylhtsang/110/orig -> origin/gh/henrylhtsang/110/orig 2025-07-17T06:36:46.1326252Z * [new branch] gh/henrylhtsang/111/base -> origin/gh/henrylhtsang/111/base 2025-07-17T06:36:46.1326799Z * [new branch] gh/henrylhtsang/111/head -> origin/gh/henrylhtsang/111/head 2025-07-17T06:36:46.1327336Z * [new branch] gh/henrylhtsang/111/orig -> origin/gh/henrylhtsang/111/orig 2025-07-17T06:36:46.1327873Z * [new branch] gh/henrylhtsang/112/base -> origin/gh/henrylhtsang/112/base 2025-07-17T06:36:46.1328411Z * [new branch] gh/henrylhtsang/112/head -> origin/gh/henrylhtsang/112/head 2025-07-17T06:36:46.1329029Z * [new branch] gh/henrylhtsang/112/orig -> origin/gh/henrylhtsang/112/orig 2025-07-17T06:36:46.1329575Z * [new branch] gh/henrylhtsang/113/base -> origin/gh/henrylhtsang/113/base 2025-07-17T06:36:46.1330110Z * [new branch] gh/henrylhtsang/113/head -> origin/gh/henrylhtsang/113/head 2025-07-17T06:36:46.1330645Z * [new branch] gh/henrylhtsang/113/orig -> origin/gh/henrylhtsang/113/orig 2025-07-17T06:36:46.1331186Z * [new branch] gh/henrylhtsang/114/base -> origin/gh/henrylhtsang/114/base 2025-07-17T06:36:46.1331729Z * [new branch] gh/henrylhtsang/114/head -> origin/gh/henrylhtsang/114/head 2025-07-17T06:36:46.1734453Z * [new branch] gh/henrylhtsang/114/orig -> origin/gh/henrylhtsang/114/orig 2025-07-17T06:36:46.1735028Z * [new branch] gh/henrylhtsang/115/base -> origin/gh/henrylhtsang/115/base 2025-07-17T06:36:46.1735712Z * [new branch] gh/henrylhtsang/115/head -> origin/gh/henrylhtsang/115/head 2025-07-17T06:36:46.1736733Z * [new branch] gh/henrylhtsang/115/orig -> origin/gh/henrylhtsang/115/orig 2025-07-17T06:36:46.1737298Z * [new branch] gh/henrylhtsang/116/base -> origin/gh/henrylhtsang/116/base 2025-07-17T06:36:46.1737837Z * [new branch] gh/henrylhtsang/116/head -> origin/gh/henrylhtsang/116/head 2025-07-17T06:36:46.1738364Z * [new branch] gh/henrylhtsang/116/orig -> origin/gh/henrylhtsang/116/orig 2025-07-17T06:36:46.1738901Z * [new branch] gh/henrylhtsang/117/base -> origin/gh/henrylhtsang/117/base 2025-07-17T06:36:46.1739432Z * [new branch] gh/henrylhtsang/117/head -> origin/gh/henrylhtsang/117/head 2025-07-17T06:36:46.1739967Z * [new branch] gh/henrylhtsang/117/orig -> origin/gh/henrylhtsang/117/orig 2025-07-17T06:36:46.1740509Z * [new branch] gh/henrylhtsang/118/base -> origin/gh/henrylhtsang/118/base 2025-07-17T06:36:46.1741034Z * [new branch] gh/henrylhtsang/118/head -> origin/gh/henrylhtsang/118/head 2025-07-17T06:36:46.1741746Z * [new branch] gh/henrylhtsang/118/orig -> origin/gh/henrylhtsang/118/orig 2025-07-17T06:36:46.1742701Z * [new branch] gh/henrylhtsang/119/base -> origin/gh/henrylhtsang/119/base 2025-07-17T06:36:46.1743247Z * [new branch] gh/henrylhtsang/119/head -> origin/gh/henrylhtsang/119/head 2025-07-17T06:36:46.1743780Z * [new branch] gh/henrylhtsang/119/orig -> origin/gh/henrylhtsang/119/orig 2025-07-17T06:36:46.1744308Z * [new branch] gh/henrylhtsang/120/base -> origin/gh/henrylhtsang/120/base 2025-07-17T06:36:46.1744845Z * [new branch] gh/henrylhtsang/120/head -> origin/gh/henrylhtsang/120/head 2025-07-17T06:36:46.1745525Z * [new branch] gh/henrylhtsang/120/orig -> origin/gh/henrylhtsang/120/orig 2025-07-17T06:36:46.1746075Z * [new branch] gh/henrylhtsang/121/base -> origin/gh/henrylhtsang/121/base 2025-07-17T06:36:46.1746616Z * [new branch] gh/henrylhtsang/121/head -> origin/gh/henrylhtsang/121/head 2025-07-17T06:36:46.1747156Z * [new branch] gh/henrylhtsang/121/orig -> origin/gh/henrylhtsang/121/orig 2025-07-17T06:36:46.1747696Z * [new branch] gh/henrylhtsang/122/base -> origin/gh/henrylhtsang/122/base 2025-07-17T06:36:46.1748233Z * [new branch] gh/henrylhtsang/122/head -> origin/gh/henrylhtsang/122/head 2025-07-17T06:36:46.1748771Z * [new branch] gh/henrylhtsang/122/orig -> origin/gh/henrylhtsang/122/orig 2025-07-17T06:36:46.1749308Z * [new branch] gh/henrylhtsang/123/base -> origin/gh/henrylhtsang/123/base 2025-07-17T06:36:46.1749840Z * [new branch] gh/henrylhtsang/123/head -> origin/gh/henrylhtsang/123/head 2025-07-17T06:36:46.1750977Z * [new branch] gh/henrylhtsang/123/orig -> origin/gh/henrylhtsang/123/orig 2025-07-17T06:36:46.1751523Z * [new branch] gh/henrylhtsang/97/base -> origin/gh/henrylhtsang/97/base 2025-07-17T06:36:46.1752062Z * [new branch] gh/henrylhtsang/97/head -> origin/gh/henrylhtsang/97/head 2025-07-17T06:36:46.1752821Z * [new branch] gh/henrylhtsang/97/orig -> origin/gh/henrylhtsang/97/orig 2025-07-17T06:36:46.1753770Z * [new branch] gh/henrylhtsang/98/base -> origin/gh/henrylhtsang/98/base 2025-07-17T06:36:46.1754303Z * [new branch] gh/henrylhtsang/98/head -> origin/gh/henrylhtsang/98/head 2025-07-17T06:36:46.1754825Z * [new branch] gh/henrylhtsang/98/orig -> origin/gh/henrylhtsang/98/orig 2025-07-17T06:36:46.1755432Z * [new branch] gh/henrylhtsang/99/base -> origin/gh/henrylhtsang/99/base 2025-07-17T06:36:46.1755976Z * [new branch] gh/henrylhtsang/99/head -> origin/gh/henrylhtsang/99/head 2025-07-17T06:36:46.1756500Z * [new branch] gh/henrylhtsang/99/orig -> origin/gh/henrylhtsang/99/orig 2025-07-17T06:36:46.1757004Z * [new branch] gh/int3/97/base -> origin/gh/int3/97/base 2025-07-17T06:36:46.1757454Z * [new branch] gh/int3/97/head -> origin/gh/int3/97/head 2025-07-17T06:36:46.1757927Z * [new branch] gh/isuruf/101/base -> origin/gh/isuruf/101/base 2025-07-17T06:36:46.1758401Z * [new branch] gh/isuruf/101/head -> origin/gh/isuruf/101/head 2025-07-17T06:36:46.1758877Z * [new branch] gh/isuruf/105/base -> origin/gh/isuruf/105/base 2025-07-17T06:36:46.1759352Z * [new branch] gh/isuruf/105/head -> origin/gh/isuruf/105/head 2025-07-17T06:36:46.1759815Z * [new branch] gh/isuruf/105/orig -> origin/gh/isuruf/105/orig 2025-07-17T06:36:46.1760296Z * [new branch] gh/isuruf/110/base -> origin/gh/isuruf/110/base 2025-07-17T06:36:46.2390188Z * [new branch] gh/isuruf/110/head -> origin/gh/isuruf/110/head 2025-07-17T06:36:46.2390753Z * [new branch] gh/isuruf/110/orig -> origin/gh/isuruf/110/orig 2025-07-17T06:36:46.2391238Z * [new branch] gh/isuruf/116/base -> origin/gh/isuruf/116/base 2025-07-17T06:36:46.2391708Z * [new branch] gh/isuruf/116/head -> origin/gh/isuruf/116/head 2025-07-17T06:36:46.2392565Z * [new branch] gh/isuruf/116/orig -> origin/gh/isuruf/116/orig 2025-07-17T06:36:46.2393499Z * [new branch] gh/isuruf/141/base -> origin/gh/isuruf/141/base 2025-07-17T06:36:46.2394029Z * [new branch] gh/isuruf/141/head -> origin/gh/isuruf/141/head 2025-07-17T06:36:46.2394505Z * [new branch] gh/isuruf/141/orig -> origin/gh/isuruf/141/orig 2025-07-17T06:36:46.2395200Z * [new branch] gh/isuruf/143/base -> origin/gh/isuruf/143/base 2025-07-17T06:36:46.2395676Z * [new branch] gh/isuruf/143/head -> origin/gh/isuruf/143/head 2025-07-17T06:36:46.2396171Z * [new branch] gh/isuruf/143/orig -> origin/gh/isuruf/143/orig 2025-07-17T06:36:46.2396647Z * [new branch] gh/isuruf/145/base -> origin/gh/isuruf/145/base 2025-07-17T06:36:46.2397125Z * [new branch] gh/isuruf/145/head -> origin/gh/isuruf/145/head 2025-07-17T06:36:46.2397600Z * [new branch] gh/isuruf/145/orig -> origin/gh/isuruf/145/orig 2025-07-17T06:36:46.2398074Z * [new branch] gh/isuruf/147/base -> origin/gh/isuruf/147/base 2025-07-17T06:36:46.2398543Z * [new branch] gh/isuruf/147/head -> origin/gh/isuruf/147/head 2025-07-17T06:36:46.2399017Z * [new branch] gh/isuruf/147/orig -> origin/gh/isuruf/147/orig 2025-07-17T06:36:46.2399593Z * [new branch] gh/isuruf/148/base -> origin/gh/isuruf/148/base 2025-07-17T06:36:46.2400068Z * [new branch] gh/isuruf/148/head -> origin/gh/isuruf/148/head 2025-07-17T06:36:46.2400551Z * [new branch] gh/isuruf/148/orig -> origin/gh/isuruf/148/orig 2025-07-17T06:36:46.2401040Z * [new branch] gh/jamesjwu/140/base -> origin/gh/jamesjwu/140/base 2025-07-17T06:36:46.2401544Z * [new branch] gh/jamesjwu/140/head -> origin/gh/jamesjwu/140/head 2025-07-17T06:36:46.2402047Z * [new branch] gh/jamesjwu/140/orig -> origin/gh/jamesjwu/140/orig 2025-07-17T06:36:46.2402535Z * [new branch] gh/jamesjwu/150/base -> origin/gh/jamesjwu/150/base 2025-07-17T06:36:46.2403041Z * [new branch] gh/jamesjwu/150/head -> origin/gh/jamesjwu/150/head 2025-07-17T06:36:46.2403535Z * [new branch] gh/jamesjwu/150/orig -> origin/gh/jamesjwu/150/orig 2025-07-17T06:36:46.2404034Z * [new branch] gh/jamesjwu/154/base -> origin/gh/jamesjwu/154/base 2025-07-17T06:36:46.2404527Z * [new branch] gh/jamesjwu/154/head -> origin/gh/jamesjwu/154/head 2025-07-17T06:36:46.2405011Z * [new branch] gh/jamesjwu/154/orig -> origin/gh/jamesjwu/154/orig 2025-07-17T06:36:46.2405508Z * [new branch] gh/jamesjwu/155/base -> origin/gh/jamesjwu/155/base 2025-07-17T06:36:46.2405996Z * [new branch] gh/jamesjwu/155/head -> origin/gh/jamesjwu/155/head 2025-07-17T06:36:46.2406494Z * [new branch] gh/jamesjwu/155/orig -> origin/gh/jamesjwu/155/orig 2025-07-17T06:36:46.2406981Z * [new branch] gh/jamesjwu/159/base -> origin/gh/jamesjwu/159/base 2025-07-17T06:36:46.2407475Z * [new branch] gh/jamesjwu/159/head -> origin/gh/jamesjwu/159/head 2025-07-17T06:36:46.2407973Z * [new branch] gh/jamesjwu/159/orig -> origin/gh/jamesjwu/159/orig 2025-07-17T06:36:46.2408461Z * [new branch] gh/jamesjwu/163/base -> origin/gh/jamesjwu/163/base 2025-07-17T06:36:46.2408961Z * [new branch] gh/jamesjwu/163/head -> origin/gh/jamesjwu/163/head 2025-07-17T06:36:46.2409445Z * [new branch] gh/jamesjwu/163/orig -> origin/gh/jamesjwu/163/orig 2025-07-17T06:36:46.2409939Z * [new branch] gh/jamesjwu/164/base -> origin/gh/jamesjwu/164/base 2025-07-17T06:36:46.2410434Z * [new branch] gh/jamesjwu/164/head -> origin/gh/jamesjwu/164/head 2025-07-17T06:36:46.2410918Z * [new branch] gh/jamesjwu/164/orig -> origin/gh/jamesjwu/164/orig 2025-07-17T06:36:46.2411410Z * [new branch] gh/jamesjwu/165/base -> origin/gh/jamesjwu/165/base 2025-07-17T06:36:46.2411894Z * [new branch] gh/jamesjwu/165/head -> origin/gh/jamesjwu/165/head 2025-07-17T06:36:46.2412483Z * [new branch] gh/jamesjwu/165/orig -> origin/gh/jamesjwu/165/orig 2025-07-17T06:36:46.2412988Z * [new branch] gh/jamesjwu/166/base -> origin/gh/jamesjwu/166/base 2025-07-17T06:36:46.2413484Z * [new branch] gh/jamesjwu/166/head -> origin/gh/jamesjwu/166/head 2025-07-17T06:36:46.2413967Z * [new branch] gh/jamesjwu/166/orig -> origin/gh/jamesjwu/166/orig 2025-07-17T06:36:46.2840118Z * [new branch] gh/jamesjwu/167/base -> origin/gh/jamesjwu/167/base 2025-07-17T06:36:46.2840670Z * [new branch] gh/jamesjwu/167/head -> origin/gh/jamesjwu/167/head 2025-07-17T06:36:46.2841163Z * [new branch] gh/jamesjwu/167/orig -> origin/gh/jamesjwu/167/orig 2025-07-17T06:36:46.2841657Z * [new branch] gh/jamesjwu/168/base -> origin/gh/jamesjwu/168/base 2025-07-17T06:36:46.2842154Z * [new branch] gh/jamesjwu/168/head -> origin/gh/jamesjwu/168/head 2025-07-17T06:36:46.2842787Z * [new branch] gh/jamesjwu/168/orig -> origin/gh/jamesjwu/168/orig 2025-07-17T06:36:46.2843285Z * [new branch] gh/jamesjwu/169/base -> origin/gh/jamesjwu/169/base 2025-07-17T06:36:46.2843767Z * [new branch] gh/jamesjwu/169/head -> origin/gh/jamesjwu/169/head 2025-07-17T06:36:46.2844263Z * [new branch] gh/jamesjwu/169/orig -> origin/gh/jamesjwu/169/orig 2025-07-17T06:36:46.2844745Z * [new branch] gh/jamesjwu/170/base -> origin/gh/jamesjwu/170/base 2025-07-17T06:36:46.2845236Z * [new branch] gh/jamesjwu/170/head -> origin/gh/jamesjwu/170/head 2025-07-17T06:36:46.2845731Z * [new branch] gh/jamesjwu/170/orig -> origin/gh/jamesjwu/170/orig 2025-07-17T06:36:46.2846213Z * [new branch] gh/jamesjwu/171/base -> origin/gh/jamesjwu/171/base 2025-07-17T06:36:46.2846709Z * [new branch] gh/jamesjwu/171/head -> origin/gh/jamesjwu/171/head 2025-07-17T06:36:46.2847201Z * [new branch] gh/jamesjwu/171/orig -> origin/gh/jamesjwu/171/orig 2025-07-17T06:36:46.2847691Z * [new branch] gh/jamesjwu/172/base -> origin/gh/jamesjwu/172/base 2025-07-17T06:36:46.2848178Z * [new branch] gh/jamesjwu/172/head -> origin/gh/jamesjwu/172/head 2025-07-17T06:36:46.2848665Z * [new branch] gh/jamesjwu/172/orig -> origin/gh/jamesjwu/172/orig 2025-07-17T06:36:46.2849154Z * [new branch] gh/jamesjwu/173/base -> origin/gh/jamesjwu/173/base 2025-07-17T06:36:46.2849639Z * [new branch] gh/jamesjwu/173/head -> origin/gh/jamesjwu/173/head 2025-07-17T06:36:46.2850129Z * [new branch] gh/jamesjwu/173/orig -> origin/gh/jamesjwu/173/orig 2025-07-17T06:36:46.2850615Z * [new branch] gh/jamesjwu/174/base -> origin/gh/jamesjwu/174/base 2025-07-17T06:36:46.2851111Z * [new branch] gh/jamesjwu/174/head -> origin/gh/jamesjwu/174/head 2025-07-17T06:36:46.2851615Z * [new branch] gh/jamesjwu/174/orig -> origin/gh/jamesjwu/174/orig 2025-07-17T06:36:46.2852111Z * [new branch] gh/jamesjwu/52/base -> origin/gh/jamesjwu/52/base 2025-07-17T06:36:46.2852598Z * [new branch] gh/jamesjwu/52/head -> origin/gh/jamesjwu/52/head 2025-07-17T06:36:46.2853076Z * [new branch] gh/jamesjwu/53/base -> origin/gh/jamesjwu/53/base 2025-07-17T06:36:46.2853562Z * [new branch] gh/jamesjwu/53/head -> origin/gh/jamesjwu/53/head 2025-07-17T06:36:46.2854047Z * [new branch] gh/jamesjwu/54/base -> origin/gh/jamesjwu/54/base 2025-07-17T06:36:46.2854523Z * [new branch] gh/jamesjwu/54/head -> origin/gh/jamesjwu/54/head 2025-07-17T06:36:46.2855112Z * [new branch] gh/jamesjwu/55/base -> origin/gh/jamesjwu/55/base 2025-07-17T06:36:46.2855599Z * [new branch] gh/jamesjwu/55/head -> origin/gh/jamesjwu/55/head 2025-07-17T06:36:46.2856092Z * [new branch] gh/jamesjwu/56/base -> origin/gh/jamesjwu/56/base 2025-07-17T06:36:46.2856586Z * [new branch] gh/jamesjwu/56/head -> origin/gh/jamesjwu/56/head 2025-07-17T06:36:46.2857071Z * [new branch] gh/jamesjwu/57/base -> origin/gh/jamesjwu/57/base 2025-07-17T06:36:46.2857561Z * [new branch] gh/jamesjwu/57/head -> origin/gh/jamesjwu/57/head 2025-07-17T06:36:46.2858044Z * [new branch] gh/jamesjwu/58/base -> origin/gh/jamesjwu/58/base 2025-07-17T06:36:46.2858526Z * [new branch] gh/jamesjwu/58/head -> origin/gh/jamesjwu/58/head 2025-07-17T06:36:46.2859015Z * [new branch] gh/jamesjwu/59/base -> origin/gh/jamesjwu/59/base 2025-07-17T06:36:46.2859506Z * [new branch] gh/jamesjwu/59/head -> origin/gh/jamesjwu/59/head 2025-07-17T06:36:46.2860065Z * [new branch] gh/jamesjwu/60/base -> origin/gh/jamesjwu/60/base 2025-07-17T06:36:46.2860546Z * [new branch] gh/jamesjwu/60/head -> origin/gh/jamesjwu/60/head 2025-07-17T06:36:46.2861031Z * [new branch] gh/jamesjwu/61/base -> origin/gh/jamesjwu/61/base 2025-07-17T06:36:46.2861505Z * [new branch] gh/jamesjwu/61/head -> origin/gh/jamesjwu/61/head 2025-07-17T06:36:46.2861997Z * [new branch] gh/jamesjwu/62/base -> origin/gh/jamesjwu/62/base 2025-07-17T06:36:46.2862482Z * [new branch] gh/jamesjwu/62/head -> origin/gh/jamesjwu/62/head 2025-07-17T06:36:46.2862964Z * [new branch] gh/jamesjwu/63/base -> origin/gh/jamesjwu/63/base 2025-07-17T06:36:46.3458917Z * [new branch] gh/jamesjwu/63/head -> origin/gh/jamesjwu/63/head 2025-07-17T06:36:46.3459480Z * [new branch] gh/jamesjwu/64/base -> origin/gh/jamesjwu/64/base 2025-07-17T06:36:46.3459979Z * [new branch] gh/jamesjwu/64/head -> origin/gh/jamesjwu/64/head 2025-07-17T06:36:46.3460477Z * [new branch] gh/jamesjwu/65/base -> origin/gh/jamesjwu/65/base 2025-07-17T06:36:46.3460962Z * [new branch] gh/jamesjwu/65/head -> origin/gh/jamesjwu/65/head 2025-07-17T06:36:46.3461451Z * [new branch] gh/janeyx99/165/base -> origin/gh/janeyx99/165/base 2025-07-17T06:36:46.3461933Z * [new branch] gh/janeyx99/165/head -> origin/gh/janeyx99/165/head 2025-07-17T06:36:46.3462430Z * [new branch] gh/janeyx99/165/orig -> origin/gh/janeyx99/165/orig 2025-07-17T06:36:46.3462914Z * [new branch] gh/janeyx99/201/base -> origin/gh/janeyx99/201/base 2025-07-17T06:36:46.3463392Z * [new branch] gh/janeyx99/201/head -> origin/gh/janeyx99/201/head 2025-07-17T06:36:46.3463894Z * [new branch] gh/janeyx99/201/orig -> origin/gh/janeyx99/201/orig 2025-07-17T06:36:46.3464371Z * [new branch] gh/janeyx99/225/base -> origin/gh/janeyx99/225/base 2025-07-17T06:36:46.3464864Z * [new branch] gh/janeyx99/225/head -> origin/gh/janeyx99/225/head 2025-07-17T06:36:46.3465352Z * [new branch] gh/janeyx99/225/orig -> origin/gh/janeyx99/225/orig 2025-07-17T06:36:46.3465827Z * [new branch] gh/janeyx99/256/base -> origin/gh/janeyx99/256/base 2025-07-17T06:36:46.3466327Z * [new branch] gh/janeyx99/256/head -> origin/gh/janeyx99/256/head 2025-07-17T06:36:46.3466819Z * [new branch] gh/janeyx99/256/orig -> origin/gh/janeyx99/256/orig 2025-07-17T06:36:46.3467300Z * [new branch] gh/janeyx99/257/base -> origin/gh/janeyx99/257/base 2025-07-17T06:36:46.3467956Z * [new branch] gh/janeyx99/257/head -> origin/gh/janeyx99/257/head 2025-07-17T06:36:46.3468448Z * [new branch] gh/janeyx99/257/orig -> origin/gh/janeyx99/257/orig 2025-07-17T06:36:46.3468938Z * [new branch] gh/janeyx99/259/base -> origin/gh/janeyx99/259/base 2025-07-17T06:36:46.3469418Z * [new branch] gh/janeyx99/259/head -> origin/gh/janeyx99/259/head 2025-07-17T06:36:46.3469911Z * [new branch] gh/janeyx99/259/orig -> origin/gh/janeyx99/259/orig 2025-07-17T06:36:46.3470396Z * [new branch] gh/janeyx99/260/base -> origin/gh/janeyx99/260/base 2025-07-17T06:36:46.3470881Z * [new branch] gh/janeyx99/260/head -> origin/gh/janeyx99/260/head 2025-07-17T06:36:46.3471461Z * [new branch] gh/janeyx99/260/orig -> origin/gh/janeyx99/260/orig 2025-07-17T06:36:46.3471949Z * [new branch] gh/janeyx99/261/base -> origin/gh/janeyx99/261/base 2025-07-17T06:36:46.3472574Z * [new branch] gh/janeyx99/261/head -> origin/gh/janeyx99/261/head 2025-07-17T06:36:46.3473068Z * [new branch] gh/janeyx99/261/orig -> origin/gh/janeyx99/261/orig 2025-07-17T06:36:46.3473552Z * [new branch] gh/janeyx99/262/base -> origin/gh/janeyx99/262/base 2025-07-17T06:36:46.3474202Z * [new branch] gh/janeyx99/262/head -> origin/gh/janeyx99/262/head 2025-07-17T06:36:46.3474689Z * [new branch] gh/janeyx99/263/base -> origin/gh/janeyx99/263/base 2025-07-17T06:36:46.3475251Z * [new branch] gh/janeyx99/263/head -> origin/gh/janeyx99/263/head 2025-07-17T06:36:46.3475734Z * [new branch] gh/janeyx99/264/base -> origin/gh/janeyx99/264/base 2025-07-17T06:36:46.3476231Z * [new branch] gh/janeyx99/264/head -> origin/gh/janeyx99/264/head 2025-07-17T06:36:46.3476726Z * [new branch] gh/janeyx99/265/base -> origin/gh/janeyx99/265/base 2025-07-17T06:36:46.3477314Z * [new branch] gh/janeyx99/265/head -> origin/gh/janeyx99/265/head 2025-07-17T06:36:46.3477809Z * [new branch] gh/janeyx99/266/base -> origin/gh/janeyx99/266/base 2025-07-17T06:36:46.3478301Z * [new branch] gh/janeyx99/266/head -> origin/gh/janeyx99/266/head 2025-07-17T06:36:46.3478796Z * [new branch] gh/janeyx99/266/orig -> origin/gh/janeyx99/266/orig 2025-07-17T06:36:46.3479290Z * [new branch] gh/janeyx99/267/base -> origin/gh/janeyx99/267/base 2025-07-17T06:36:46.3479775Z * [new branch] gh/janeyx99/267/head -> origin/gh/janeyx99/267/head 2025-07-17T06:36:46.3480261Z * [new branch] gh/janeyx99/267/orig -> origin/gh/janeyx99/267/orig 2025-07-17T06:36:46.3480739Z * [new branch] gh/janeyx99/268/base -> origin/gh/janeyx99/268/base 2025-07-17T06:36:46.3481242Z * [new branch] gh/janeyx99/268/head -> origin/gh/janeyx99/268/head 2025-07-17T06:36:46.3481735Z * [new branch] gh/janeyx99/268/orig -> origin/gh/janeyx99/268/orig 2025-07-17T06:36:46.3930548Z * [new branch] gh/janeyx99/269/base -> origin/gh/janeyx99/269/base 2025-07-17T06:36:46.3931095Z * [new branch] gh/janeyx99/269/head -> origin/gh/janeyx99/269/head 2025-07-17T06:36:46.3931601Z * [new branch] gh/janeyx99/269/orig -> origin/gh/janeyx99/269/orig 2025-07-17T06:36:46.3932092Z * [new branch] gh/janeyx99/270/base -> origin/gh/janeyx99/270/base 2025-07-17T06:36:46.3932584Z * [new branch] gh/janeyx99/270/head -> origin/gh/janeyx99/270/head 2025-07-17T06:36:46.3933060Z * [new branch] gh/janeyx99/270/orig -> origin/gh/janeyx99/270/orig 2025-07-17T06:36:46.3933550Z * [new branch] gh/janeyx99/271/base -> origin/gh/janeyx99/271/base 2025-07-17T06:36:46.3934190Z * [new branch] gh/janeyx99/271/head -> origin/gh/janeyx99/271/head 2025-07-17T06:36:46.3934689Z * [new branch] gh/janeyx99/271/orig -> origin/gh/janeyx99/271/orig 2025-07-17T06:36:46.3935190Z * [new branch] gh/janeyx99/272/base -> origin/gh/janeyx99/272/base 2025-07-17T06:36:46.3935671Z * [new branch] gh/janeyx99/272/head -> origin/gh/janeyx99/272/head 2025-07-17T06:36:46.3936156Z * [new branch] gh/janeyx99/272/orig -> origin/gh/janeyx99/272/orig 2025-07-17T06:36:46.3936640Z * [new branch] gh/janeyx99/273/base -> origin/gh/janeyx99/273/base 2025-07-17T06:36:46.3937127Z * [new branch] gh/janeyx99/273/head -> origin/gh/janeyx99/273/head 2025-07-17T06:36:46.3937611Z * [new branch] gh/janeyx99/273/orig -> origin/gh/janeyx99/273/orig 2025-07-17T06:36:46.3938097Z * [new branch] gh/janeyx99/274/base -> origin/gh/janeyx99/274/base 2025-07-17T06:36:46.3938777Z * [new branch] gh/janeyx99/274/head -> origin/gh/janeyx99/274/head 2025-07-17T06:36:46.3939260Z * [new branch] gh/janeyx99/274/orig -> origin/gh/janeyx99/274/orig 2025-07-17T06:36:46.3939748Z * [new branch] gh/janeyx99/275/base -> origin/gh/janeyx99/275/base 2025-07-17T06:36:46.3940238Z * [new branch] gh/janeyx99/275/head -> origin/gh/janeyx99/275/head 2025-07-17T06:36:46.3940715Z * [new branch] gh/janeyx99/275/orig -> origin/gh/janeyx99/275/orig 2025-07-17T06:36:46.3941204Z * [new branch] gh/janeyx99/276/base -> origin/gh/janeyx99/276/base 2025-07-17T06:36:46.3941686Z * [new branch] gh/janeyx99/276/head -> origin/gh/janeyx99/276/head 2025-07-17T06:36:46.3942183Z * [new branch] gh/janeyx99/276/orig -> origin/gh/janeyx99/276/orig 2025-07-17T06:36:46.3942671Z * [new branch] gh/janeyx99/277/base -> origin/gh/janeyx99/277/base 2025-07-17T06:36:46.3943149Z * [new branch] gh/janeyx99/277/head -> origin/gh/janeyx99/277/head 2025-07-17T06:36:46.3943633Z * [new branch] gh/janeyx99/277/orig -> origin/gh/janeyx99/277/orig 2025-07-17T06:36:46.3944111Z * [new branch] gh/janeyx99/278/base -> origin/gh/janeyx99/278/base 2025-07-17T06:36:46.3944595Z * [new branch] gh/janeyx99/278/head -> origin/gh/janeyx99/278/head 2025-07-17T06:36:46.3945071Z * [new branch] gh/janeyx99/278/orig -> origin/gh/janeyx99/278/orig 2025-07-17T06:36:46.3945561Z * [new branch] gh/janeyx99/279/base -> origin/gh/janeyx99/279/base 2025-07-17T06:36:46.3946044Z * [new branch] gh/janeyx99/279/head -> origin/gh/janeyx99/279/head 2025-07-17T06:36:46.3946526Z * [new branch] gh/janeyx99/279/orig -> origin/gh/janeyx99/279/orig 2025-07-17T06:36:46.3947015Z * [new branch] gh/janeyx99/280/base -> origin/gh/janeyx99/280/base 2025-07-17T06:36:46.3947493Z * [new branch] gh/janeyx99/280/head -> origin/gh/janeyx99/280/head 2025-07-17T06:36:46.3947978Z * [new branch] gh/janeyx99/280/orig -> origin/gh/janeyx99/280/orig 2025-07-17T06:36:46.3948464Z * [new branch] gh/janeyx99/88/base -> origin/gh/janeyx99/88/base 2025-07-17T06:36:46.3948946Z * [new branch] gh/janeyx99/88/head -> origin/gh/janeyx99/88/head 2025-07-17T06:36:46.3949426Z * [new branch] gh/janeyx99/88/orig -> origin/gh/janeyx99/88/orig 2025-07-17T06:36:46.3949898Z * [new branch] gh/jansel/360/base -> origin/gh/jansel/360/base 2025-07-17T06:36:46.3950375Z * [new branch] gh/jansel/360/head -> origin/gh/jansel/360/head 2025-07-17T06:36:46.3950852Z * [new branch] gh/jansel/451/base -> origin/gh/jansel/451/base 2025-07-17T06:36:46.3951408Z * [new branch] gh/jansel/451/head -> origin/gh/jansel/451/head 2025-07-17T06:36:46.3951889Z * [new branch] gh/jansel/451/orig -> origin/gh/jansel/451/orig 2025-07-17T06:36:46.3952354Z * [new branch] gh/jansel/462/base -> origin/gh/jansel/462/base 2025-07-17T06:36:46.3952834Z * [new branch] gh/jansel/462/head -> origin/gh/jansel/462/head 2025-07-17T06:36:46.3953311Z * [new branch] gh/jansel/462/orig -> origin/gh/jansel/462/orig 2025-07-17T06:36:46.4525578Z * [new branch] gh/jansel/513/base -> origin/gh/jansel/513/base 2025-07-17T06:36:46.4526123Z * [new branch] gh/jansel/513/head -> origin/gh/jansel/513/head 2025-07-17T06:36:46.4526598Z * [new branch] gh/jansel/513/orig -> origin/gh/jansel/513/orig 2025-07-17T06:36:46.4527080Z * [new branch] gh/jansel/519/base -> origin/gh/jansel/519/base 2025-07-17T06:36:46.4527729Z * [new branch] gh/jansel/519/head -> origin/gh/jansel/519/head 2025-07-17T06:36:46.4528200Z * [new branch] gh/jansel/519/orig -> origin/gh/jansel/519/orig 2025-07-17T06:36:46.4528743Z * [new branch] gh/jansel/520/base -> origin/gh/jansel/520/base 2025-07-17T06:36:46.4529211Z * [new branch] gh/jansel/520/head -> origin/gh/jansel/520/head 2025-07-17T06:36:46.4529685Z * [new branch] gh/jansel/520/orig -> origin/gh/jansel/520/orig 2025-07-17T06:36:46.4530167Z * [new branch] gh/jansel/521/base -> origin/gh/jansel/521/base 2025-07-17T06:36:46.4530637Z * [new branch] gh/jansel/521/head -> origin/gh/jansel/521/head 2025-07-17T06:36:46.4531117Z * [new branch] gh/jansel/521/orig -> origin/gh/jansel/521/orig 2025-07-17T06:36:46.4531581Z * [new branch] gh/jansel/522/base -> origin/gh/jansel/522/base 2025-07-17T06:36:46.4532060Z * [new branch] gh/jansel/522/head -> origin/gh/jansel/522/head 2025-07-17T06:36:46.4532542Z * [new branch] gh/jansel/522/orig -> origin/gh/jansel/522/orig 2025-07-17T06:36:46.4533010Z * [new branch] gh/jansel/523/base -> origin/gh/jansel/523/base 2025-07-17T06:36:46.4533478Z * [new branch] gh/jansel/523/head -> origin/gh/jansel/523/head 2025-07-17T06:36:46.4533949Z * [new branch] gh/jansel/523/orig -> origin/gh/jansel/523/orig 2025-07-17T06:36:46.4534425Z * [new branch] gh/jansel/524/base -> origin/gh/jansel/524/base 2025-07-17T06:36:46.4534902Z * [new branch] gh/jansel/524/head -> origin/gh/jansel/524/head 2025-07-17T06:36:46.4535370Z * [new branch] gh/jansel/524/orig -> origin/gh/jansel/524/orig 2025-07-17T06:36:46.4535853Z * [new branch] gh/jansel/525/base -> origin/gh/jansel/525/base 2025-07-17T06:36:46.4536320Z * [new branch] gh/jansel/525/head -> origin/gh/jansel/525/head 2025-07-17T06:36:46.4536799Z * [new branch] gh/jansel/525/orig -> origin/gh/jansel/525/orig 2025-07-17T06:36:46.4537263Z * [new branch] gh/jansel/526/base -> origin/gh/jansel/526/base 2025-07-17T06:36:46.4537831Z * [new branch] gh/jansel/526/head -> origin/gh/jansel/526/head 2025-07-17T06:36:46.4538313Z * [new branch] gh/jansel/526/orig -> origin/gh/jansel/526/orig 2025-07-17T06:36:46.4538782Z * [new branch] gh/jansel/527/base -> origin/gh/jansel/527/base 2025-07-17T06:36:46.4539261Z * [new branch] gh/jansel/527/head -> origin/gh/jansel/527/head 2025-07-17T06:36:46.4539731Z * [new branch] gh/jansel/527/orig -> origin/gh/jansel/527/orig 2025-07-17T06:36:46.4540336Z * [new branch] gh/jansel/528/base -> origin/gh/jansel/528/base 2025-07-17T06:36:46.4540827Z * [new branch] gh/jansel/528/head -> origin/gh/jansel/528/head 2025-07-17T06:36:46.4541292Z * [new branch] gh/jansel/528/orig -> origin/gh/jansel/528/orig 2025-07-17T06:36:46.4541831Z * [new branch] gh/jansel/529/base -> origin/gh/jansel/529/base 2025-07-17T06:36:46.4542301Z * [new branch] gh/jansel/529/head -> origin/gh/jansel/529/head 2025-07-17T06:36:46.4542775Z * [new branch] gh/jansel/529/orig -> origin/gh/jansel/529/orig 2025-07-17T06:36:46.4543255Z * [new branch] gh/jansel/530/base -> origin/gh/jansel/530/base 2025-07-17T06:36:46.4543725Z * [new branch] gh/jansel/530/head -> origin/gh/jansel/530/head 2025-07-17T06:36:46.4544211Z * [new branch] gh/jansel/530/orig -> origin/gh/jansel/530/orig 2025-07-17T06:36:46.4544765Z * [new branch] gh/jansel/531/base -> origin/gh/jansel/531/base 2025-07-17T06:36:46.4545253Z * [new branch] gh/jansel/531/head -> origin/gh/jansel/531/head 2025-07-17T06:36:46.4545733Z * [new branch] gh/jansel/531/orig -> origin/gh/jansel/531/orig 2025-07-17T06:36:46.4546216Z * [new branch] gh/jansel/532/base -> origin/gh/jansel/532/base 2025-07-17T06:36:46.4546704Z * [new branch] gh/jansel/532/head -> origin/gh/jansel/532/head 2025-07-17T06:36:46.4547175Z * [new branch] gh/jansel/532/orig -> origin/gh/jansel/532/orig 2025-07-17T06:36:46.4547661Z * [new branch] gh/jansel/533/base -> origin/gh/jansel/533/base 2025-07-17T06:36:46.4548124Z * [new branch] gh/jansel/533/head -> origin/gh/jansel/533/head 2025-07-17T06:36:46.4548599Z * [new branch] gh/jansel/533/orig -> origin/gh/jansel/533/orig 2025-07-17T06:36:46.5120915Z * [new branch] gh/jbschlosser/226/base -> origin/gh/jbschlosser/226/base 2025-07-17T06:36:46.5121514Z * [new branch] gh/jbschlosser/226/head -> origin/gh/jbschlosser/226/head 2025-07-17T06:36:46.5122050Z * [new branch] gh/jbschlosser/226/orig -> origin/gh/jbschlosser/226/orig 2025-07-17T06:36:46.5122583Z * [new branch] gh/jbschlosser/239/base -> origin/gh/jbschlosser/239/base 2025-07-17T06:36:46.5123109Z * [new branch] gh/jbschlosser/239/head -> origin/gh/jbschlosser/239/head 2025-07-17T06:36:46.5123635Z * [new branch] gh/jbschlosser/239/orig -> origin/gh/jbschlosser/239/orig 2025-07-17T06:36:46.5124306Z * [new branch] gh/jbschlosser/247/base -> origin/gh/jbschlosser/247/base 2025-07-17T06:36:46.5125300Z * [new branch] gh/jbschlosser/247/head -> origin/gh/jbschlosser/247/head 2025-07-17T06:36:46.5125884Z * [new branch] gh/jbschlosser/247/orig -> origin/gh/jbschlosser/247/orig 2025-07-17T06:36:46.5126413Z * [new branch] gh/jbschlosser/248/base -> origin/gh/jbschlosser/248/base 2025-07-17T06:36:46.5126939Z * [new branch] gh/jbschlosser/248/head -> origin/gh/jbschlosser/248/head 2025-07-17T06:36:46.5127467Z * [new branch] gh/jbschlosser/248/orig -> origin/gh/jbschlosser/248/orig 2025-07-17T06:36:46.5127980Z * [new branch] gh/jerryzh168/1/base -> origin/gh/jerryzh168/1/base 2025-07-17T06:36:46.5128477Z * [new branch] gh/jerryzh168/1/head -> origin/gh/jerryzh168/1/head 2025-07-17T06:36:46.5128962Z * [new branch] gh/jerryzh168/1/orig -> origin/gh/jerryzh168/1/orig 2025-07-17T06:36:46.5129466Z * [new branch] gh/jiayisunx/57/base -> origin/gh/jiayisunx/57/base 2025-07-17T06:36:46.5129973Z * [new branch] gh/jiayisunx/57/head -> origin/gh/jiayisunx/57/head 2025-07-17T06:36:46.5131107Z * [new branch] gh/jiayisunx/57/orig -> origin/gh/jiayisunx/57/orig 2025-07-17T06:36:46.5131719Z * [new branch] gh/jiayisunx/58/base -> origin/gh/jiayisunx/58/base 2025-07-17T06:36:46.5132216Z * [new branch] gh/jiayisunx/58/head -> origin/gh/jiayisunx/58/head 2025-07-17T06:36:46.5132721Z * [new branch] gh/jiayisunx/58/orig -> origin/gh/jiayisunx/58/orig 2025-07-17T06:36:46.5133214Z * [new branch] gh/jiayisunx/59/base -> origin/gh/jiayisunx/59/base 2025-07-17T06:36:46.5133701Z * [new branch] gh/jiayisunx/59/head -> origin/gh/jiayisunx/59/head 2025-07-17T06:36:46.5134209Z * [new branch] gh/jiayisunx/59/orig -> origin/gh/jiayisunx/59/orig 2025-07-17T06:36:46.5134700Z * [new branch] gh/jiayisunx/61/base -> origin/gh/jiayisunx/61/base 2025-07-17T06:36:46.5135198Z * [new branch] gh/jiayisunx/61/head -> origin/gh/jiayisunx/61/head 2025-07-17T06:36:46.5135795Z * [new branch] gh/jiayisunx/61/orig -> origin/gh/jiayisunx/61/orig 2025-07-17T06:36:46.5136610Z * [new branch] gh/jiayisunx/63/base -> origin/gh/jiayisunx/63/base 2025-07-17T06:36:46.5137401Z * [new branch] gh/jiayisunx/63/head -> origin/gh/jiayisunx/63/head 2025-07-17T06:36:46.5137898Z * [new branch] gh/jiayisunx/63/orig -> origin/gh/jiayisunx/63/orig 2025-07-17T06:36:46.5138395Z * [new branch] gh/jiayisunx/64/base -> origin/gh/jiayisunx/64/base 2025-07-17T06:36:46.5138882Z * [new branch] gh/jiayisunx/64/head -> origin/gh/jiayisunx/64/head 2025-07-17T06:36:46.5139381Z * [new branch] gh/jiayisunx/64/orig -> origin/gh/jiayisunx/64/orig 2025-07-17T06:36:46.5139878Z * [new branch] gh/jiayisunx/65/base -> origin/gh/jiayisunx/65/base 2025-07-17T06:36:46.5140375Z * [new branch] gh/jiayisunx/65/head -> origin/gh/jiayisunx/65/head 2025-07-17T06:36:46.5140871Z * [new branch] gh/jiayisunx/65/orig -> origin/gh/jiayisunx/65/orig 2025-07-17T06:36:46.5141377Z * [new branch] gh/jjwu@meta.com/1/base -> origin/gh/jjwu@meta.com/1/base 2025-07-17T06:36:46.5141914Z * [new branch] gh/jjwu@meta.com/1/head -> origin/gh/jjwu@meta.com/1/head 2025-07-17T06:36:46.5142881Z * [new branch] gh/justinchuby/111/base -> origin/gh/justinchuby/111/base 2025-07-17T06:36:46.5143539Z * [new branch] gh/justinchuby/111/head -> origin/gh/justinchuby/111/head 2025-07-17T06:36:46.5144072Z * [new branch] gh/justinchuby/111/orig -> origin/gh/justinchuby/111/orig 2025-07-17T06:36:46.5144593Z * [new branch] gh/kurtamohler/31/base -> origin/gh/kurtamohler/31/base 2025-07-17T06:36:46.5145117Z * [new branch] gh/kurtamohler/31/head -> origin/gh/kurtamohler/31/head 2025-07-17T06:36:46.5145647Z * [new branch] gh/kurtamohler/31/orig -> origin/gh/kurtamohler/31/orig 2025-07-17T06:36:46.5146160Z * [new branch] gh/kurtamohler/32/base -> origin/gh/kurtamohler/32/base 2025-07-17T06:36:46.5146694Z * [new branch] gh/kurtamohler/32/head -> origin/gh/kurtamohler/32/head 2025-07-17T06:36:46.5857820Z * [new branch] gh/kurtamohler/32/orig -> origin/gh/kurtamohler/32/orig 2025-07-17T06:36:46.5858397Z * [new branch] gh/kurtamohler/33/base -> origin/gh/kurtamohler/33/base 2025-07-17T06:36:46.5858921Z * [new branch] gh/kurtamohler/33/head -> origin/gh/kurtamohler/33/head 2025-07-17T06:36:46.5859433Z * [new branch] gh/kurtamohler/33/orig -> origin/gh/kurtamohler/33/orig 2025-07-17T06:36:46.5860053Z * [new branch] gh/kurtamohler/34/base -> origin/gh/kurtamohler/34/base 2025-07-17T06:36:46.5860751Z * [new branch] gh/kurtamohler/34/head -> origin/gh/kurtamohler/34/head 2025-07-17T06:36:46.5861319Z * [new branch] gh/kurtamohler/34/orig -> origin/gh/kurtamohler/34/orig 2025-07-17T06:36:46.5861840Z * [new branch] gh/kurtamohler/37/base -> origin/gh/kurtamohler/37/base 2025-07-17T06:36:46.5862349Z * [new branch] gh/kurtamohler/37/head -> origin/gh/kurtamohler/37/head 2025-07-17T06:36:46.5862920Z * [new branch] gh/kurtamohler/37/orig -> origin/gh/kurtamohler/37/orig 2025-07-17T06:36:46.5863431Z * [new branch] gh/kurtamohler/38/base -> origin/gh/kurtamohler/38/base 2025-07-17T06:36:46.5863945Z * [new branch] gh/kurtamohler/38/head -> origin/gh/kurtamohler/38/head 2025-07-17T06:36:46.5864460Z * [new branch] gh/kurtamohler/38/orig -> origin/gh/kurtamohler/38/orig 2025-07-17T06:36:46.5864968Z * [new branch] gh/kurtamohler/39/base -> origin/gh/kurtamohler/39/base 2025-07-17T06:36:46.5865578Z * [new branch] gh/kurtamohler/39/head -> origin/gh/kurtamohler/39/head 2025-07-17T06:36:46.5866149Z * [new branch] gh/kurtamohler/39/orig -> origin/gh/kurtamohler/39/orig 2025-07-17T06:36:46.5866672Z * [new branch] gh/kurtamohler/40/base -> origin/gh/kurtamohler/40/base 2025-07-17T06:36:46.5867267Z * [new branch] gh/kurtamohler/40/head -> origin/gh/kurtamohler/40/head 2025-07-17T06:36:46.5868246Z * [new branch] gh/kurtamohler/40/orig -> origin/gh/kurtamohler/40/orig 2025-07-17T06:36:46.5869101Z * [new branch] gh/kurtamohler/41/base -> origin/gh/kurtamohler/41/base 2025-07-17T06:36:46.5869619Z * [new branch] gh/kurtamohler/41/head -> origin/gh/kurtamohler/41/head 2025-07-17T06:36:46.5870141Z * [new branch] gh/kurtamohler/41/orig -> origin/gh/kurtamohler/41/orig 2025-07-17T06:36:46.5870664Z * [new branch] gh/kwen2501/1/base -> origin/gh/kwen2501/1/base 2025-07-17T06:36:46.5871149Z * [new branch] gh/kwen2501/1/head -> origin/gh/kwen2501/1/head 2025-07-17T06:36:46.5871632Z * [new branch] gh/kwen2501/130/base -> origin/gh/kwen2501/130/base 2025-07-17T06:36:46.5872121Z * [new branch] gh/kwen2501/130/head -> origin/gh/kwen2501/130/head 2025-07-17T06:36:46.5872605Z * [new branch] gh/kwen2501/130/orig -> origin/gh/kwen2501/130/orig 2025-07-17T06:36:46.5873083Z * [new branch] gh/kwen2501/131/base -> origin/gh/kwen2501/131/base 2025-07-17T06:36:46.5873560Z * [new branch] gh/kwen2501/131/head -> origin/gh/kwen2501/131/head 2025-07-17T06:36:46.5874046Z * [new branch] gh/kwen2501/131/orig -> origin/gh/kwen2501/131/orig 2025-07-17T06:36:46.5874524Z * [new branch] gh/kwen2501/142/base -> origin/gh/kwen2501/142/base 2025-07-17T06:36:46.5875103Z * [new branch] gh/kwen2501/142/head -> origin/gh/kwen2501/142/head 2025-07-17T06:36:46.5875586Z * [new branch] gh/kwen2501/142/orig -> origin/gh/kwen2501/142/orig 2025-07-17T06:36:46.5876084Z * [new branch] gh/kwen2501/15/base -> origin/gh/kwen2501/15/base 2025-07-17T06:36:46.5876571Z * [new branch] gh/kwen2501/15/head -> origin/gh/kwen2501/15/head 2025-07-17T06:36:46.5877050Z * [new branch] gh/kwen2501/156/base -> origin/gh/kwen2501/156/base 2025-07-17T06:36:46.5877552Z * [new branch] gh/kwen2501/156/head -> origin/gh/kwen2501/156/head 2025-07-17T06:36:46.5878029Z * [new branch] gh/kwen2501/156/orig -> origin/gh/kwen2501/156/orig 2025-07-17T06:36:46.5878514Z * [new branch] gh/kwen2501/162/base -> origin/gh/kwen2501/162/base 2025-07-17T06:36:46.5879004Z * [new branch] gh/kwen2501/162/head -> origin/gh/kwen2501/162/head 2025-07-17T06:36:46.5879616Z * [new branch] gh/kwen2501/162/orig -> origin/gh/kwen2501/162/orig 2025-07-17T06:36:46.5880103Z * [new branch] gh/kwen2501/170/base -> origin/gh/kwen2501/170/base 2025-07-17T06:36:46.5880576Z * [new branch] gh/kwen2501/170/head -> origin/gh/kwen2501/170/head 2025-07-17T06:36:46.5881067Z * [new branch] gh/kwen2501/172/base -> origin/gh/kwen2501/172/base 2025-07-17T06:36:46.5881550Z * [new branch] gh/kwen2501/172/head -> origin/gh/kwen2501/172/head 2025-07-17T06:36:46.5882028Z * [new branch] gh/kwen2501/172/orig -> origin/gh/kwen2501/172/orig 2025-07-17T06:36:46.6298091Z * [new branch] gh/kwen2501/173/base -> origin/gh/kwen2501/173/base 2025-07-17T06:36:46.6298672Z * [new branch] gh/kwen2501/173/head -> origin/gh/kwen2501/173/head 2025-07-17T06:36:46.6299285Z * [new branch] gh/kwen2501/173/orig -> origin/gh/kwen2501/173/orig 2025-07-17T06:36:46.6300006Z * [new branch] gh/kwen2501/174/base -> origin/gh/kwen2501/174/base 2025-07-17T06:36:46.6300497Z * [new branch] gh/kwen2501/174/head -> origin/gh/kwen2501/174/head 2025-07-17T06:36:46.6300995Z * [new branch] gh/kwen2501/174/orig -> origin/gh/kwen2501/174/orig 2025-07-17T06:36:46.6301482Z * [new branch] gh/kwen2501/175/base -> origin/gh/kwen2501/175/base 2025-07-17T06:36:46.6301964Z * [new branch] gh/kwen2501/175/head -> origin/gh/kwen2501/175/head 2025-07-17T06:36:46.6302442Z * [new branch] gh/kwen2501/175/orig -> origin/gh/kwen2501/175/orig 2025-07-17T06:36:46.6302914Z * [new branch] gh/kwen2501/176/base -> origin/gh/kwen2501/176/base 2025-07-17T06:36:46.6303395Z * [new branch] gh/kwen2501/176/head -> origin/gh/kwen2501/176/head 2025-07-17T06:36:46.6303873Z * [new branch] gh/kwen2501/176/orig -> origin/gh/kwen2501/176/orig 2025-07-17T06:36:46.6304368Z * [new branch] gh/kwen2501/177/base -> origin/gh/kwen2501/177/base 2025-07-17T06:36:46.6304847Z * [new branch] gh/kwen2501/177/head -> origin/gh/kwen2501/177/head 2025-07-17T06:36:46.6305371Z * [new branch] gh/kwen2501/177/orig -> origin/gh/kwen2501/177/orig 2025-07-17T06:36:46.6305894Z * [new branch] gh/kwen2501/178/base -> origin/gh/kwen2501/178/base 2025-07-17T06:36:46.6306417Z * [new branch] gh/kwen2501/178/head -> origin/gh/kwen2501/178/head 2025-07-17T06:36:46.6306901Z * [new branch] gh/kwen2501/178/orig -> origin/gh/kwen2501/178/orig 2025-07-17T06:36:46.6307381Z * [new branch] gh/kwen2501/179/base -> origin/gh/kwen2501/179/base 2025-07-17T06:36:46.6307856Z * [new branch] gh/kwen2501/179/head -> origin/gh/kwen2501/179/head 2025-07-17T06:36:46.6308346Z * [new branch] gh/kwen2501/179/orig -> origin/gh/kwen2501/179/orig 2025-07-17T06:36:46.6308821Z * [new branch] gh/kwen2501/180/base -> origin/gh/kwen2501/180/base 2025-07-17T06:36:46.6309304Z * [new branch] gh/kwen2501/180/head -> origin/gh/kwen2501/180/head 2025-07-17T06:36:46.6309792Z * [new branch] gh/kwen2501/180/orig -> origin/gh/kwen2501/180/orig 2025-07-17T06:36:46.6310262Z * [new branch] gh/kwen2501/181/base -> origin/gh/kwen2501/181/base 2025-07-17T06:36:46.6310749Z * [new branch] gh/kwen2501/181/head -> origin/gh/kwen2501/181/head 2025-07-17T06:36:46.6311251Z * [new branch] gh/kwen2501/181/orig -> origin/gh/kwen2501/181/orig 2025-07-17T06:36:46.6311798Z * [new branch] gh/kwen2501/182/base -> origin/gh/kwen2501/182/base 2025-07-17T06:36:46.6312441Z * [new branch] gh/kwen2501/182/head -> origin/gh/kwen2501/182/head 2025-07-17T06:36:46.6312949Z * [new branch] gh/kwen2501/182/orig -> origin/gh/kwen2501/182/orig 2025-07-17T06:36:46.6313428Z * [new branch] gh/kwen2501/183/base -> origin/gh/kwen2501/183/base 2025-07-17T06:36:46.6313908Z * [new branch] gh/kwen2501/183/head -> origin/gh/kwen2501/183/head 2025-07-17T06:36:46.6314386Z * [new branch] gh/kwen2501/183/orig -> origin/gh/kwen2501/183/orig 2025-07-17T06:36:46.6314868Z * [new branch] gh/kwen2501/184/base -> origin/gh/kwen2501/184/base 2025-07-17T06:36:46.6315449Z * [new branch] gh/kwen2501/184/head -> origin/gh/kwen2501/184/head 2025-07-17T06:36:46.6315941Z * [new branch] gh/kwen2501/184/orig -> origin/gh/kwen2501/184/orig 2025-07-17T06:36:46.6316416Z * [new branch] gh/kwen2501/185/base -> origin/gh/kwen2501/185/base 2025-07-17T06:36:46.6316902Z * [new branch] gh/kwen2501/185/head -> origin/gh/kwen2501/185/head 2025-07-17T06:36:46.6317505Z * [new branch] gh/kwen2501/185/orig -> origin/gh/kwen2501/185/orig 2025-07-17T06:36:46.6318064Z * [new branch] gh/kwen2501/186/base -> origin/gh/kwen2501/186/base 2025-07-17T06:36:46.6318567Z * [new branch] gh/kwen2501/186/head -> origin/gh/kwen2501/186/head 2025-07-17T06:36:46.6319050Z * [new branch] gh/kwen2501/186/orig -> origin/gh/kwen2501/186/orig 2025-07-17T06:36:46.6319539Z * [new branch] gh/kwen2501/187/base -> origin/gh/kwen2501/187/base 2025-07-17T06:36:46.6320021Z * [new branch] gh/kwen2501/187/head -> origin/gh/kwen2501/187/head 2025-07-17T06:36:46.6320507Z * [new branch] gh/kwen2501/187/orig -> origin/gh/kwen2501/187/orig 2025-07-17T06:36:46.6320986Z * [new branch] gh/kwen2501/188/base -> origin/gh/kwen2501/188/base 2025-07-17T06:36:46.6793451Z * [new branch] gh/kwen2501/188/head -> origin/gh/kwen2501/188/head 2025-07-17T06:36:46.6793991Z * [new branch] gh/kwen2501/188/orig -> origin/gh/kwen2501/188/orig 2025-07-17T06:36:46.6794477Z * [new branch] gh/kwen2501/189/base -> origin/gh/kwen2501/189/base 2025-07-17T06:36:46.6795021Z * [new branch] gh/kwen2501/189/head -> origin/gh/kwen2501/189/head 2025-07-17T06:36:46.6795513Z * [new branch] gh/kwen2501/189/orig -> origin/gh/kwen2501/189/orig 2025-07-17T06:36:46.6795989Z * [new branch] gh/kwen2501/190/base -> origin/gh/kwen2501/190/base 2025-07-17T06:36:46.6796472Z * [new branch] gh/kwen2501/190/head -> origin/gh/kwen2501/190/head 2025-07-17T06:36:46.6796955Z * [new branch] gh/kwen2501/190/orig -> origin/gh/kwen2501/190/orig 2025-07-17T06:36:46.6797440Z * [new branch] gh/kwen2501/191/base -> origin/gh/kwen2501/191/base 2025-07-17T06:36:46.6797940Z * [new branch] gh/kwen2501/191/head -> origin/gh/kwen2501/191/head 2025-07-17T06:36:46.6798414Z * [new branch] gh/kwen2501/191/orig -> origin/gh/kwen2501/191/orig 2025-07-17T06:36:46.6798896Z * [new branch] gh/kwen2501/192/base -> origin/gh/kwen2501/192/base 2025-07-17T06:36:46.6799371Z * [new branch] gh/kwen2501/192/head -> origin/gh/kwen2501/192/head 2025-07-17T06:36:46.6799854Z * [new branch] gh/kwen2501/192/orig -> origin/gh/kwen2501/192/orig 2025-07-17T06:36:46.6800339Z * [new branch] gh/kwen2501/193/base -> origin/gh/kwen2501/193/base 2025-07-17T06:36:46.6800811Z * [new branch] gh/kwen2501/193/head -> origin/gh/kwen2501/193/head 2025-07-17T06:36:46.6801291Z * [new branch] gh/kwen2501/193/orig -> origin/gh/kwen2501/193/orig 2025-07-17T06:36:46.6801916Z * [new branch] gh/kwen2501/194/base -> origin/gh/kwen2501/194/base 2025-07-17T06:36:46.6802408Z * [new branch] gh/kwen2501/194/head -> origin/gh/kwen2501/194/head 2025-07-17T06:36:46.6802913Z * [new branch] gh/kwen2501/194/orig -> origin/gh/kwen2501/194/orig 2025-07-17T06:36:46.6803386Z * [new branch] gh/kwen2501/195/base -> origin/gh/kwen2501/195/base 2025-07-17T06:36:46.6803876Z * [new branch] gh/kwen2501/195/head -> origin/gh/kwen2501/195/head 2025-07-17T06:36:46.6804352Z * [new branch] gh/kwen2501/195/orig -> origin/gh/kwen2501/195/orig 2025-07-17T06:36:46.6804834Z * [new branch] gh/kwen2501/196/base -> origin/gh/kwen2501/196/base 2025-07-17T06:36:46.6805333Z * [new branch] gh/kwen2501/196/head -> origin/gh/kwen2501/196/head 2025-07-17T06:36:46.6805811Z * [new branch] gh/kwen2501/196/orig -> origin/gh/kwen2501/196/orig 2025-07-17T06:36:46.6806403Z * [new branch] gh/laithsakka/112/head -> origin/gh/laithsakka/112/head 2025-07-17T06:36:46.6806932Z * [new branch] gh/laithsakka/117/base -> origin/gh/laithsakka/117/base 2025-07-17T06:36:46.6807456Z * [new branch] gh/laithsakka/117/head -> origin/gh/laithsakka/117/head 2025-07-17T06:36:46.6807966Z * [new branch] gh/laithsakka/117/orig -> origin/gh/laithsakka/117/orig 2025-07-17T06:36:46.6808490Z * [new branch] gh/laithsakka/120/base -> origin/gh/laithsakka/120/base 2025-07-17T06:36:46.6809022Z * [new branch] gh/laithsakka/120/head -> origin/gh/laithsakka/120/head 2025-07-17T06:36:46.6809535Z * [new branch] gh/laithsakka/120/orig -> origin/gh/laithsakka/120/orig 2025-07-17T06:36:46.6810056Z * [new branch] gh/laithsakka/141/base -> origin/gh/laithsakka/141/base 2025-07-17T06:36:46.6810572Z * [new branch] gh/laithsakka/141/head -> origin/gh/laithsakka/141/head 2025-07-17T06:36:46.6811101Z * [new branch] gh/laithsakka/141/orig -> origin/gh/laithsakka/141/orig 2025-07-17T06:36:46.6811614Z * [new branch] gh/laithsakka/152/base -> origin/gh/laithsakka/152/base 2025-07-17T06:36:46.6812121Z * [new branch] gh/laithsakka/152/head -> origin/gh/laithsakka/152/head 2025-07-17T06:36:46.6812642Z * [new branch] gh/laithsakka/152/orig -> origin/gh/laithsakka/152/orig 2025-07-17T06:36:46.6813151Z * [new branch] gh/laithsakka/156/base -> origin/gh/laithsakka/156/base 2025-07-17T06:36:46.6813744Z * [new branch] gh/laithsakka/156/head -> origin/gh/laithsakka/156/head 2025-07-17T06:36:46.6814321Z * [new branch] gh/laithsakka/156/orig -> origin/gh/laithsakka/156/orig 2025-07-17T06:36:46.6814834Z * [new branch] gh/laithsakka/159/base -> origin/gh/laithsakka/159/base 2025-07-17T06:36:46.6815372Z * [new branch] gh/laithsakka/159/head -> origin/gh/laithsakka/159/head 2025-07-17T06:36:46.6815882Z * [new branch] gh/laithsakka/159/orig -> origin/gh/laithsakka/159/orig 2025-07-17T06:36:46.6816415Z * [new branch] gh/laithsakka/160/base -> origin/gh/laithsakka/160/base 2025-07-17T06:36:46.7237364Z * [new branch] gh/laithsakka/160/head -> origin/gh/laithsakka/160/head 2025-07-17T06:36:46.7237945Z * [new branch] gh/laithsakka/160/orig -> origin/gh/laithsakka/160/orig 2025-07-17T06:36:46.7238496Z * [new branch] gh/laithsakka/178/base -> origin/gh/laithsakka/178/base 2025-07-17T06:36:46.7239005Z * [new branch] gh/laithsakka/178/head -> origin/gh/laithsakka/178/head 2025-07-17T06:36:46.7239530Z * [new branch] gh/laithsakka/178/orig -> origin/gh/laithsakka/178/orig 2025-07-17T06:36:46.7240201Z * [new branch] gh/laithsakka/191/base -> origin/gh/laithsakka/191/base 2025-07-17T06:36:46.7240723Z * [new branch] gh/laithsakka/191/head -> origin/gh/laithsakka/191/head 2025-07-17T06:36:46.7241238Z * [new branch] gh/laithsakka/191/orig -> origin/gh/laithsakka/191/orig 2025-07-17T06:36:46.7241746Z * [new branch] gh/laithsakka/199/base -> origin/gh/laithsakka/199/base 2025-07-17T06:36:46.7242263Z * [new branch] gh/laithsakka/199/head -> origin/gh/laithsakka/199/head 2025-07-17T06:36:46.7242769Z * [new branch] gh/laithsakka/199/orig -> origin/gh/laithsakka/199/orig 2025-07-17T06:36:46.7243285Z * [new branch] gh/laithsakka/206/base -> origin/gh/laithsakka/206/base 2025-07-17T06:36:46.7243800Z * [new branch] gh/laithsakka/206/head -> origin/gh/laithsakka/206/head 2025-07-17T06:36:46.7244305Z * [new branch] gh/laithsakka/206/orig -> origin/gh/laithsakka/206/orig 2025-07-17T06:36:46.7244910Z * [new branch] gh/laithsakka/210/base -> origin/gh/laithsakka/210/base 2025-07-17T06:36:46.7245427Z * [new branch] gh/laithsakka/210/head -> origin/gh/laithsakka/210/head 2025-07-17T06:36:46.7245942Z * [new branch] gh/laithsakka/210/orig -> origin/gh/laithsakka/210/orig 2025-07-17T06:36:46.7246453Z * [new branch] gh/laithsakka/215/base -> origin/gh/laithsakka/215/base 2025-07-17T06:36:46.7246961Z * [new branch] gh/laithsakka/215/head -> origin/gh/laithsakka/215/head 2025-07-17T06:36:46.7247484Z * [new branch] gh/laithsakka/215/orig -> origin/gh/laithsakka/215/orig 2025-07-17T06:36:46.7247991Z * [new branch] gh/laithsakka/219/base -> origin/gh/laithsakka/219/base 2025-07-17T06:36:46.7248517Z * [new branch] gh/laithsakka/219/head -> origin/gh/laithsakka/219/head 2025-07-17T06:36:46.7249027Z * [new branch] gh/laithsakka/219/orig -> origin/gh/laithsakka/219/orig 2025-07-17T06:36:46.7249545Z * [new branch] gh/laithsakka/220/base -> origin/gh/laithsakka/220/base 2025-07-17T06:36:46.7250061Z * [new branch] gh/laithsakka/220/head -> origin/gh/laithsakka/220/head 2025-07-17T06:36:46.7250568Z * [new branch] gh/laithsakka/220/orig -> origin/gh/laithsakka/220/orig 2025-07-17T06:36:46.7251086Z * [new branch] gh/laithsakka/221/base -> origin/gh/laithsakka/221/base 2025-07-17T06:36:46.7251590Z * [new branch] gh/laithsakka/221/head -> origin/gh/laithsakka/221/head 2025-07-17T06:36:46.7252097Z * [new branch] gh/laithsakka/221/orig -> origin/gh/laithsakka/221/orig 2025-07-17T06:36:46.7252615Z * [new branch] gh/laithsakka/222/base -> origin/gh/laithsakka/222/base 2025-07-17T06:36:46.7253119Z * [new branch] gh/laithsakka/222/head -> origin/gh/laithsakka/222/head 2025-07-17T06:36:46.7253641Z * [new branch] gh/laithsakka/222/orig -> origin/gh/laithsakka/222/orig 2025-07-17T06:36:46.7254156Z * [new branch] gh/laithsakka/223/base -> origin/gh/laithsakka/223/base 2025-07-17T06:36:46.7254679Z * [new branch] gh/laithsakka/223/head -> origin/gh/laithsakka/223/head 2025-07-17T06:36:46.7255192Z * [new branch] gh/laithsakka/223/orig -> origin/gh/laithsakka/223/orig 2025-07-17T06:36:46.7255697Z * [new branch] gh/laithsakka/224/base -> origin/gh/laithsakka/224/base 2025-07-17T06:36:46.7256224Z * [new branch] gh/laithsakka/224/head -> origin/gh/laithsakka/224/head 2025-07-17T06:36:46.7256731Z * [new branch] gh/laithsakka/224/orig -> origin/gh/laithsakka/224/orig 2025-07-17T06:36:46.7257246Z * [new branch] gh/laithsakka/225/base -> origin/gh/laithsakka/225/base 2025-07-17T06:36:46.7257757Z * [new branch] gh/laithsakka/225/head -> origin/gh/laithsakka/225/head 2025-07-17T06:36:46.7258881Z * [new branch] gh/laithsakka/225/orig -> origin/gh/laithsakka/225/orig 2025-07-17T06:36:46.7259404Z * [new branch] gh/laithsakka/226/base -> origin/gh/laithsakka/226/base 2025-07-17T06:36:46.7259915Z * [new branch] gh/laithsakka/226/head -> origin/gh/laithsakka/226/head 2025-07-17T06:36:46.7260433Z * [new branch] gh/laithsakka/226/orig -> origin/gh/laithsakka/226/orig 2025-07-17T06:36:46.7260951Z * [new branch] gh/laithsakka/227/base -> origin/gh/laithsakka/227/base 2025-07-17T06:36:46.7261456Z * [new branch] gh/laithsakka/227/head -> origin/gh/laithsakka/227/head 2025-07-17T06:36:46.8247119Z * [new branch] gh/laithsakka/227/orig -> origin/gh/laithsakka/227/orig 2025-07-17T06:36:46.8247688Z * [new branch] gh/laithsakka/228/base -> origin/gh/laithsakka/228/base 2025-07-17T06:36:46.8248238Z * [new branch] gh/laithsakka/228/head -> origin/gh/laithsakka/228/head 2025-07-17T06:36:46.8248913Z * [new branch] gh/laithsakka/228/orig -> origin/gh/laithsakka/228/orig 2025-07-17T06:36:46.8249431Z * [new branch] gh/laithsakka/229/base -> origin/gh/laithsakka/229/base 2025-07-17T06:36:46.8249951Z * [new branch] gh/laithsakka/229/head -> origin/gh/laithsakka/229/head 2025-07-17T06:36:46.8250495Z * [new branch] gh/laithsakka/229/orig -> origin/gh/laithsakka/229/orig 2025-07-17T06:36:46.8251080Z * [new branch] gh/laithsakka/230/base -> origin/gh/laithsakka/230/base 2025-07-17T06:36:46.8251600Z * [new branch] gh/laithsakka/230/head -> origin/gh/laithsakka/230/head 2025-07-17T06:36:46.8252116Z * [new branch] gh/laithsakka/230/orig -> origin/gh/laithsakka/230/orig 2025-07-17T06:36:46.8252642Z * [new branch] gh/laithsakka/231/base -> origin/gh/laithsakka/231/base 2025-07-17T06:36:46.8253159Z * [new branch] gh/laithsakka/231/head -> origin/gh/laithsakka/231/head 2025-07-17T06:36:46.8253676Z * [new branch] gh/laithsakka/231/orig -> origin/gh/laithsakka/231/orig 2025-07-17T06:36:46.8254181Z * [new branch] gh/laithsakka/232/base -> origin/gh/laithsakka/232/base 2025-07-17T06:36:46.8254703Z * [new branch] gh/laithsakka/232/head -> origin/gh/laithsakka/232/head 2025-07-17T06:36:46.8255223Z * [new branch] gh/laithsakka/232/orig -> origin/gh/laithsakka/232/orig 2025-07-17T06:36:46.8255748Z * [new branch] gh/laithsakka/233/base -> origin/gh/laithsakka/233/base 2025-07-17T06:36:46.8256304Z * [new branch] gh/laithsakka/233/head -> origin/gh/laithsakka/233/head 2025-07-17T06:36:46.8256872Z * [new branch] gh/laithsakka/233/orig -> origin/gh/laithsakka/233/orig 2025-07-17T06:36:46.8257385Z * [new branch] gh/laithsakka/234/base -> origin/gh/laithsakka/234/base 2025-07-17T06:36:46.8257901Z * [new branch] gh/laithsakka/234/head -> origin/gh/laithsakka/234/head 2025-07-17T06:36:46.8258408Z * [new branch] gh/laithsakka/234/orig -> origin/gh/laithsakka/234/orig 2025-07-17T06:36:46.8258918Z * [new branch] gh/laithsakka/235/base -> origin/gh/laithsakka/235/base 2025-07-17T06:36:46.8259431Z * [new branch] gh/laithsakka/235/head -> origin/gh/laithsakka/235/head 2025-07-17T06:36:46.8259934Z * [new branch] gh/laithsakka/235/orig -> origin/gh/laithsakka/235/orig 2025-07-17T06:36:46.8260451Z * [new branch] gh/laithsakka/236/base -> origin/gh/laithsakka/236/base 2025-07-17T06:36:46.8260960Z * [new branch] gh/laithsakka/236/head -> origin/gh/laithsakka/236/head 2025-07-17T06:36:46.8261474Z * [new branch] gh/laithsakka/236/orig -> origin/gh/laithsakka/236/orig 2025-07-17T06:36:46.8262139Z * [new branch] gh/laithsakka/237/base -> origin/gh/laithsakka/237/base 2025-07-17T06:36:46.8262712Z * [new branch] gh/laithsakka/237/head -> origin/gh/laithsakka/237/head 2025-07-17T06:36:46.8263229Z * [new branch] gh/laithsakka/237/orig -> origin/gh/laithsakka/237/orig 2025-07-17T06:36:46.8263741Z * [new branch] gh/laithsakka/238/base -> origin/gh/laithsakka/238/base 2025-07-17T06:36:46.8264263Z * [new branch] gh/laithsakka/238/head -> origin/gh/laithsakka/238/head 2025-07-17T06:36:46.8264766Z * [new branch] gh/laithsakka/238/orig -> origin/gh/laithsakka/238/orig 2025-07-17T06:36:46.8265283Z * [new branch] gh/laithsakka/239/base -> origin/gh/laithsakka/239/base 2025-07-17T06:36:46.8265807Z * [new branch] gh/laithsakka/239/head -> origin/gh/laithsakka/239/head 2025-07-17T06:36:46.8266321Z * [new branch] gh/laithsakka/239/orig -> origin/gh/laithsakka/239/orig 2025-07-17T06:36:46.8266919Z * [new branch] gh/laithsakka/240/base -> origin/gh/laithsakka/240/base 2025-07-17T06:36:46.8267430Z * [new branch] gh/laithsakka/240/head -> origin/gh/laithsakka/240/head 2025-07-17T06:36:46.8268003Z * [new branch] gh/laithsakka/240/orig -> origin/gh/laithsakka/240/orig 2025-07-17T06:36:46.8268575Z * [new branch] gh/laithsakka/241/base -> origin/gh/laithsakka/241/base 2025-07-17T06:36:46.8269085Z * [new branch] gh/laithsakka/241/head -> origin/gh/laithsakka/241/head 2025-07-17T06:36:46.8269602Z * [new branch] gh/laithsakka/241/orig -> origin/gh/laithsakka/241/orig 2025-07-17T06:36:46.8270113Z * [new branch] gh/laithsakka/242/base -> origin/gh/laithsakka/242/base 2025-07-17T06:36:46.8270635Z * [new branch] gh/laithsakka/242/head -> origin/gh/laithsakka/242/head 2025-07-17T06:36:46.8700727Z * [new branch] gh/laithsakka/242/orig -> origin/gh/laithsakka/242/orig 2025-07-17T06:36:46.8701296Z * [new branch] gh/laithsakka/243/base -> origin/gh/laithsakka/243/base 2025-07-17T06:36:46.8701826Z * [new branch] gh/laithsakka/243/head -> origin/gh/laithsakka/243/head 2025-07-17T06:36:46.8702345Z * [new branch] gh/laithsakka/243/orig -> origin/gh/laithsakka/243/orig 2025-07-17T06:36:46.8702866Z * [new branch] gh/laithsakka/244/base -> origin/gh/laithsakka/244/base 2025-07-17T06:36:46.8703384Z * [new branch] gh/laithsakka/244/head -> origin/gh/laithsakka/244/head 2025-07-17T06:36:46.8703952Z * [new branch] gh/laithsakka/244/orig -> origin/gh/laithsakka/244/orig 2025-07-17T06:36:46.8713212Z * [new branch] gh/laithsakka/28/base -> origin/gh/laithsakka/28/base 2025-07-17T06:36:46.8713780Z * [new branch] gh/laithsakka/29/base -> origin/gh/laithsakka/29/base 2025-07-17T06:36:46.8714312Z * [new branch] gh/laithsakka/30/base -> origin/gh/laithsakka/30/base 2025-07-17T06:36:46.8714818Z * [new branch] gh/laithsakka/30/head -> origin/gh/laithsakka/30/head 2025-07-17T06:36:46.8715468Z * [new branch] gh/laithsakka/31/base -> origin/gh/laithsakka/31/base 2025-07-17T06:36:46.8716023Z * [new branch] gh/laithsakka/31/head -> origin/gh/laithsakka/31/head 2025-07-17T06:36:46.8716529Z * [new branch] gh/laithsakka/32/base -> origin/gh/laithsakka/32/base 2025-07-17T06:36:46.8717026Z * [new branch] gh/laithsakka/32/head -> origin/gh/laithsakka/32/head 2025-07-17T06:36:46.8717592Z * [new branch] gh/leslie-fang-intel/190/base -> origin/gh/leslie-fang-intel/190/base 2025-07-17T06:36:46.8718195Z * [new branch] gh/leslie-fang-intel/190/head -> origin/gh/leslie-fang-intel/190/head 2025-07-17T06:36:46.8718973Z * [new branch] gh/leslie-fang-intel/190/orig -> origin/gh/leslie-fang-intel/190/orig 2025-07-17T06:36:46.8719574Z * [new branch] gh/leslie-fang-intel/199/base -> origin/gh/leslie-fang-intel/199/base 2025-07-17T06:36:46.8720158Z * [new branch] gh/leslie-fang-intel/199/head -> origin/gh/leslie-fang-intel/199/head 2025-07-17T06:36:46.8720751Z * [new branch] gh/leslie-fang-intel/199/orig -> origin/gh/leslie-fang-intel/199/orig 2025-07-17T06:36:46.8721386Z * [new branch] gh/leslie-fang-intel/200/base -> origin/gh/leslie-fang-intel/200/base 2025-07-17T06:36:46.8722043Z * [new branch] gh/leslie-fang-intel/200/head -> origin/gh/leslie-fang-intel/200/head 2025-07-17T06:36:46.8722643Z * [new branch] gh/leslie-fang-intel/200/orig -> origin/gh/leslie-fang-intel/200/orig 2025-07-17T06:36:46.8723232Z * [new branch] gh/leslie-fang-intel/201/base -> origin/gh/leslie-fang-intel/201/base 2025-07-17T06:36:46.8724486Z * [new branch] gh/leslie-fang-intel/201/head -> origin/gh/leslie-fang-intel/201/head 2025-07-17T06:36:46.8725097Z * [new branch] gh/leslie-fang-intel/201/orig -> origin/gh/leslie-fang-intel/201/orig 2025-07-17T06:36:46.8725691Z * [new branch] gh/leslie-fang-intel/202/base -> origin/gh/leslie-fang-intel/202/base 2025-07-17T06:36:46.8726290Z * [new branch] gh/leslie-fang-intel/202/head -> origin/gh/leslie-fang-intel/202/head 2025-07-17T06:36:46.8726933Z * [new branch] gh/leslie-fang-intel/202/orig -> origin/gh/leslie-fang-intel/202/orig 2025-07-17T06:36:46.8727577Z * [new branch] gh/leslie-fang-intel/203/base -> origin/gh/leslie-fang-intel/203/base 2025-07-17T06:36:46.8728168Z * [new branch] gh/leslie-fang-intel/203/head -> origin/gh/leslie-fang-intel/203/head 2025-07-17T06:36:46.8728767Z * [new branch] gh/leslie-fang-intel/203/orig -> origin/gh/leslie-fang-intel/203/orig 2025-07-17T06:36:46.8729375Z * [new branch] gh/leslie-fang-intel/204/base -> origin/gh/leslie-fang-intel/204/base 2025-07-17T06:36:46.8729957Z * [new branch] gh/leslie-fang-intel/204/head -> origin/gh/leslie-fang-intel/204/head 2025-07-17T06:36:46.8730557Z * [new branch] gh/leslie-fang-intel/204/orig -> origin/gh/leslie-fang-intel/204/orig 2025-07-17T06:36:46.8731140Z * [new branch] gh/leslie-fang-intel/205/base -> origin/gh/leslie-fang-intel/205/base 2025-07-17T06:36:46.8731736Z * [new branch] gh/leslie-fang-intel/205/head -> origin/gh/leslie-fang-intel/205/head 2025-07-17T06:36:46.8732329Z * [new branch] gh/leslie-fang-intel/205/orig -> origin/gh/leslie-fang-intel/205/orig 2025-07-17T06:36:46.8733007Z * [new branch] gh/leslie-fang-intel/206/base -> origin/gh/leslie-fang-intel/206/base 2025-07-17T06:36:46.8733603Z * [new branch] gh/leslie-fang-intel/206/head -> origin/gh/leslie-fang-intel/206/head 2025-07-17T06:36:46.8734197Z * [new branch] gh/leslie-fang-intel/206/orig -> origin/gh/leslie-fang-intel/206/orig 2025-07-17T06:36:46.8734790Z * [new branch] gh/leslie-fang-intel/207/base -> origin/gh/leslie-fang-intel/207/base 2025-07-17T06:36:46.9509039Z * [new branch] gh/leslie-fang-intel/207/head -> origin/gh/leslie-fang-intel/207/head 2025-07-17T06:36:46.9509695Z * [new branch] gh/leslie-fang-intel/207/orig -> origin/gh/leslie-fang-intel/207/orig 2025-07-17T06:36:46.9510303Z * [new branch] gh/leslie-fang-intel/208/base -> origin/gh/leslie-fang-intel/208/base 2025-07-17T06:36:46.9510921Z * [new branch] gh/leslie-fang-intel/208/head -> origin/gh/leslie-fang-intel/208/head 2025-07-17T06:36:46.9511511Z * [new branch] gh/leslie-fang-intel/208/orig -> origin/gh/leslie-fang-intel/208/orig 2025-07-17T06:36:46.9512027Z * [new branch] gh/lw/1/base -> origin/gh/lw/1/base 2025-07-17T06:36:46.9512631Z * [new branch] gh/lw/1/head -> origin/gh/lw/1/head 2025-07-17T06:36:46.9513066Z * [new branch] gh/lw/1/orig -> origin/gh/lw/1/orig 2025-07-17T06:36:46.9513503Z * [new branch] gh/lw/2/base -> origin/gh/lw/2/base 2025-07-17T06:36:46.9513922Z * [new branch] gh/lw/2/head -> origin/gh/lw/2/head 2025-07-17T06:36:46.9514353Z * [new branch] gh/lw/2/orig -> origin/gh/lw/2/orig 2025-07-17T06:36:46.9514795Z * [new branch] gh/malfet/14/base -> origin/gh/malfet/14/base 2025-07-17T06:36:46.9515383Z * [new branch] gh/malfet/169/base -> origin/gh/malfet/169/base 2025-07-17T06:36:46.9515858Z * [new branch] gh/malfet/169/head -> origin/gh/malfet/169/head 2025-07-17T06:36:46.9516337Z * [new branch] gh/malfet/169/orig -> origin/gh/malfet/169/orig 2025-07-17T06:36:46.9516898Z * [new branch] gh/malfet/259/base -> origin/gh/malfet/259/base 2025-07-17T06:36:46.9517378Z * [new branch] gh/malfet/259/head -> origin/gh/malfet/259/head 2025-07-17T06:36:46.9517849Z * [new branch] gh/malfet/259/orig -> origin/gh/malfet/259/orig 2025-07-17T06:36:46.9518318Z * [new branch] gh/malfet/330/base -> origin/gh/malfet/330/base 2025-07-17T06:36:46.9518789Z * [new branch] gh/malfet/330/head -> origin/gh/malfet/330/head 2025-07-17T06:36:46.9519284Z * [new branch] gh/malfet/330/orig -> origin/gh/malfet/330/orig 2025-07-17T06:36:46.9519757Z * [new branch] gh/malfet/394/base -> origin/gh/malfet/394/base 2025-07-17T06:36:46.9520231Z * [new branch] gh/malfet/394/head -> origin/gh/malfet/394/head 2025-07-17T06:36:46.9520708Z * [new branch] gh/malfet/394/orig -> origin/gh/malfet/394/orig 2025-07-17T06:36:46.9521195Z * [new branch] gh/malfet/396/base -> origin/gh/malfet/396/base 2025-07-17T06:36:46.9521682Z * [new branch] gh/malfet/396/head -> origin/gh/malfet/396/head 2025-07-17T06:36:46.9522147Z * [new branch] gh/malfet/396/orig -> origin/gh/malfet/396/orig 2025-07-17T06:36:46.9522629Z * [new branch] gh/malfet/397/base -> origin/gh/malfet/397/base 2025-07-17T06:36:46.9523094Z * [new branch] gh/malfet/397/head -> origin/gh/malfet/397/head 2025-07-17T06:36:46.9523572Z * [new branch] gh/malfet/397/orig -> origin/gh/malfet/397/orig 2025-07-17T06:36:46.9524036Z * [new branch] gh/malfet/398/base -> origin/gh/malfet/398/base 2025-07-17T06:36:46.9524512Z * [new branch] gh/malfet/398/head -> origin/gh/malfet/398/head 2025-07-17T06:36:46.9524988Z * [new branch] gh/malfet/398/orig -> origin/gh/malfet/398/orig 2025-07-17T06:36:46.9525459Z * [new branch] gh/malfet/399/base -> origin/gh/malfet/399/base 2025-07-17T06:36:46.9525932Z * [new branch] gh/malfet/399/head -> origin/gh/malfet/399/head 2025-07-17T06:36:46.9526405Z * [new branch] gh/malfet/399/orig -> origin/gh/malfet/399/orig 2025-07-17T06:36:46.9526882Z * [new branch] gh/malfet/403/base -> origin/gh/malfet/403/base 2025-07-17T06:36:46.9527364Z * [new branch] gh/malfet/403/head -> origin/gh/malfet/403/head 2025-07-17T06:36:46.9527830Z * [new branch] gh/malfet/403/orig -> origin/gh/malfet/403/orig 2025-07-17T06:36:46.9528303Z * [new branch] gh/malfet/404/base -> origin/gh/malfet/404/base 2025-07-17T06:36:46.9528767Z * [new branch] gh/malfet/404/head -> origin/gh/malfet/404/head 2025-07-17T06:36:46.9529349Z * [new branch] gh/malfet/404/orig -> origin/gh/malfet/404/orig 2025-07-17T06:36:46.9529832Z * [new branch] gh/malfet/405/base -> origin/gh/malfet/405/base 2025-07-17T06:36:46.9530308Z * [new branch] gh/malfet/405/head -> origin/gh/malfet/405/head 2025-07-17T06:36:46.9530787Z * [new branch] gh/malfet/405/orig -> origin/gh/malfet/405/orig 2025-07-17T06:36:46.9531263Z * [new branch] gh/malfet/407/base -> origin/gh/malfet/407/base 2025-07-17T06:36:46.9531740Z * [new branch] gh/malfet/407/head -> origin/gh/malfet/407/head 2025-07-17T06:36:46.9532214Z * [new branch] gh/malfet/407/orig -> origin/gh/malfet/407/orig 2025-07-17T06:36:46.9957777Z * [new branch] gh/malfet/408/base -> origin/gh/malfet/408/base 2025-07-17T06:36:46.9958293Z * [new branch] gh/malfet/408/head -> origin/gh/malfet/408/head 2025-07-17T06:36:46.9958781Z * [new branch] gh/malfet/408/orig -> origin/gh/malfet/408/orig 2025-07-17T06:36:46.9959406Z * [new branch] gh/malfet/409/base -> origin/gh/malfet/409/base 2025-07-17T06:36:46.9959888Z * [new branch] gh/malfet/409/head -> origin/gh/malfet/409/head 2025-07-17T06:36:46.9960353Z * [new branch] gh/malfet/409/orig -> origin/gh/malfet/409/orig 2025-07-17T06:36:46.9960836Z * [new branch] gh/malfet/410/base -> origin/gh/malfet/410/base 2025-07-17T06:36:46.9961305Z * [new branch] gh/malfet/410/head -> origin/gh/malfet/410/head 2025-07-17T06:36:46.9961793Z * [new branch] gh/malfet/410/orig -> origin/gh/malfet/410/orig 2025-07-17T06:36:46.9962258Z * [new branch] gh/malfet/411/base -> origin/gh/malfet/411/base 2025-07-17T06:36:46.9962734Z * [new branch] gh/malfet/411/head -> origin/gh/malfet/411/head 2025-07-17T06:36:46.9963213Z * [new branch] gh/malfet/411/orig -> origin/gh/malfet/411/orig 2025-07-17T06:36:46.9963700Z * [new branch] gh/malfet/412/base -> origin/gh/malfet/412/base 2025-07-17T06:36:46.9964168Z * [new branch] gh/malfet/412/head -> origin/gh/malfet/412/head 2025-07-17T06:36:46.9964644Z * [new branch] gh/malfet/412/orig -> origin/gh/malfet/412/orig 2025-07-17T06:36:46.9965104Z * [new branch] gh/malfet/413/base -> origin/gh/malfet/413/base 2025-07-17T06:36:46.9965580Z * [new branch] gh/malfet/413/head -> origin/gh/malfet/413/head 2025-07-17T06:36:46.9966040Z * [new branch] gh/malfet/413/orig -> origin/gh/malfet/413/orig 2025-07-17T06:36:46.9966509Z * [new branch] gh/malfet/414/base -> origin/gh/malfet/414/base 2025-07-17T06:36:46.9966985Z * [new branch] gh/malfet/414/head -> origin/gh/malfet/414/head 2025-07-17T06:36:46.9967458Z * [new branch] gh/malfet/414/orig -> origin/gh/malfet/414/orig 2025-07-17T06:36:46.9967931Z * [new branch] gh/malfet/415/base -> origin/gh/malfet/415/base 2025-07-17T06:36:46.9968396Z * [new branch] gh/malfet/415/head -> origin/gh/malfet/415/head 2025-07-17T06:36:46.9968873Z * [new branch] gh/malfet/415/orig -> origin/gh/malfet/415/orig 2025-07-17T06:36:46.9969334Z * [new branch] gh/malfet/416/base -> origin/gh/malfet/416/base 2025-07-17T06:36:46.9969804Z * [new branch] gh/malfet/416/head -> origin/gh/malfet/416/head 2025-07-17T06:36:46.9970275Z * [new branch] gh/malfet/416/orig -> origin/gh/malfet/416/orig 2025-07-17T06:36:46.9970735Z * [new branch] gh/malfet/417/base -> origin/gh/malfet/417/base 2025-07-17T06:36:46.9971207Z * [new branch] gh/malfet/417/head -> origin/gh/malfet/417/head 2025-07-17T06:36:46.9971768Z * [new branch] gh/malfet/417/orig -> origin/gh/malfet/417/orig 2025-07-17T06:36:46.9972253Z * [new branch] gh/malfet/418/base -> origin/gh/malfet/418/base 2025-07-17T06:36:46.9972726Z * [new branch] gh/malfet/418/head -> origin/gh/malfet/418/head 2025-07-17T06:36:46.9973200Z * [new branch] gh/malfet/418/orig -> origin/gh/malfet/418/orig 2025-07-17T06:36:46.9973673Z * [new branch] gh/malfet/419/base -> origin/gh/malfet/419/base 2025-07-17T06:36:46.9974145Z * [new branch] gh/malfet/419/head -> origin/gh/malfet/419/head 2025-07-17T06:36:46.9974626Z * [new branch] gh/malfet/419/orig -> origin/gh/malfet/419/orig 2025-07-17T06:36:46.9975215Z * [new branch] gh/malfet/420/base -> origin/gh/malfet/420/base 2025-07-17T06:36:46.9975989Z * [new branch] gh/malfet/420/head -> origin/gh/malfet/420/head 2025-07-17T06:36:46.9976559Z * [new branch] gh/malfet/420/orig -> origin/gh/malfet/420/orig 2025-07-17T06:36:46.9977037Z * [new branch] gh/malfet/421/base -> origin/gh/malfet/421/base 2025-07-17T06:36:46.9977511Z * [new branch] gh/malfet/421/head -> origin/gh/malfet/421/head 2025-07-17T06:36:46.9977982Z * [new branch] gh/malfet/421/orig -> origin/gh/malfet/421/orig 2025-07-17T06:36:46.9978465Z * [new branch] gh/malfet/422/base -> origin/gh/malfet/422/base 2025-07-17T06:36:46.9978943Z * [new branch] gh/malfet/422/head -> origin/gh/malfet/422/head 2025-07-17T06:36:46.9979416Z * [new branch] gh/malfet/422/orig -> origin/gh/malfet/422/orig 2025-07-17T06:36:46.9979892Z * [new branch] gh/malfet/423/base -> origin/gh/malfet/423/base 2025-07-17T06:36:46.9980362Z * [new branch] gh/malfet/423/head -> origin/gh/malfet/423/head 2025-07-17T06:36:47.0426619Z * [new branch] gh/malfet/423/orig -> origin/gh/malfet/423/orig 2025-07-17T06:36:47.0427151Z * [new branch] gh/malfet/424/base -> origin/gh/malfet/424/base 2025-07-17T06:36:47.0427843Z * [new branch] gh/malfet/424/head -> origin/gh/malfet/424/head 2025-07-17T06:36:47.0428736Z * [new branch] gh/malfet/424/orig -> origin/gh/malfet/424/orig 2025-07-17T06:36:47.0429217Z * [new branch] gh/malfet/425/base -> origin/gh/malfet/425/base 2025-07-17T06:36:47.0429703Z * [new branch] gh/malfet/425/head -> origin/gh/malfet/425/head 2025-07-17T06:36:47.0430177Z * [new branch] gh/malfet/425/orig -> origin/gh/malfet/425/orig 2025-07-17T06:36:47.0430651Z * [new branch] gh/malfet/426/base -> origin/gh/malfet/426/base 2025-07-17T06:36:47.0431128Z * [new branch] gh/malfet/426/head -> origin/gh/malfet/426/head 2025-07-17T06:36:47.0431612Z * [new branch] gh/malfet/426/orig -> origin/gh/malfet/426/orig 2025-07-17T06:36:47.0432090Z * [new branch] gh/malfet/427/base -> origin/gh/malfet/427/base 2025-07-17T06:36:47.0432553Z * [new branch] gh/malfet/427/head -> origin/gh/malfet/427/head 2025-07-17T06:36:47.0433027Z * [new branch] gh/malfet/427/orig -> origin/gh/malfet/427/orig 2025-07-17T06:36:47.0433492Z * [new branch] gh/malfet/428/base -> origin/gh/malfet/428/base 2025-07-17T06:36:47.0433968Z * [new branch] gh/malfet/428/head -> origin/gh/malfet/428/head 2025-07-17T06:36:47.0434436Z * [new branch] gh/malfet/428/orig -> origin/gh/malfet/428/orig 2025-07-17T06:36:47.0434913Z * [new branch] gh/malfet/429/base -> origin/gh/malfet/429/base 2025-07-17T06:36:47.0435647Z * [new branch] gh/malfet/429/head -> origin/gh/malfet/429/head 2025-07-17T06:36:47.0436123Z * [new branch] gh/malfet/429/orig -> origin/gh/malfet/429/orig 2025-07-17T06:36:47.0436599Z * [new branch] gh/malfet/430/base -> origin/gh/malfet/430/base 2025-07-17T06:36:47.0437067Z * [new branch] gh/malfet/430/head -> origin/gh/malfet/430/head 2025-07-17T06:36:47.0437549Z * [new branch] gh/malfet/430/orig -> origin/gh/malfet/430/orig 2025-07-17T06:36:47.0438038Z * [new branch] gh/malfet/431/base -> origin/gh/malfet/431/base 2025-07-17T06:36:47.0438504Z * [new branch] gh/malfet/431/head -> origin/gh/malfet/431/head 2025-07-17T06:36:47.0438988Z * [new branch] gh/malfet/431/orig -> origin/gh/malfet/431/orig 2025-07-17T06:36:47.0439453Z * [new branch] gh/malfet/432/base -> origin/gh/malfet/432/base 2025-07-17T06:36:47.0440020Z * [new branch] gh/malfet/432/head -> origin/gh/malfet/432/head 2025-07-17T06:36:47.0440504Z * [new branch] gh/malfet/432/orig -> origin/gh/malfet/432/orig 2025-07-17T06:36:47.0440975Z * [new branch] gh/malfet/433/base -> origin/gh/malfet/433/base 2025-07-17T06:36:47.0441460Z * [new branch] gh/malfet/433/head -> origin/gh/malfet/433/head 2025-07-17T06:36:47.0441927Z * [new branch] gh/malfet/433/orig -> origin/gh/malfet/433/orig 2025-07-17T06:36:47.0442417Z * [new branch] gh/malfet/434/base -> origin/gh/malfet/434/base 2025-07-17T06:36:47.0442890Z * [new branch] gh/malfet/434/head -> origin/gh/malfet/434/head 2025-07-17T06:36:47.0443362Z * [new branch] gh/malfet/434/orig -> origin/gh/malfet/434/orig 2025-07-17T06:36:47.0443841Z * [new branch] gh/malfet/435/base -> origin/gh/malfet/435/base 2025-07-17T06:36:47.0444325Z * [new branch] gh/malfet/435/head -> origin/gh/malfet/435/head 2025-07-17T06:36:47.0444797Z * [new branch] gh/malfet/435/orig -> origin/gh/malfet/435/orig 2025-07-17T06:36:47.0445263Z * [new branch] gh/malfet/436/base -> origin/gh/malfet/436/base 2025-07-17T06:36:47.0445740Z * [new branch] gh/malfet/436/head -> origin/gh/malfet/436/head 2025-07-17T06:36:47.0446221Z * [new branch] gh/malfet/436/orig -> origin/gh/malfet/436/orig 2025-07-17T06:36:47.0446696Z * [new branch] gh/malfet/437/base -> origin/gh/malfet/437/base 2025-07-17T06:36:47.0447171Z * [new branch] gh/malfet/437/head -> origin/gh/malfet/437/head 2025-07-17T06:36:47.0447636Z * [new branch] gh/malfet/437/orig -> origin/gh/malfet/437/orig 2025-07-17T06:36:47.0448112Z * [new branch] gh/malfet/64/base -> origin/gh/malfet/64/base 2025-07-17T06:36:47.0448589Z * [new branch] gh/malfet/64/head -> origin/gh/malfet/64/head 2025-07-17T06:36:47.0449097Z * [new branch] gh/manuelcandales/10/base -> origin/gh/manuelcandales/10/base 2025-07-17T06:36:47.0449664Z * [new branch] gh/manuelcandales/10/head -> origin/gh/manuelcandales/10/head 2025-07-17T06:36:47.0450216Z * [new branch] gh/manuelcandales/10/orig -> origin/gh/manuelcandales/10/orig 2025-07-17T06:36:47.1052921Z * [new branch] gh/manuelcandales/11/base -> origin/gh/manuelcandales/11/base 2025-07-17T06:36:47.1053535Z * [new branch] gh/manuelcandales/11/head -> origin/gh/manuelcandales/11/head 2025-07-17T06:36:47.1054096Z * [new branch] gh/manuelcandales/11/orig -> origin/gh/manuelcandales/11/orig 2025-07-17T06:36:47.1054656Z * [new branch] gh/manuelcandales/12/base -> origin/gh/manuelcandales/12/base 2025-07-17T06:36:47.1055373Z * [new branch] gh/manuelcandales/12/head -> origin/gh/manuelcandales/12/head 2025-07-17T06:36:47.1055921Z * [new branch] gh/manuelcandales/12/orig -> origin/gh/manuelcandales/12/orig 2025-07-17T06:36:47.1056487Z * [new branch] gh/manuelcandales/13/base -> origin/gh/manuelcandales/13/base 2025-07-17T06:36:47.1057039Z * [new branch] gh/manuelcandales/13/head -> origin/gh/manuelcandales/13/head 2025-07-17T06:36:47.1057594Z * [new branch] gh/manuelcandales/13/orig -> origin/gh/manuelcandales/13/orig 2025-07-17T06:36:47.1058149Z * [new branch] gh/manuelcandales/14/base -> origin/gh/manuelcandales/14/base 2025-07-17T06:36:47.1058695Z * [new branch] gh/manuelcandales/14/head -> origin/gh/manuelcandales/14/head 2025-07-17T06:36:47.1059248Z * [new branch] gh/manuelcandales/14/orig -> origin/gh/manuelcandales/14/orig 2025-07-17T06:36:47.1059804Z * [new branch] gh/manuelcandales/15/base -> origin/gh/manuelcandales/15/base 2025-07-17T06:36:47.1060433Z * [new branch] gh/manuelcandales/15/head -> origin/gh/manuelcandales/15/head 2025-07-17T06:36:47.1061000Z * [new branch] gh/manuelcandales/15/orig -> origin/gh/manuelcandales/15/orig 2025-07-17T06:36:47.1061555Z * [new branch] gh/manuelcandales/16/base -> origin/gh/manuelcandales/16/base 2025-07-17T06:36:47.1062109Z * [new branch] gh/manuelcandales/16/head -> origin/gh/manuelcandales/16/head 2025-07-17T06:36:47.1062657Z * [new branch] gh/manuelcandales/16/orig -> origin/gh/manuelcandales/16/orig 2025-07-17T06:36:47.1063217Z * [new branch] gh/manuelcandales/17/base -> origin/gh/manuelcandales/17/base 2025-07-17T06:36:47.1063773Z * [new branch] gh/manuelcandales/17/head -> origin/gh/manuelcandales/17/head 2025-07-17T06:36:47.1064325Z * [new branch] gh/manuelcandales/17/orig -> origin/gh/manuelcandales/17/orig 2025-07-17T06:36:47.1064904Z * [new branch] gh/manuelcandales/8/base -> origin/gh/manuelcandales/8/base 2025-07-17T06:36:47.1065451Z * [new branch] gh/manuelcandales/8/head -> origin/gh/manuelcandales/8/head 2025-07-17T06:36:47.1065997Z * [new branch] gh/manuelcandales/8/orig -> origin/gh/manuelcandales/8/orig 2025-07-17T06:36:47.1066538Z * [new branch] gh/manuelcandales/9/base -> origin/gh/manuelcandales/9/base 2025-07-17T06:36:47.1067085Z * [new branch] gh/manuelcandales/9/head -> origin/gh/manuelcandales/9/head 2025-07-17T06:36:47.1067630Z * [new branch] gh/manuelcandales/9/orig -> origin/gh/manuelcandales/9/orig 2025-07-17T06:36:47.1068128Z * [new branch] gh/markkm/1/base -> origin/gh/markkm/1/base 2025-07-17T06:36:47.1068628Z * [new branch] gh/masnesral/204/base -> origin/gh/masnesral/204/base 2025-07-17T06:36:47.1069206Z * [new branch] gh/masnesral/204/head -> origin/gh/masnesral/204/head 2025-07-17T06:36:47.1069714Z * [new branch] gh/masnesral/204/orig -> origin/gh/masnesral/204/orig 2025-07-17T06:36:47.1070225Z * [new branch] gh/masnesral/208/base -> origin/gh/masnesral/208/base 2025-07-17T06:36:47.1070717Z * [new branch] gh/masnesral/208/head -> origin/gh/masnesral/208/head 2025-07-17T06:36:47.1071214Z * [new branch] gh/masnesral/208/orig -> origin/gh/masnesral/208/orig 2025-07-17T06:36:47.1071711Z * [new branch] gh/masnesral/209/base -> origin/gh/masnesral/209/base 2025-07-17T06:36:47.1072212Z * [new branch] gh/masnesral/209/head -> origin/gh/masnesral/209/head 2025-07-17T06:36:47.1073071Z * [new branch] gh/masnesral/209/orig -> origin/gh/masnesral/209/orig 2025-07-17T06:36:47.1073877Z * [new branch] gh/masnesral/210/base -> origin/gh/masnesral/210/base 2025-07-17T06:36:47.1074504Z * [new branch] gh/masnesral/210/head -> origin/gh/masnesral/210/head 2025-07-17T06:36:47.1075054Z * [new branch] gh/masnesral/210/orig -> origin/gh/masnesral/210/orig 2025-07-17T06:36:47.1075562Z * [new branch] gh/masnesral/211/base -> origin/gh/masnesral/211/base 2025-07-17T06:36:47.1076074Z * [new branch] gh/masnesral/211/head -> origin/gh/masnesral/211/head 2025-07-17T06:36:47.1076577Z * [new branch] gh/masnesral/211/orig -> origin/gh/masnesral/211/orig 2025-07-17T06:36:47.1077081Z * [new branch] gh/masnesral/212/base -> origin/gh/masnesral/212/base 2025-07-17T06:36:47.1077576Z * [new branch] gh/masnesral/212/head -> origin/gh/masnesral/212/head 2025-07-17T06:36:47.1539974Z * [new branch] gh/masnesral/212/orig -> origin/gh/masnesral/212/orig 2025-07-17T06:36:47.1540535Z * [new branch] gh/masnesral/213/base -> origin/gh/masnesral/213/base 2025-07-17T06:36:47.1541185Z * [new branch] gh/masnesral/213/head -> origin/gh/masnesral/213/head 2025-07-17T06:36:47.1541703Z * [new branch] gh/masnesral/213/orig -> origin/gh/masnesral/213/orig 2025-07-17T06:36:47.1542197Z * [new branch] gh/masnesral/214/base -> origin/gh/masnesral/214/base 2025-07-17T06:36:47.1542712Z * [new branch] gh/masnesral/214/head -> origin/gh/masnesral/214/head 2025-07-17T06:36:47.1543224Z * [new branch] gh/masnesral/214/orig -> origin/gh/masnesral/214/orig 2025-07-17T06:36:47.1543727Z * [new branch] gh/masnesral/215/base -> origin/gh/masnesral/215/base 2025-07-17T06:36:47.1544226Z * [new branch] gh/masnesral/215/head -> origin/gh/masnesral/215/head 2025-07-17T06:36:47.1544718Z * [new branch] gh/masnesral/215/orig -> origin/gh/masnesral/215/orig 2025-07-17T06:36:47.1545230Z * [new branch] gh/masnesral/216/base -> origin/gh/masnesral/216/base 2025-07-17T06:36:47.1545726Z * [new branch] gh/masnesral/216/head -> origin/gh/masnesral/216/head 2025-07-17T06:36:47.1546225Z * [new branch] gh/masnesral/216/orig -> origin/gh/masnesral/216/orig 2025-07-17T06:36:47.1546728Z * [new branch] gh/masnesral/217/base -> origin/gh/masnesral/217/base 2025-07-17T06:36:47.1547221Z * [new branch] gh/masnesral/217/head -> origin/gh/masnesral/217/head 2025-07-17T06:36:47.1547720Z * [new branch] gh/masnesral/217/orig -> origin/gh/masnesral/217/orig 2025-07-17T06:36:47.1548216Z * [new branch] gh/masnesral/218/base -> origin/gh/masnesral/218/base 2025-07-17T06:36:47.1548715Z * [new branch] gh/masnesral/218/head -> origin/gh/masnesral/218/head 2025-07-17T06:36:47.1549223Z * [new branch] gh/masnesral/218/orig -> origin/gh/masnesral/218/orig 2025-07-17T06:36:47.1549724Z * [new branch] gh/masnesral/219/base -> origin/gh/masnesral/219/base 2025-07-17T06:36:47.1550224Z * [new branch] gh/masnesral/219/head -> origin/gh/masnesral/219/head 2025-07-17T06:36:47.1550714Z * [new branch] gh/masnesral/219/orig -> origin/gh/masnesral/219/orig 2025-07-17T06:36:47.1551213Z * [new branch] gh/masnesral/220/base -> origin/gh/masnesral/220/base 2025-07-17T06:36:47.1551719Z * [new branch] gh/masnesral/220/head -> origin/gh/masnesral/220/head 2025-07-17T06:36:47.1552210Z * [new branch] gh/masnesral/220/orig -> origin/gh/masnesral/220/orig 2025-07-17T06:36:47.1552709Z * [new branch] gh/masnesral/221/base -> origin/gh/masnesral/221/base 2025-07-17T06:36:47.1553204Z * [new branch] gh/masnesral/221/head -> origin/gh/masnesral/221/head 2025-07-17T06:36:47.1553799Z * [new branch] gh/masnesral/221/orig -> origin/gh/masnesral/221/orig 2025-07-17T06:36:47.1554306Z * [new branch] gh/masnesral/222/base -> origin/gh/masnesral/222/base 2025-07-17T06:36:47.1554805Z * [new branch] gh/masnesral/222/head -> origin/gh/masnesral/222/head 2025-07-17T06:36:47.1555398Z * [new branch] gh/masnesral/222/orig -> origin/gh/masnesral/222/orig 2025-07-17T06:36:47.1555896Z * [new branch] gh/masnesral/223/base -> origin/gh/masnesral/223/base 2025-07-17T06:36:47.1556412Z * [new branch] gh/masnesral/223/head -> origin/gh/masnesral/223/head 2025-07-17T06:36:47.1556922Z * [new branch] gh/masnesral/223/orig -> origin/gh/masnesral/223/orig 2025-07-17T06:36:47.1557416Z * [new branch] gh/masnesral/224/base -> origin/gh/masnesral/224/base 2025-07-17T06:36:47.1557925Z * [new branch] gh/masnesral/224/head -> origin/gh/masnesral/224/head 2025-07-17T06:36:47.1558497Z * [new branch] gh/masnesral/224/orig -> origin/gh/masnesral/224/orig 2025-07-17T06:36:47.1559007Z * [new branch] gh/masnesral/225/base -> origin/gh/masnesral/225/base 2025-07-17T06:36:47.1559518Z * [new branch] gh/masnesral/225/head -> origin/gh/masnesral/225/head 2025-07-17T06:36:47.1560020Z * [new branch] gh/masnesral/225/orig -> origin/gh/masnesral/225/orig 2025-07-17T06:36:47.1560530Z * [new branch] gh/masnesral/226/base -> origin/gh/masnesral/226/base 2025-07-17T06:36:47.1561028Z * [new branch] gh/masnesral/226/head -> origin/gh/masnesral/226/head 2025-07-17T06:36:47.1561536Z * [new branch] gh/masnesral/226/orig -> origin/gh/masnesral/226/orig 2025-07-17T06:36:47.1562030Z * [new branch] gh/masnesral/227/base -> origin/gh/masnesral/227/base 2025-07-17T06:36:47.1562536Z * [new branch] gh/masnesral/227/head -> origin/gh/masnesral/227/head 2025-07-17T06:36:47.1563047Z * [new branch] gh/masnesral/227/orig -> origin/gh/masnesral/227/orig 2025-07-17T06:36:47.2051017Z * [new branch] gh/masnesral/228/base -> origin/gh/masnesral/228/base 2025-07-17T06:36:47.2051583Z * [new branch] gh/masnesral/228/head -> origin/gh/masnesral/228/head 2025-07-17T06:36:47.2052091Z * [new branch] gh/masnesral/228/orig -> origin/gh/masnesral/228/orig 2025-07-17T06:36:47.2052592Z * [new branch] gh/masnesral/229/base -> origin/gh/masnesral/229/base 2025-07-17T06:36:47.2053098Z * [new branch] gh/masnesral/229/head -> origin/gh/masnesral/229/head 2025-07-17T06:36:47.2053594Z * [new branch] gh/masnesral/229/orig -> origin/gh/masnesral/229/orig 2025-07-17T06:36:47.2054094Z * [new branch] gh/masnesral/230/base -> origin/gh/masnesral/230/base 2025-07-17T06:36:47.2054611Z * [new branch] gh/masnesral/230/head -> origin/gh/masnesral/230/head 2025-07-17T06:36:47.2055103Z * [new branch] gh/masnesral/230/orig -> origin/gh/masnesral/230/orig 2025-07-17T06:36:47.2055608Z * [new branch] gh/masnesral/34/base -> origin/gh/masnesral/34/base 2025-07-17T06:36:47.2056111Z * [new branch] gh/mhorowitz/0/base -> origin/gh/mhorowitz/0/base 2025-07-17T06:36:47.2056607Z * [new branch] gh/mhorowitz/0/head -> origin/gh/mhorowitz/0/head 2025-07-17T06:36:47.2057103Z * [new branch] gh/mhorowitz/1/base -> origin/gh/mhorowitz/1/base 2025-07-17T06:36:47.2057588Z * [new branch] gh/mhorowitz/1/head -> origin/gh/mhorowitz/1/head 2025-07-17T06:36:47.2058074Z * [new branch] gh/mhorowitz/2/base -> origin/gh/mhorowitz/2/base 2025-07-17T06:36:47.2058695Z * [new branch] gh/mhorowitz/2/head -> origin/gh/mhorowitz/2/head 2025-07-17T06:36:47.2059190Z * [new branch] gh/mhorowitz/3/base -> origin/gh/mhorowitz/3/base 2025-07-17T06:36:47.2059683Z * [new branch] gh/mhorowitz/3/head -> origin/gh/mhorowitz/3/head 2025-07-17T06:36:47.2060179Z * [new branch] gh/mhorowitz/4/base -> origin/gh/mhorowitz/4/base 2025-07-17T06:36:47.2060677Z * [new branch] gh/mhorowitz/4/head -> origin/gh/mhorowitz/4/head 2025-07-17T06:36:47.2061159Z * [new branch] gh/mhorowitz/5/base -> origin/gh/mhorowitz/5/base 2025-07-17T06:36:47.2061643Z * [new branch] gh/mhorowitz/5/head -> origin/gh/mhorowitz/5/head 2025-07-17T06:36:47.2062129Z * [new branch] gh/mhorowitz/6/base -> origin/gh/mhorowitz/6/base 2025-07-17T06:36:47.2062615Z * [new branch] gh/mhorowitz/6/head -> origin/gh/mhorowitz/6/head 2025-07-17T06:36:47.2063175Z * [new branch] gh/mikaylagawarecki/234/base -> origin/gh/mikaylagawarecki/234/base 2025-07-17T06:36:47.2063865Z * [new branch] gh/mikaylagawarecki/234/head -> origin/gh/mikaylagawarecki/234/head 2025-07-17T06:36:47.2064465Z * [new branch] gh/mikaylagawarecki/235/base -> origin/gh/mikaylagawarecki/235/base 2025-07-17T06:36:47.2065048Z * [new branch] gh/mikaylagawarecki/235/head -> origin/gh/mikaylagawarecki/235/head 2025-07-17T06:36:47.2065641Z * [new branch] gh/mikaylagawarecki/236/base -> origin/gh/mikaylagawarecki/236/base 2025-07-17T06:36:47.2066233Z * [new branch] gh/mikaylagawarecki/236/head -> origin/gh/mikaylagawarecki/236/head 2025-07-17T06:36:47.2066817Z * [new branch] gh/mikaylagawarecki/237/base -> origin/gh/mikaylagawarecki/237/base 2025-07-17T06:36:47.2067415Z * [new branch] gh/mikaylagawarecki/237/head -> origin/gh/mikaylagawarecki/237/head 2025-07-17T06:36:47.2068001Z * [new branch] gh/mikaylagawarecki/238/base -> origin/gh/mikaylagawarecki/238/base 2025-07-17T06:36:47.2068597Z * [new branch] gh/mikaylagawarecki/238/head -> origin/gh/mikaylagawarecki/238/head 2025-07-17T06:36:47.2069188Z * [new branch] gh/mikaylagawarecki/313/base -> origin/gh/mikaylagawarecki/313/base 2025-07-17T06:36:47.2069772Z * [new branch] gh/mikaylagawarecki/313/head -> origin/gh/mikaylagawarecki/313/head 2025-07-17T06:36:47.2070367Z * [new branch] gh/mikaylagawarecki/313/orig -> origin/gh/mikaylagawarecki/313/orig 2025-07-17T06:36:47.2070952Z * [new branch] gh/mikaylagawarecki/316/base -> origin/gh/mikaylagawarecki/316/base 2025-07-17T06:36:47.2071555Z * [new branch] gh/mikaylagawarecki/316/head -> origin/gh/mikaylagawarecki/316/head 2025-07-17T06:36:47.2072152Z * [new branch] gh/mikaylagawarecki/316/orig -> origin/gh/mikaylagawarecki/316/orig 2025-07-17T06:36:47.2072739Z * [new branch] gh/mikaylagawarecki/317/base -> origin/gh/mikaylagawarecki/317/base 2025-07-17T06:36:47.2073335Z * [new branch] gh/mikaylagawarecki/317/head -> origin/gh/mikaylagawarecki/317/head 2025-07-17T06:36:47.2073918Z * [new branch] gh/mikaylagawarecki/317/orig -> origin/gh/mikaylagawarecki/317/orig 2025-07-17T06:36:47.2074508Z * [new branch] gh/mikaylagawarecki/318/base -> origin/gh/mikaylagawarecki/318/base 2025-07-17T06:36:47.2668700Z * [new branch] gh/mikaylagawarecki/318/head -> origin/gh/mikaylagawarecki/318/head 2025-07-17T06:36:47.2669521Z * [new branch] gh/mikaylagawarecki/318/orig -> origin/gh/mikaylagawarecki/318/orig 2025-07-17T06:36:47.2670572Z * [new branch] gh/mikaylagawarecki/319/base -> origin/gh/mikaylagawarecki/319/base 2025-07-17T06:36:47.2671188Z * [new branch] gh/mikaylagawarecki/319/head -> origin/gh/mikaylagawarecki/319/head 2025-07-17T06:36:47.2671927Z * [new branch] gh/mikaylagawarecki/319/orig -> origin/gh/mikaylagawarecki/319/orig 2025-07-17T06:36:47.2672534Z * [new branch] gh/mikaylagawarecki/320/base -> origin/gh/mikaylagawarecki/320/base 2025-07-17T06:36:47.2673114Z * [new branch] gh/mikaylagawarecki/320/head -> origin/gh/mikaylagawarecki/320/head 2025-07-17T06:36:47.2673700Z * [new branch] gh/mikaylagawarecki/320/orig -> origin/gh/mikaylagawarecki/320/orig 2025-07-17T06:36:47.2674297Z * [new branch] gh/mikaylagawarecki/321/base -> origin/gh/mikaylagawarecki/321/base 2025-07-17T06:36:47.2674881Z * [new branch] gh/mikaylagawarecki/321/head -> origin/gh/mikaylagawarecki/321/head 2025-07-17T06:36:47.2675908Z * [new branch] gh/mikaylagawarecki/321/orig -> origin/gh/mikaylagawarecki/321/orig 2025-07-17T06:36:47.2676708Z * [new branch] gh/mrmiywj/1/base -> origin/gh/mrmiywj/1/base 2025-07-17T06:36:47.2677207Z * [new branch] gh/mrmiywj/1/head -> origin/gh/mrmiywj/1/head 2025-07-17T06:36:47.2677819Z * [new branch] gh/muchulee8/62/base -> origin/gh/muchulee8/62/base 2025-07-17T06:36:47.2678321Z * [new branch] gh/muchulee8/62/head -> origin/gh/muchulee8/62/head 2025-07-17T06:36:47.2678825Z * [new branch] gh/muchulee8/62/orig -> origin/gh/muchulee8/62/orig 2025-07-17T06:36:47.2679321Z * [new branch] gh/nautsimon/1/base -> origin/gh/nautsimon/1/base 2025-07-17T06:36:47.2679816Z * [new branch] gh/nautsimon/1/head -> origin/gh/nautsimon/1/head 2025-07-17T06:36:47.2680300Z * [new branch] gh/nautsimon/1/orig -> origin/gh/nautsimon/1/orig 2025-07-17T06:36:47.2680805Z * [new branch] gh/nautsimon/10/base -> origin/gh/nautsimon/10/base 2025-07-17T06:36:47.2681515Z * [new branch] gh/nautsimon/10/head -> origin/gh/nautsimon/10/head 2025-07-17T06:36:47.2682402Z * [new branch] gh/nautsimon/10/orig -> origin/gh/nautsimon/10/orig 2025-07-17T06:36:47.2682910Z * [new branch] gh/nautsimon/11/base -> origin/gh/nautsimon/11/base 2025-07-17T06:36:47.2683399Z * [new branch] gh/nautsimon/11/head -> origin/gh/nautsimon/11/head 2025-07-17T06:36:47.2683903Z * [new branch] gh/nautsimon/11/orig -> origin/gh/nautsimon/11/orig 2025-07-17T06:36:47.2684401Z * [new branch] gh/nautsimon/12/base -> origin/gh/nautsimon/12/base 2025-07-17T06:36:47.2684892Z * [new branch] gh/nautsimon/12/head -> origin/gh/nautsimon/12/head 2025-07-17T06:36:47.2685386Z * [new branch] gh/nautsimon/12/orig -> origin/gh/nautsimon/12/orig 2025-07-17T06:36:47.2685876Z * [new branch] gh/nautsimon/13/base -> origin/gh/nautsimon/13/base 2025-07-17T06:36:47.2686381Z * [new branch] gh/nautsimon/13/head -> origin/gh/nautsimon/13/head 2025-07-17T06:36:47.2686883Z * [new branch] gh/nautsimon/13/orig -> origin/gh/nautsimon/13/orig 2025-07-17T06:36:47.2687715Z * [new branch] gh/nautsimon/14/base -> origin/gh/nautsimon/14/base 2025-07-17T06:36:47.2688472Z * [new branch] gh/nautsimon/14/head -> origin/gh/nautsimon/14/head 2025-07-17T06:36:47.2688960Z * [new branch] gh/nautsimon/14/orig -> origin/gh/nautsimon/14/orig 2025-07-17T06:36:47.2689456Z * [new branch] gh/nautsimon/15/base -> origin/gh/nautsimon/15/base 2025-07-17T06:36:47.2689952Z * [new branch] gh/nautsimon/15/head -> origin/gh/nautsimon/15/head 2025-07-17T06:36:47.2690457Z * [new branch] gh/nautsimon/15/orig -> origin/gh/nautsimon/15/orig 2025-07-17T06:36:47.2690953Z * [new branch] gh/nautsimon/16/base -> origin/gh/nautsimon/16/base 2025-07-17T06:36:47.2691440Z * [new branch] gh/nautsimon/16/head -> origin/gh/nautsimon/16/head 2025-07-17T06:36:47.2692057Z * [new branch] gh/nautsimon/16/orig -> origin/gh/nautsimon/16/orig 2025-07-17T06:36:47.2692550Z * [new branch] gh/nautsimon/17/base -> origin/gh/nautsimon/17/base 2025-07-17T06:36:47.2693150Z * [new branch] gh/nautsimon/17/head -> origin/gh/nautsimon/17/head 2025-07-17T06:36:47.2694082Z * [new branch] gh/nautsimon/17/orig -> origin/gh/nautsimon/17/orig 2025-07-17T06:36:47.2694652Z * [new branch] gh/nautsimon/18/base -> origin/gh/nautsimon/18/base 2025-07-17T06:36:47.2695158Z * [new branch] gh/nautsimon/18/head -> origin/gh/nautsimon/18/head 2025-07-17T06:36:47.2695650Z * [new branch] gh/nautsimon/18/orig -> origin/gh/nautsimon/18/orig 2025-07-17T06:36:47.3121230Z * [new branch] gh/nautsimon/19/base -> origin/gh/nautsimon/19/base 2025-07-17T06:36:47.3121808Z * [new branch] gh/nautsimon/19/head -> origin/gh/nautsimon/19/head 2025-07-17T06:36:47.3122431Z * [new branch] gh/nautsimon/19/orig -> origin/gh/nautsimon/19/orig 2025-07-17T06:36:47.3122940Z * [new branch] gh/nautsimon/2/base -> origin/gh/nautsimon/2/base 2025-07-17T06:36:47.3123466Z * [new branch] gh/nautsimon/2/head -> origin/gh/nautsimon/2/head 2025-07-17T06:36:47.3123950Z * [new branch] gh/nautsimon/2/orig -> origin/gh/nautsimon/2/orig 2025-07-17T06:36:47.3124450Z * [new branch] gh/nautsimon/20/base -> origin/gh/nautsimon/20/base 2025-07-17T06:36:47.3124951Z * [new branch] gh/nautsimon/20/head -> origin/gh/nautsimon/20/head 2025-07-17T06:36:47.3125444Z * [new branch] gh/nautsimon/20/orig -> origin/gh/nautsimon/20/orig 2025-07-17T06:36:47.3125936Z * [new branch] gh/nautsimon/21/base -> origin/gh/nautsimon/21/base 2025-07-17T06:36:47.3126429Z * [new branch] gh/nautsimon/21/head -> origin/gh/nautsimon/21/head 2025-07-17T06:36:47.3126935Z * [new branch] gh/nautsimon/21/orig -> origin/gh/nautsimon/21/orig 2025-07-17T06:36:47.3127423Z * [new branch] gh/nautsimon/3/base -> origin/gh/nautsimon/3/base 2025-07-17T06:36:47.3127916Z * [new branch] gh/nautsimon/3/head -> origin/gh/nautsimon/3/head 2025-07-17T06:36:47.3128548Z * [new branch] gh/nautsimon/3/orig -> origin/gh/nautsimon/3/orig 2025-07-17T06:36:47.3129491Z * [new branch] gh/nautsimon/4/base -> origin/gh/nautsimon/4/base 2025-07-17T06:36:47.3130052Z * [new branch] gh/nautsimon/4/head -> origin/gh/nautsimon/4/head 2025-07-17T06:36:47.3130538Z * [new branch] gh/nautsimon/4/orig -> origin/gh/nautsimon/4/orig 2025-07-17T06:36:47.3131028Z * [new branch] gh/nautsimon/5/base -> origin/gh/nautsimon/5/base 2025-07-17T06:36:47.3131527Z * [new branch] gh/nautsimon/5/head -> origin/gh/nautsimon/5/head 2025-07-17T06:36:47.3132021Z * [new branch] gh/nautsimon/5/orig -> origin/gh/nautsimon/5/orig 2025-07-17T06:36:47.3132510Z * [new branch] gh/nautsimon/6/base -> origin/gh/nautsimon/6/base 2025-07-17T06:36:47.3132987Z * [new branch] gh/nautsimon/6/head -> origin/gh/nautsimon/6/head 2025-07-17T06:36:47.3133473Z * [new branch] gh/nautsimon/6/orig -> origin/gh/nautsimon/6/orig 2025-07-17T06:36:47.3133950Z * [new branch] gh/nautsimon/7/base -> origin/gh/nautsimon/7/base 2025-07-17T06:36:47.3134620Z * [new branch] gh/nautsimon/7/head -> origin/gh/nautsimon/7/head 2025-07-17T06:36:47.3135504Z * [new branch] gh/nautsimon/7/orig -> origin/gh/nautsimon/7/orig 2025-07-17T06:36:47.3136019Z * [new branch] gh/nautsimon/8/base -> origin/gh/nautsimon/8/base 2025-07-17T06:36:47.3136634Z * [new branch] gh/nautsimon/8/head -> origin/gh/nautsimon/8/head 2025-07-17T06:36:47.3137122Z * [new branch] gh/nautsimon/8/orig -> origin/gh/nautsimon/8/orig 2025-07-17T06:36:47.3137616Z * [new branch] gh/nautsimon/9/base -> origin/gh/nautsimon/9/base 2025-07-17T06:36:47.3138096Z * [new branch] gh/nautsimon/9/head -> origin/gh/nautsimon/9/head 2025-07-17T06:36:47.3138585Z * [new branch] gh/nautsimon/9/orig -> origin/gh/nautsimon/9/orig 2025-07-17T06:36:47.3139065Z * [new branch] gh/oulgen/35/base -> origin/gh/oulgen/35/base 2025-07-17T06:36:47.3139538Z * [new branch] gh/oulgen/35/head -> origin/gh/oulgen/35/head 2025-07-17T06:36:47.3140006Z * [new branch] gh/oulgen/35/orig -> origin/gh/oulgen/35/orig 2025-07-17T06:36:47.3140751Z * [new branch] gh/oulgen/38/base -> origin/gh/oulgen/38/base 2025-07-17T06:36:47.3141630Z * [new branch] gh/oulgen/38/head -> origin/gh/oulgen/38/head 2025-07-17T06:36:47.3142107Z * [new branch] gh/oulgen/38/orig -> origin/gh/oulgen/38/orig 2025-07-17T06:36:47.3142572Z * [new branch] gh/oulgen/42/base -> origin/gh/oulgen/42/base 2025-07-17T06:36:47.3143039Z * [new branch] gh/oulgen/42/head -> origin/gh/oulgen/42/head 2025-07-17T06:36:47.3143500Z * [new branch] gh/oulgen/42/orig -> origin/gh/oulgen/42/orig 2025-07-17T06:36:47.3143973Z * [new branch] gh/oulgen/43/base -> origin/gh/oulgen/43/base 2025-07-17T06:36:47.3144437Z * [new branch] gh/oulgen/43/head -> origin/gh/oulgen/43/head 2025-07-17T06:36:47.3144900Z * [new branch] gh/oulgen/43/orig -> origin/gh/oulgen/43/orig 2025-07-17T06:36:47.3145374Z * [new branch] gh/oulgen/44/base -> origin/gh/oulgen/44/base 2025-07-17T06:36:47.3145838Z * [new branch] gh/oulgen/44/head -> origin/gh/oulgen/44/head 2025-07-17T06:36:47.4386594Z * [new branch] gh/oulgen/44/orig -> origin/gh/oulgen/44/orig 2025-07-17T06:36:47.4387139Z * [new branch] gh/pearu/108/base -> origin/gh/pearu/108/base 2025-07-17T06:36:47.4387621Z * [new branch] gh/pearu/108/head -> origin/gh/pearu/108/head 2025-07-17T06:36:47.4388107Z * [new branch] gh/pearu/108/orig -> origin/gh/pearu/108/orig 2025-07-17T06:36:47.4388567Z * [new branch] gh/pearu/113/base -> origin/gh/pearu/113/base 2025-07-17T06:36:47.4389054Z * [new branch] gh/pearu/113/head -> origin/gh/pearu/113/head 2025-07-17T06:36:47.4389524Z * [new branch] gh/pearu/113/orig -> origin/gh/pearu/113/orig 2025-07-17T06:36:47.4390081Z * [new branch] gh/pearu/56/base -> origin/gh/pearu/56/base 2025-07-17T06:36:47.4390607Z * [new branch] gh/pearu/56/head -> origin/gh/pearu/56/head 2025-07-17T06:36:47.4391116Z * [new branch] gh/pearu/56/orig -> origin/gh/pearu/56/orig 2025-07-17T06:36:47.4391577Z * [new branch] gh/pearu/97/base -> origin/gh/pearu/97/base 2025-07-17T06:36:47.4392033Z * [new branch] gh/pearu/97/head -> origin/gh/pearu/97/head 2025-07-17T06:36:47.4392479Z * [new branch] gh/pearu/97/orig -> origin/gh/pearu/97/orig 2025-07-17T06:36:47.4392955Z * [new branch] gh/qqaatw/29/base -> origin/gh/qqaatw/29/base 2025-07-17T06:36:47.4393412Z * [new branch] gh/qqaatw/29/head -> origin/gh/qqaatw/29/head 2025-07-17T06:36:47.4393897Z * [new branch] gh/qqaatw/29/orig -> origin/gh/qqaatw/29/orig 2025-07-17T06:36:47.4394666Z * [new branch] gh/raymo/cleanup-dynamo-logging -> origin/gh/raymo/cleanup-dynamo-logging 2025-07-17T06:36:47.4395355Z * [new branch] gh/raymo/cuda-error-exp -> origin/gh/raymo/cuda-error-exp 2025-07-17T06:36:47.4395901Z * [new branch] gh/raymo/refresh-script -> origin/gh/raymo/refresh-script 2025-07-17T06:36:47.4396499Z * [new branch] gh/rec/133/base -> origin/gh/rec/133/base 2025-07-17T06:36:47.4397015Z * [new branch] gh/rec/133/head -> origin/gh/rec/133/head 2025-07-17T06:36:47.4397455Z * [new branch] gh/rec/133/orig -> origin/gh/rec/133/orig 2025-07-17T06:36:47.4397904Z * [new branch] gh/rec/137/base -> origin/gh/rec/137/base 2025-07-17T06:36:47.4398350Z * [new branch] gh/rec/137/head -> origin/gh/rec/137/head 2025-07-17T06:36:47.4398785Z * [new branch] gh/rec/137/orig -> origin/gh/rec/137/orig 2025-07-17T06:36:47.4399371Z * [new branch] gh/rec/141/base -> origin/gh/rec/141/base 2025-07-17T06:36:47.4399816Z * [new branch] gh/rec/141/head -> origin/gh/rec/141/head 2025-07-17T06:36:47.4400271Z * [new branch] gh/rec/142/base -> origin/gh/rec/142/base 2025-07-17T06:36:47.4400742Z * [new branch] gh/rec/142/head -> origin/gh/rec/142/head 2025-07-17T06:36:47.4401182Z * [new branch] gh/rec/142/orig -> origin/gh/rec/142/orig 2025-07-17T06:36:47.4401636Z * [new branch] gh/rec/146/base -> origin/gh/rec/146/base 2025-07-17T06:36:47.4402121Z * [new branch] gh/rec/146/head -> origin/gh/rec/146/head 2025-07-17T06:36:47.4402621Z * [new branch] gh/rec/146/orig -> origin/gh/rec/146/orig 2025-07-17T06:36:47.4403115Z * [new branch] gh/rec/148/base -> origin/gh/rec/148/base 2025-07-17T06:36:47.4403563Z * [new branch] gh/rec/148/head -> origin/gh/rec/148/head 2025-07-17T06:36:47.4404004Z * [new branch] gh/rec/148/orig -> origin/gh/rec/148/orig 2025-07-17T06:36:47.4404447Z * [new branch] gh/rec/150/base -> origin/gh/rec/150/base 2025-07-17T06:36:47.4404897Z * [new branch] gh/rec/150/head -> origin/gh/rec/150/head 2025-07-17T06:36:47.4405337Z * [new branch] gh/rec/150/orig -> origin/gh/rec/150/orig 2025-07-17T06:36:47.4405782Z * [new branch] gh/rec/153/base -> origin/gh/rec/153/base 2025-07-17T06:36:47.4406227Z * [new branch] gh/rec/153/head -> origin/gh/rec/153/head 2025-07-17T06:36:47.4406665Z * [new branch] gh/rec/153/orig -> origin/gh/rec/153/orig 2025-07-17T06:36:47.4407111Z * [new branch] gh/rec/154/base -> origin/gh/rec/154/base 2025-07-17T06:36:47.4407561Z * [new branch] gh/rec/154/head -> origin/gh/rec/154/head 2025-07-17T06:36:47.4408017Z * [new branch] gh/rec/154/orig -> origin/gh/rec/154/orig 2025-07-17T06:36:47.4408560Z * [new branch] gh/rec/156/base -> origin/gh/rec/156/base 2025-07-17T06:36:47.4409057Z * [new branch] gh/rec/156/head -> origin/gh/rec/156/head 2025-07-17T06:36:47.4409507Z * [new branch] gh/rec/156/orig -> origin/gh/rec/156/orig 2025-07-17T06:36:47.4409944Z * [new branch] gh/rec/157/base -> origin/gh/rec/157/base 2025-07-17T06:36:47.4937761Z * [new branch] gh/rec/157/head -> origin/gh/rec/157/head 2025-07-17T06:36:47.4938272Z * [new branch] gh/rec/157/orig -> origin/gh/rec/157/orig 2025-07-17T06:36:47.4938770Z * [new branch] gh/ruisizhang123/1/base -> origin/gh/ruisizhang123/1/base 2025-07-17T06:36:47.4939544Z * [new branch] gh/ruisizhang123/1/head -> origin/gh/ruisizhang123/1/head 2025-07-17T06:36:47.4940079Z * [new branch] gh/ruisizhang123/1/orig -> origin/gh/ruisizhang123/1/orig 2025-07-17T06:36:47.4940616Z * [new branch] gh/ruisizhang123/2/base -> origin/gh/ruisizhang123/2/base 2025-07-17T06:36:47.4941148Z * [new branch] gh/ruisizhang123/2/head -> origin/gh/ruisizhang123/2/head 2025-07-17T06:36:47.4941676Z * [new branch] gh/ruisizhang123/2/orig -> origin/gh/ruisizhang123/2/orig 2025-07-17T06:36:47.4942201Z * [new branch] gh/ruisizhang123/3/base -> origin/gh/ruisizhang123/3/base 2025-07-17T06:36:47.4942717Z * [new branch] gh/ruisizhang123/3/head -> origin/gh/ruisizhang123/3/head 2025-07-17T06:36:47.4943261Z * [new branch] gh/ruisizhang123/3/orig -> origin/gh/ruisizhang123/3/orig 2025-07-17T06:36:47.4943804Z * [new branch] gh/ruisizhang123/4/base -> origin/gh/ruisizhang123/4/base 2025-07-17T06:36:47.4944437Z * [new branch] gh/ruisizhang123/4/head -> origin/gh/ruisizhang123/4/head 2025-07-17T06:36:47.4944962Z * [new branch] gh/ruisizhang123/4/orig -> origin/gh/ruisizhang123/4/orig 2025-07-17T06:36:47.4945484Z * [new branch] gh/ruisizhang123/5/base -> origin/gh/ruisizhang123/5/base 2025-07-17T06:36:47.4946018Z * [new branch] gh/ruisizhang123/5/head -> origin/gh/ruisizhang123/5/head 2025-07-17T06:36:47.4946545Z * [new branch] gh/ruisizhang123/5/orig -> origin/gh/ruisizhang123/5/orig 2025-07-17T06:36:47.4947064Z * [new branch] gh/ruisizhang123/6/base -> origin/gh/ruisizhang123/6/base 2025-07-17T06:36:47.4947590Z * [new branch] gh/ruisizhang123/6/head -> origin/gh/ruisizhang123/6/head 2025-07-17T06:36:47.4948105Z * [new branch] gh/ruisizhang123/6/orig -> origin/gh/ruisizhang123/6/orig 2025-07-17T06:36:47.4948610Z * [new branch] gh/sarckk/2/base -> origin/gh/sarckk/2/base 2025-07-17T06:36:47.4949086Z * [new branch] gh/sarckk/2/head -> origin/gh/sarckk/2/head 2025-07-17T06:36:47.4949539Z * [new branch] gh/sarckk/2/orig -> origin/gh/sarckk/2/orig 2025-07-17T06:36:47.4950028Z * [new branch] gh/seemethere/14/base -> origin/gh/seemethere/14/base 2025-07-17T06:36:47.4950527Z * [new branch] gh/seemethere/14/head -> origin/gh/seemethere/14/head 2025-07-17T06:36:47.4951038Z * [new branch] gh/seemethere/14/orig -> origin/gh/seemethere/14/orig 2025-07-17T06:36:47.4951549Z * [new branch] gh/seemethere/23/base -> origin/gh/seemethere/23/base 2025-07-17T06:36:47.4952043Z * [new branch] gh/seemethere/23/head -> origin/gh/seemethere/23/head 2025-07-17T06:36:47.4952627Z * [new branch] gh/seemethere/23/orig -> origin/gh/seemethere/23/orig 2025-07-17T06:36:47.4953190Z * [new branch] gh/seemethere/24/base -> origin/gh/seemethere/24/base 2025-07-17T06:36:47.4953690Z * [new branch] gh/seemethere/24/head -> origin/gh/seemethere/24/head 2025-07-17T06:36:47.4954191Z * [new branch] gh/seemethere/24/orig -> origin/gh/seemethere/24/orig 2025-07-17T06:36:47.4954691Z * [new branch] gh/seemethere/30/base -> origin/gh/seemethere/30/base 2025-07-17T06:36:47.4955302Z * [new branch] gh/seemethere/30/head -> origin/gh/seemethere/30/head 2025-07-17T06:36:47.4955794Z * [new branch] gh/seemethere/30/orig -> origin/gh/seemethere/30/orig 2025-07-17T06:36:47.4956300Z * [new branch] gh/seemethere/32/base -> origin/gh/seemethere/32/base 2025-07-17T06:36:47.4956798Z * [new branch] gh/seemethere/32/head -> origin/gh/seemethere/32/head 2025-07-17T06:36:47.4958026Z * [new branch] gh/seemethere/32/orig -> origin/gh/seemethere/32/orig 2025-07-17T06:36:47.4958547Z * [new branch] gh/seemethere/33/base -> origin/gh/seemethere/33/base 2025-07-17T06:36:47.4959228Z * [new branch] gh/seemethere/33/head -> origin/gh/seemethere/33/head 2025-07-17T06:36:47.4968609Z * [new branch] gh/seemethere/33/orig -> origin/gh/seemethere/33/orig 2025-07-17T06:36:47.4969271Z * [new branch] gh/seemethere/34/base -> origin/gh/seemethere/34/base 2025-07-17T06:36:47.4969802Z * [new branch] gh/seemethere/34/head -> origin/gh/seemethere/34/head 2025-07-17T06:36:47.4970311Z * [new branch] gh/seemethere/34/orig -> origin/gh/seemethere/34/orig 2025-07-17T06:36:47.4970814Z * [new branch] gh/seemethere/35/base -> origin/gh/seemethere/35/base 2025-07-17T06:36:47.4971491Z * [new branch] gh/seemethere/35/head -> origin/gh/seemethere/35/head 2025-07-17T06:36:47.5387703Z * [new branch] gh/seemethere/35/orig -> origin/gh/seemethere/35/orig 2025-07-17T06:36:47.5388287Z * [new branch] gh/seemethere/36/base -> origin/gh/seemethere/36/base 2025-07-17T06:36:47.5388799Z * [new branch] gh/seemethere/36/head -> origin/gh/seemethere/36/head 2025-07-17T06:36:47.5389314Z * [new branch] gh/seemethere/36/orig -> origin/gh/seemethere/36/orig 2025-07-17T06:36:47.5389821Z * [new branch] gh/seemethere/37/base -> origin/gh/seemethere/37/base 2025-07-17T06:36:47.5390445Z * [new branch] gh/seemethere/37/head -> origin/gh/seemethere/37/head 2025-07-17T06:36:47.5391447Z * [new branch] gh/seemethere/37/orig -> origin/gh/seemethere/37/orig 2025-07-17T06:36:47.5392223Z * [new branch] gh/seemethere/38/base -> origin/gh/seemethere/38/base 2025-07-17T06:36:47.5392738Z * [new branch] gh/seemethere/38/head -> origin/gh/seemethere/38/head 2025-07-17T06:36:47.5393265Z * [new branch] gh/seemethere/38/orig -> origin/gh/seemethere/38/orig 2025-07-17T06:36:47.5393764Z * [new branch] gh/seemethere/39/base -> origin/gh/seemethere/39/base 2025-07-17T06:36:47.5394269Z * [new branch] gh/seemethere/39/head -> origin/gh/seemethere/39/head 2025-07-17T06:36:47.5394773Z * [new branch] gh/seemethere/39/orig -> origin/gh/seemethere/39/orig 2025-07-17T06:36:47.5395347Z * [new branch] gh/seemethere/40/base -> origin/gh/seemethere/40/base 2025-07-17T06:36:47.5395844Z * [new branch] gh/seemethere/40/head -> origin/gh/seemethere/40/head 2025-07-17T06:36:47.5396349Z * [new branch] gh/seemethere/40/orig -> origin/gh/seemethere/40/orig 2025-07-17T06:36:47.5396856Z * [new branch] gh/seemethere/41/base -> origin/gh/seemethere/41/base 2025-07-17T06:36:47.5397365Z * [new branch] gh/seemethere/41/head -> origin/gh/seemethere/41/head 2025-07-17T06:36:47.5397868Z * [new branch] gh/seemethere/41/orig -> origin/gh/seemethere/41/orig 2025-07-17T06:36:47.5398360Z * [new branch] gh/seemethere/42/base -> origin/gh/seemethere/42/base 2025-07-17T06:36:47.5398869Z * [new branch] gh/seemethere/42/head -> origin/gh/seemethere/42/head 2025-07-17T06:36:47.5399376Z * [new branch] gh/seemethere/42/orig -> origin/gh/seemethere/42/orig 2025-07-17T06:36:47.5399873Z * [new branch] gh/seemethere/43/base -> origin/gh/seemethere/43/base 2025-07-17T06:36:47.5400374Z * [new branch] gh/seemethere/43/head -> origin/gh/seemethere/43/head 2025-07-17T06:36:47.5400868Z * [new branch] gh/seemethere/43/orig -> origin/gh/seemethere/43/orig 2025-07-17T06:36:47.5401372Z * [new branch] gh/seemethere/44/base -> origin/gh/seemethere/44/base 2025-07-17T06:36:47.5403004Z * [new branch] gh/seemethere/44/head -> origin/gh/seemethere/44/head 2025-07-17T06:36:47.5403747Z * [new branch] gh/seemethere/44/orig -> origin/gh/seemethere/44/orig 2025-07-17T06:36:47.5404255Z * [new branch] gh/seemethere/45/base -> origin/gh/seemethere/45/base 2025-07-17T06:36:47.5404753Z * [new branch] gh/seemethere/45/head -> origin/gh/seemethere/45/head 2025-07-17T06:36:47.5405262Z * [new branch] gh/seemethere/45/orig -> origin/gh/seemethere/45/orig 2025-07-17T06:36:47.5405766Z * [new branch] gh/seemethere/46/base -> origin/gh/seemethere/46/base 2025-07-17T06:36:47.5406264Z * [new branch] gh/seemethere/46/head -> origin/gh/seemethere/46/head 2025-07-17T06:36:47.5406765Z * [new branch] gh/seemethere/46/orig -> origin/gh/seemethere/46/orig 2025-07-17T06:36:47.5407267Z * [new branch] gh/seemethere/47/base -> origin/gh/seemethere/47/base 2025-07-17T06:36:47.5407880Z * [new branch] gh/seemethere/47/head -> origin/gh/seemethere/47/head 2025-07-17T06:36:47.5408389Z * [new branch] gh/seemethere/47/orig -> origin/gh/seemethere/47/orig 2025-07-17T06:36:47.5408901Z * [new branch] gh/seemethere/48/base -> origin/gh/seemethere/48/base 2025-07-17T06:36:47.5409413Z * [new branch] gh/seemethere/48/head -> origin/gh/seemethere/48/head 2025-07-17T06:36:47.5409914Z * [new branch] gh/seemethere/48/orig -> origin/gh/seemethere/48/orig 2025-07-17T06:36:47.5410436Z * [new branch] gh/seemethere/7/base -> origin/gh/seemethere/7/base 2025-07-17T06:36:47.5410940Z * [new branch] gh/seemethere/7/head -> origin/gh/seemethere/7/head 2025-07-17T06:36:47.5411451Z * [new branch] gh/seemethere/7/orig -> origin/gh/seemethere/7/orig 2025-07-17T06:36:47.5411979Z * [new branch] gh/shunting314/145/base -> origin/gh/shunting314/145/base 2025-07-17T06:36:47.5412524Z * [new branch] gh/shunting314/145/head -> origin/gh/shunting314/145/head 2025-07-17T06:36:47.5909033Z * [new branch] gh/shunting314/145/orig -> origin/gh/shunting314/145/orig 2025-07-17T06:36:47.5909712Z * [new branch] gh/shunting314/176/base -> origin/gh/shunting314/176/base 2025-07-17T06:36:47.5910302Z * [new branch] gh/shunting314/176/head -> origin/gh/shunting314/176/head 2025-07-17T06:36:47.5910934Z * [new branch] gh/shunting314/176/orig -> origin/gh/shunting314/176/orig 2025-07-17T06:36:47.5911551Z * [new branch] gh/shunting314/210/base -> origin/gh/shunting314/210/base 2025-07-17T06:36:47.5912125Z * [new branch] gh/shunting314/210/head -> origin/gh/shunting314/210/head 2025-07-17T06:36:47.5912755Z * [new branch] gh/shunting314/210/orig -> origin/gh/shunting314/210/orig 2025-07-17T06:36:47.5913335Z * [new branch] gh/shunting314/211/base -> origin/gh/shunting314/211/base 2025-07-17T06:36:47.5913944Z * [new branch] gh/shunting314/211/head -> origin/gh/shunting314/211/head 2025-07-17T06:36:47.5914518Z * [new branch] gh/shunting314/211/orig -> origin/gh/shunting314/211/orig 2025-07-17T06:36:47.5915270Z * [new branch] gh/shunting314/212/base -> origin/gh/shunting314/212/base 2025-07-17T06:36:47.5915881Z * [new branch] gh/shunting314/212/head -> origin/gh/shunting314/212/head 2025-07-17T06:36:47.5916448Z * [new branch] gh/shunting314/212/orig -> origin/gh/shunting314/212/orig 2025-07-17T06:36:47.5917053Z * [new branch] gh/shunting314/213/base -> origin/gh/shunting314/213/base 2025-07-17T06:36:47.5917630Z * [new branch] gh/shunting314/213/head -> origin/gh/shunting314/213/head 2025-07-17T06:36:47.5918815Z * [new branch] gh/shunting314/213/orig -> origin/gh/shunting314/213/orig 2025-07-17T06:36:47.5919435Z * [new branch] gh/silverguo/1/base -> origin/gh/silverguo/1/base 2025-07-17T06:36:47.5919988Z * [new branch] gh/silverguo/1/head -> origin/gh/silverguo/1/head 2025-07-17T06:36:47.5920578Z * [new branch] gh/silverguo/2/base -> origin/gh/silverguo/2/base 2025-07-17T06:36:47.5921130Z * [new branch] gh/silverguo/2/head -> origin/gh/silverguo/2/head 2025-07-17T06:36:47.5921725Z * [new branch] gh/silverguo/3/base -> origin/gh/silverguo/3/base 2025-07-17T06:36:47.5922262Z * [new branch] gh/silverguo/3/head -> origin/gh/silverguo/3/head 2025-07-17T06:36:47.5922849Z * [new branch] gh/silverguo/4/base -> origin/gh/silverguo/4/base 2025-07-17T06:36:47.5923378Z * [new branch] gh/silverguo/4/head -> origin/gh/silverguo/4/head 2025-07-17T06:36:47.5924577Z * [new branch] gh/sinhaanhsul/1/base -> origin/gh/sinhaanhsul/1/base 2025-07-17T06:36:47.5925211Z * [new branch] gh/sinhaanhsul/1/head -> origin/gh/sinhaanhsul/1/head 2025-07-17T06:36:47.5925770Z * [new branch] gh/skarjala/1/base -> origin/gh/skarjala/1/base 2025-07-17T06:36:47.5926361Z * [new branch] gh/skarjala/1/head -> origin/gh/skarjala/1/head 2025-07-17T06:36:47.5926884Z * [new branch] gh/skarjala/1/orig -> origin/gh/skarjala/1/orig 2025-07-17T06:36:47.5927468Z * [new branch] gh/skarjala/10/base -> origin/gh/skarjala/10/base 2025-07-17T06:36:47.5928000Z * [new branch] gh/skarjala/10/head -> origin/gh/skarjala/10/head 2025-07-17T06:36:47.5928583Z * [new branch] gh/skarjala/10/orig -> origin/gh/skarjala/10/orig 2025-07-17T06:36:47.5929127Z * [new branch] gh/skarjala/11/base -> origin/gh/skarjala/11/base 2025-07-17T06:36:47.5929663Z * [new branch] gh/skarjala/11/head -> origin/gh/skarjala/11/head 2025-07-17T06:36:47.5930252Z * [new branch] gh/skarjala/11/orig -> origin/gh/skarjala/11/orig 2025-07-17T06:36:47.5930780Z * [new branch] gh/skarjala/12/base -> origin/gh/skarjala/12/base 2025-07-17T06:36:47.5931367Z * [new branch] gh/skarjala/12/head -> origin/gh/skarjala/12/head 2025-07-17T06:36:47.5931906Z * [new branch] gh/skarjala/12/orig -> origin/gh/skarjala/12/orig 2025-07-17T06:36:47.5932480Z * [new branch] gh/skarjala/2/base -> origin/gh/skarjala/2/base 2025-07-17T06:36:47.5933011Z * [new branch] gh/skarjala/2/head -> origin/gh/skarjala/2/head 2025-07-17T06:36:47.5933535Z * [new branch] gh/skarjala/2/orig -> origin/gh/skarjala/2/orig 2025-07-17T06:36:47.5934123Z * [new branch] gh/skarjala/3/base -> origin/gh/skarjala/3/base 2025-07-17T06:36:47.5934659Z * [new branch] gh/skarjala/3/head -> origin/gh/skarjala/3/head 2025-07-17T06:36:47.5935233Z * [new branch] gh/skarjala/3/orig -> origin/gh/skarjala/3/orig 2025-07-17T06:36:47.5935763Z * [new branch] gh/skarjala/4/base -> origin/gh/skarjala/4/base 2025-07-17T06:36:47.5936339Z * [new branch] gh/skarjala/4/head -> origin/gh/skarjala/4/head 2025-07-17T06:36:47.5936874Z * [new branch] gh/skarjala/4/orig -> origin/gh/skarjala/4/orig 2025-07-17T06:36:47.6413419Z * [new branch] gh/skarjala/5/base -> origin/gh/skarjala/5/base 2025-07-17T06:36:47.6414007Z * [new branch] gh/skarjala/5/head -> origin/gh/skarjala/5/head 2025-07-17T06:36:47.6414600Z * [new branch] gh/skarjala/5/orig -> origin/gh/skarjala/5/orig 2025-07-17T06:36:47.6415860Z * [new branch] gh/skarjala/6/base -> origin/gh/skarjala/6/base 2025-07-17T06:36:47.6416448Z * [new branch] gh/skarjala/6/head -> origin/gh/skarjala/6/head 2025-07-17T06:36:47.6416988Z * [new branch] gh/skarjala/6/orig -> origin/gh/skarjala/6/orig 2025-07-17T06:36:47.6417513Z * [new branch] gh/skarjala/7/base -> origin/gh/skarjala/7/base 2025-07-17T06:36:47.6418093Z * [new branch] gh/skarjala/7/head -> origin/gh/skarjala/7/head 2025-07-17T06:36:47.6418612Z * [new branch] gh/skarjala/7/orig -> origin/gh/skarjala/7/orig 2025-07-17T06:36:47.6419189Z * [new branch] gh/skarjala/8/base -> origin/gh/skarjala/8/base 2025-07-17T06:36:47.6419717Z * [new branch] gh/skarjala/8/head -> origin/gh/skarjala/8/head 2025-07-17T06:36:47.6420260Z * [new branch] gh/skarjala/8/orig -> origin/gh/skarjala/8/orig 2025-07-17T06:36:47.6420924Z * [new branch] gh/skarjala/9/base -> origin/gh/skarjala/9/base 2025-07-17T06:36:47.6421500Z * [new branch] gh/skarjala/9/head -> origin/gh/skarjala/9/head 2025-07-17T06:36:47.6422032Z * [new branch] gh/skarjala/9/orig -> origin/gh/skarjala/9/orig 2025-07-17T06:36:47.6422638Z * [new branch] gh/soulitzer/269/base -> origin/gh/soulitzer/269/base 2025-07-17T06:36:47.6423194Z * [new branch] gh/soulitzer/269/head -> origin/gh/soulitzer/269/head 2025-07-17T06:36:47.6423783Z * [new branch] gh/soulitzer/269/orig -> origin/gh/soulitzer/269/orig 2025-07-17T06:36:47.6424351Z * [new branch] gh/soulitzer/276/base -> origin/gh/soulitzer/276/base 2025-07-17T06:36:47.6424937Z * [new branch] gh/soulitzer/276/head -> origin/gh/soulitzer/276/head 2025-07-17T06:36:47.6425496Z * [new branch] gh/soulitzer/276/orig -> origin/gh/soulitzer/276/orig 2025-07-17T06:36:47.6426058Z * [new branch] gh/soulitzer/287/base -> origin/gh/soulitzer/287/base 2025-07-17T06:36:47.6426658Z * [new branch] gh/soulitzer/287/head -> origin/gh/soulitzer/287/head 2025-07-17T06:36:47.6427209Z * [new branch] gh/soulitzer/287/orig -> origin/gh/soulitzer/287/orig 2025-07-17T06:36:47.6427812Z * [new branch] gh/soulitzer/296/base -> origin/gh/soulitzer/296/base 2025-07-17T06:36:47.6428361Z * [new branch] gh/soulitzer/296/head -> origin/gh/soulitzer/296/head 2025-07-17T06:36:47.6428959Z * [new branch] gh/soulitzer/296/orig -> origin/gh/soulitzer/296/orig 2025-07-17T06:36:47.6429516Z * [new branch] gh/soulitzer/299/base -> origin/gh/soulitzer/299/base 2025-07-17T06:36:47.6430116Z * [new branch] gh/soulitzer/299/head -> origin/gh/soulitzer/299/head 2025-07-17T06:36:47.6430677Z * [new branch] gh/soulitzer/299/orig -> origin/gh/soulitzer/299/orig 2025-07-17T06:36:47.6431275Z * [new branch] gh/soulitzer/300/base -> origin/gh/soulitzer/300/base 2025-07-17T06:36:47.6431829Z * [new branch] gh/soulitzer/300/head -> origin/gh/soulitzer/300/head 2025-07-17T06:36:47.6432426Z * [new branch] gh/soulitzer/300/orig -> origin/gh/soulitzer/300/orig 2025-07-17T06:36:47.6432973Z * [new branch] gh/soulitzer/301/base -> origin/gh/soulitzer/301/base 2025-07-17T06:36:47.6433584Z * [new branch] gh/soulitzer/301/head -> origin/gh/soulitzer/301/head 2025-07-17T06:36:47.6434132Z * [new branch] gh/soulitzer/301/orig -> origin/gh/soulitzer/301/orig 2025-07-17T06:36:47.6434733Z * [new branch] gh/soulitzer/313/base -> origin/gh/soulitzer/313/base 2025-07-17T06:36:47.6435370Z * [new branch] gh/soulitzer/313/head -> origin/gh/soulitzer/313/head 2025-07-17T06:36:47.6436400Z * [new branch] gh/soulitzer/313/orig -> origin/gh/soulitzer/313/orig 2025-07-17T06:36:47.6436962Z * [new branch] gh/soulitzer/319/base -> origin/gh/soulitzer/319/base 2025-07-17T06:36:47.6437558Z * [new branch] gh/soulitzer/319/head -> origin/gh/soulitzer/319/head 2025-07-17T06:36:47.6438109Z * [new branch] gh/soulitzer/319/orig -> origin/gh/soulitzer/319/orig 2025-07-17T06:36:47.6438711Z * [new branch] gh/soulitzer/320/base -> origin/gh/soulitzer/320/base 2025-07-17T06:36:47.6439271Z * [new branch] gh/soulitzer/320/head -> origin/gh/soulitzer/320/head 2025-07-17T06:36:47.6439876Z * [new branch] gh/soulitzer/320/orig -> origin/gh/soulitzer/320/orig 2025-07-17T06:36:47.6440419Z * [new branch] gh/soulitzer/336/base -> origin/gh/soulitzer/336/base 2025-07-17T06:36:47.8064576Z * [new branch] gh/soulitzer/336/head -> origin/gh/soulitzer/336/head 2025-07-17T06:36:47.8065372Z * [new branch] gh/soulitzer/336/orig -> origin/gh/soulitzer/336/orig 2025-07-17T06:36:47.8065892Z * [new branch] gh/soulitzer/347/base -> origin/gh/soulitzer/347/base 2025-07-17T06:36:47.8066403Z * [new branch] gh/soulitzer/347/head -> origin/gh/soulitzer/347/head 2025-07-17T06:36:47.8066903Z * [new branch] gh/soulitzer/347/orig -> origin/gh/soulitzer/347/orig 2025-07-17T06:36:47.8067412Z * [new branch] gh/soulitzer/349/base -> origin/gh/soulitzer/349/base 2025-07-17T06:36:47.8067908Z * [new branch] gh/soulitzer/349/head -> origin/gh/soulitzer/349/head 2025-07-17T06:36:47.8068418Z * [new branch] gh/soulitzer/349/orig -> origin/gh/soulitzer/349/orig 2025-07-17T06:36:47.8068915Z * [new branch] gh/soulitzer/350/base -> origin/gh/soulitzer/350/base 2025-07-17T06:36:47.8069430Z * [new branch] gh/soulitzer/350/head -> origin/gh/soulitzer/350/head 2025-07-17T06:36:47.8069925Z * [new branch] gh/soulitzer/350/orig -> origin/gh/soulitzer/350/orig 2025-07-17T06:36:47.8070418Z * [new branch] gh/soulitzer/351/base -> origin/gh/soulitzer/351/base 2025-07-17T06:36:47.8070922Z * [new branch] gh/soulitzer/351/head -> origin/gh/soulitzer/351/head 2025-07-17T06:36:47.8071425Z * [new branch] gh/soulitzer/351/orig -> origin/gh/soulitzer/351/orig 2025-07-17T06:36:47.8071920Z * [new branch] gh/soulitzer/353/base -> origin/gh/soulitzer/353/base 2025-07-17T06:36:47.8072420Z * [new branch] gh/soulitzer/353/head -> origin/gh/soulitzer/353/head 2025-07-17T06:36:47.8072910Z * [new branch] gh/soulitzer/353/orig -> origin/gh/soulitzer/353/orig 2025-07-17T06:36:47.8073417Z * [new branch] gh/soulitzer/358/base -> origin/gh/soulitzer/358/base 2025-07-17T06:36:47.8073926Z * [new branch] gh/soulitzer/358/head -> origin/gh/soulitzer/358/head 2025-07-17T06:36:47.8074416Z * [new branch] gh/soulitzer/358/orig -> origin/gh/soulitzer/358/orig 2025-07-17T06:36:47.8074928Z * [new branch] gh/soulitzer/359/base -> origin/gh/soulitzer/359/base 2025-07-17T06:36:47.8075492Z * [new branch] gh/soulitzer/359/head -> origin/gh/soulitzer/359/head 2025-07-17T06:36:47.8075994Z * [new branch] gh/soulitzer/359/orig -> origin/gh/soulitzer/359/orig 2025-07-17T06:36:47.8076505Z * [new branch] gh/soulitzer/362/base -> origin/gh/soulitzer/362/base 2025-07-17T06:36:47.8077009Z * [new branch] gh/soulitzer/362/head -> origin/gh/soulitzer/362/head 2025-07-17T06:36:47.8077516Z * [new branch] gh/soulitzer/362/orig -> origin/gh/soulitzer/362/orig 2025-07-17T06:36:47.8078540Z * [new branch] gh/soulitzer/371/base -> origin/gh/soulitzer/371/base 2025-07-17T06:36:47.8079050Z * [new branch] gh/soulitzer/371/head -> origin/gh/soulitzer/371/head 2025-07-17T06:36:47.8079548Z * [new branch] gh/soulitzer/371/orig -> origin/gh/soulitzer/371/orig 2025-07-17T06:36:47.8080049Z * [new branch] gh/soulitzer/372/base -> origin/gh/soulitzer/372/base 2025-07-17T06:36:47.8080553Z * [new branch] gh/soulitzer/372/head -> origin/gh/soulitzer/372/head 2025-07-17T06:36:47.8081051Z * [new branch] gh/soulitzer/372/orig -> origin/gh/soulitzer/372/orig 2025-07-17T06:36:47.8081553Z * [new branch] gh/soulitzer/373/base -> origin/gh/soulitzer/373/base 2025-07-17T06:36:47.8082054Z * [new branch] gh/soulitzer/373/head -> origin/gh/soulitzer/373/head 2025-07-17T06:36:47.8082548Z * [new branch] gh/soulitzer/373/orig -> origin/gh/soulitzer/373/orig 2025-07-17T06:36:47.8083142Z * [new branch] gh/soulitzer/374/base -> origin/gh/soulitzer/374/base 2025-07-17T06:36:47.8083645Z * [new branch] gh/soulitzer/374/head -> origin/gh/soulitzer/374/head 2025-07-17T06:36:47.8084149Z * [new branch] gh/soulitzer/374/orig -> origin/gh/soulitzer/374/orig 2025-07-17T06:36:47.8084624Z * [new branch] gh/suo/619/base -> origin/gh/suo/619/base 2025-07-17T06:36:47.8085113Z * [new branch] gh/swolchok/728/next -> origin/gh/swolchok/728/next 2025-07-17T06:36:47.8085623Z * [new branch] gh/swolchok/758/base -> origin/gh/swolchok/758/base 2025-07-17T06:36:47.8086113Z * [new branch] gh/swolchok/758/head -> origin/gh/swolchok/758/head 2025-07-17T06:36:47.8086604Z * [new branch] gh/swolchok/758/orig -> origin/gh/swolchok/758/orig 2025-07-17T06:36:47.8087091Z * [new branch] gh/swolchok/767/base -> origin/gh/swolchok/767/base 2025-07-17T06:36:47.8087591Z * [new branch] gh/swolchok/767/head -> origin/gh/swolchok/767/head 2025-07-17T06:36:47.8088084Z * [new branch] gh/swolchok/767/orig -> origin/gh/swolchok/767/orig 2025-07-17T06:36:47.8088568Z * [new branch] gh/swolchok/768/base -> origin/gh/swolchok/768/base 2025-07-17T06:36:47.8674178Z * [new branch] gh/swolchok/768/head -> origin/gh/swolchok/768/head 2025-07-17T06:36:47.8674766Z * [new branch] gh/swolchok/768/orig -> origin/gh/swolchok/768/orig 2025-07-17T06:36:47.8675339Z * [new branch] gh/swolchok/769/base -> origin/gh/swolchok/769/base 2025-07-17T06:36:47.8675839Z * [new branch] gh/swolchok/769/head -> origin/gh/swolchok/769/head 2025-07-17T06:36:47.8676348Z * [new branch] gh/swolchok/769/orig -> origin/gh/swolchok/769/orig 2025-07-17T06:36:47.8676878Z * [new branch] gh/swolchok/771/base -> origin/gh/swolchok/771/base 2025-07-17T06:36:47.8677376Z * [new branch] gh/swolchok/771/head -> origin/gh/swolchok/771/head 2025-07-17T06:36:47.8677861Z * [new branch] gh/swolchok/771/orig -> origin/gh/swolchok/771/orig 2025-07-17T06:36:47.8678356Z * [new branch] gh/swolchok/772/base -> origin/gh/swolchok/772/base 2025-07-17T06:36:47.8678842Z * [new branch] gh/swolchok/772/head -> origin/gh/swolchok/772/head 2025-07-17T06:36:47.8679334Z * [new branch] gh/swolchok/772/orig -> origin/gh/swolchok/772/orig 2025-07-17T06:36:47.8679860Z * [new branch] gh/swolchok/773/base -> origin/gh/swolchok/773/base 2025-07-17T06:36:47.8680395Z * [new branch] gh/swolchok/773/head -> origin/gh/swolchok/773/head 2025-07-17T06:36:47.8680886Z * [new branch] gh/swolchok/773/orig -> origin/gh/swolchok/773/orig 2025-07-17T06:36:47.8681897Z * [new branch] gh/swolchok/775/base -> origin/gh/swolchok/775/base 2025-07-17T06:36:47.8682391Z * [new branch] gh/swolchok/775/head -> origin/gh/swolchok/775/head 2025-07-17T06:36:47.8682873Z * [new branch] gh/swolchok/775/orig -> origin/gh/swolchok/775/orig 2025-07-17T06:36:47.8683374Z * [new branch] gh/swolchok/776/base -> origin/gh/swolchok/776/base 2025-07-17T06:36:47.8683875Z * [new branch] gh/swolchok/776/head -> origin/gh/swolchok/776/head 2025-07-17T06:36:47.8684370Z * [new branch] gh/swolchok/776/orig -> origin/gh/swolchok/776/orig 2025-07-17T06:36:47.8684865Z * [new branch] gh/swolchok/777/base -> origin/gh/swolchok/777/base 2025-07-17T06:36:47.8685403Z * [new branch] gh/swolchok/777/head -> origin/gh/swolchok/777/head 2025-07-17T06:36:47.8685948Z * [new branch] gh/swolchok/777/orig -> origin/gh/swolchok/777/orig 2025-07-17T06:36:47.8686564Z * [new branch] gh/swolchok/778/base -> origin/gh/swolchok/778/base 2025-07-17T06:36:47.8687058Z * [new branch] gh/swolchok/778/head -> origin/gh/swolchok/778/head 2025-07-17T06:36:47.8687572Z * [new branch] gh/swolchok/778/orig -> origin/gh/swolchok/778/orig 2025-07-17T06:36:47.8688066Z * [new branch] gh/swolchok/779/base -> origin/gh/swolchok/779/base 2025-07-17T06:36:47.8688570Z * [new branch] gh/swolchok/779/head -> origin/gh/swolchok/779/head 2025-07-17T06:36:47.8689061Z * [new branch] gh/swolchok/779/orig -> origin/gh/swolchok/779/orig 2025-07-17T06:36:47.8689561Z * [new branch] gh/swolchok/780/base -> origin/gh/swolchok/780/base 2025-07-17T06:36:47.8690059Z * [new branch] gh/swolchok/780/head -> origin/gh/swolchok/780/head 2025-07-17T06:36:47.8690560Z * [new branch] gh/swolchok/780/orig -> origin/gh/swolchok/780/orig 2025-07-17T06:36:47.8691089Z * [new branch] gh/swolchok/781/base -> origin/gh/swolchok/781/base 2025-07-17T06:36:47.8691610Z * [new branch] gh/swolchok/781/head -> origin/gh/swolchok/781/head 2025-07-17T06:36:47.8692116Z * [new branch] gh/swolchok/781/orig -> origin/gh/swolchok/781/orig 2025-07-17T06:36:47.8692617Z * [new branch] gh/swolchok/782/base -> origin/gh/swolchok/782/base 2025-07-17T06:36:47.8693102Z * [new branch] gh/swolchok/782/head -> origin/gh/swolchok/782/head 2025-07-17T06:36:47.8693603Z * [new branch] gh/swolchok/782/orig -> origin/gh/swolchok/782/orig 2025-07-17T06:36:47.8694088Z * [new branch] gh/swolchok/783/base -> origin/gh/swolchok/783/base 2025-07-17T06:36:47.8694584Z * [new branch] gh/swolchok/783/head -> origin/gh/swolchok/783/head 2025-07-17T06:36:47.8695091Z * [new branch] gh/swolchok/783/orig -> origin/gh/swolchok/783/orig 2025-07-17T06:36:47.8695575Z * [new branch] gh/swolchok/784/base -> origin/gh/swolchok/784/base 2025-07-17T06:36:47.8696075Z * [new branch] gh/swolchok/784/head -> origin/gh/swolchok/784/head 2025-07-17T06:36:47.8696572Z * [new branch] gh/swolchok/784/orig -> origin/gh/swolchok/784/orig 2025-07-17T06:36:47.8697110Z * [new branch] gh/swolchok/785/base -> origin/gh/swolchok/785/base 2025-07-17T06:36:47.8697642Z * [new branch] gh/swolchok/785/head -> origin/gh/swolchok/785/head 2025-07-17T06:36:47.9705413Z * [new branch] gh/swolchok/785/orig -> origin/gh/swolchok/785/orig 2025-07-17T06:36:47.9705974Z * [new branch] gh/syed-ahmed/2/base -> origin/gh/syed-ahmed/2/base 2025-07-17T06:36:47.9706995Z * [new branch] gh/syed-ahmed/2/head -> origin/gh/syed-ahmed/2/head 2025-07-17T06:36:47.9707515Z * [new branch] gh/syed-ahmed/2/orig -> origin/gh/syed-ahmed/2/orig 2025-07-17T06:36:47.9708025Z * [new branch] gh/teja-rao/1/base -> origin/gh/teja-rao/1/base 2025-07-17T06:36:47.9708514Z * [new branch] gh/teja-rao/1/head -> origin/gh/teja-rao/1/head 2025-07-17T06:36:47.9709010Z * [new branch] gh/teja-rao/1/orig -> origin/gh/teja-rao/1/orig 2025-07-17T06:36:47.9709483Z * [new branch] gh/teja-rao/2/base -> origin/gh/teja-rao/2/base 2025-07-17T06:36:47.9709964Z * [new branch] gh/teja-rao/2/head -> origin/gh/teja-rao/2/head 2025-07-17T06:36:47.9710436Z * [new branch] gh/teja-rao/2/orig -> origin/gh/teja-rao/2/orig 2025-07-17T06:36:47.9710903Z * [new branch] gh/tianyu-l/2/base -> origin/gh/tianyu-l/2/base 2025-07-17T06:36:47.9711392Z * [new branch] gh/tianyu-l/2/head -> origin/gh/tianyu-l/2/head 2025-07-17T06:36:47.9711949Z * [new branch] gh/tianyu-l/2/orig -> origin/gh/tianyu-l/2/orig 2025-07-17T06:36:47.9712541Z * [new branch] gh/tianyu-l/3/base -> origin/gh/tianyu-l/3/base 2025-07-17T06:36:47.9713024Z * [new branch] gh/tianyu-l/3/orig -> origin/gh/tianyu-l/3/orig 2025-07-17T06:36:47.9713488Z * [new branch] gh/tianyu-l/4/base -> origin/gh/tianyu-l/4/base 2025-07-17T06:36:47.9713972Z * [new branch] gh/tianyu-l/4/head -> origin/gh/tianyu-l/4/head 2025-07-17T06:36:47.9714441Z * [new branch] gh/tianyu-l/4/orig -> origin/gh/tianyu-l/4/orig 2025-07-17T06:36:47.9714940Z * [new branch] gh/titaiwangms/1/base -> origin/gh/titaiwangms/1/base 2025-07-17T06:36:47.9715541Z * [new branch] gh/titaiwangms/1/head -> origin/gh/titaiwangms/1/head 2025-07-17T06:36:47.9716064Z * [new branch] gh/titaiwangms/1/orig -> origin/gh/titaiwangms/1/orig 2025-07-17T06:36:47.9716583Z * [new branch] gh/titaiwangms/2/base -> origin/gh/titaiwangms/2/base 2025-07-17T06:36:47.9717085Z * [new branch] gh/titaiwangms/2/head -> origin/gh/titaiwangms/2/head 2025-07-17T06:36:47.9717603Z * [new branch] gh/titaiwangms/2/orig -> origin/gh/titaiwangms/2/orig 2025-07-17T06:36:47.9718203Z * [new branch] gh/titaiwangms/3/base -> origin/gh/titaiwangms/3/base 2025-07-17T06:36:47.9718708Z * [new branch] gh/titaiwangms/3/head -> origin/gh/titaiwangms/3/head 2025-07-17T06:36:47.9719217Z * [new branch] gh/titaiwangms/3/orig -> origin/gh/titaiwangms/3/orig 2025-07-17T06:36:47.9719715Z * [new branch] gh/titaiwangms/4/base -> origin/gh/titaiwangms/4/base 2025-07-17T06:36:47.9720223Z * [new branch] gh/titaiwangms/4/head -> origin/gh/titaiwangms/4/head 2025-07-17T06:36:47.9720734Z * [new branch] gh/titaiwangms/4/orig -> origin/gh/titaiwangms/4/orig 2025-07-17T06:36:47.9721253Z * [new branch] gh/titaiwangms/5/base -> origin/gh/titaiwangms/5/base 2025-07-17T06:36:47.9721768Z * [new branch] gh/titaiwangms/5/head -> origin/gh/titaiwangms/5/head 2025-07-17T06:36:47.9722275Z * [new branch] gh/titaiwangms/5/orig -> origin/gh/titaiwangms/5/orig 2025-07-17T06:36:47.9722788Z * [new branch] gh/titaiwangms/6/base -> origin/gh/titaiwangms/6/base 2025-07-17T06:36:47.9723290Z * [new branch] gh/titaiwangms/6/head -> origin/gh/titaiwangms/6/head 2025-07-17T06:36:47.9723894Z * [new branch] gh/titaiwangms/6/orig -> origin/gh/titaiwangms/6/orig 2025-07-17T06:36:47.9724404Z * [new branch] gh/titaiwangms/7/base -> origin/gh/titaiwangms/7/base 2025-07-17T06:36:47.9725303Z * [new branch] gh/titaiwangms/7/head -> origin/gh/titaiwangms/7/head 2025-07-17T06:36:47.9725830Z * [new branch] gh/titaiwangms/7/orig -> origin/gh/titaiwangms/7/orig 2025-07-17T06:36:47.9726343Z * [new branch] gh/titaiwangms/8/base -> origin/gh/titaiwangms/8/base 2025-07-17T06:36:47.9726856Z * [new branch] gh/titaiwangms/8/head -> origin/gh/titaiwangms/8/head 2025-07-17T06:36:47.9727374Z * [new branch] gh/titaiwangms/8/orig -> origin/gh/titaiwangms/8/orig 2025-07-17T06:36:47.9727913Z * [new branch] gh/tugsbayasgalan/301/base -> origin/gh/tugsbayasgalan/301/base 2025-07-17T06:36:47.9728485Z * [new branch] gh/tugsbayasgalan/301/head -> origin/gh/tugsbayasgalan/301/head 2025-07-17T06:36:47.9729043Z * [new branch] gh/tugsbayasgalan/301/orig -> origin/gh/tugsbayasgalan/301/orig 2025-07-17T06:36:47.9729653Z * [new branch] gh/v0i0/1/base -> origin/gh/v0i0/1/base 2025-07-17T06:36:47.9730182Z * [new branch] gh/v0i0/1/head -> origin/gh/v0i0/1/head 2025-07-17T06:36:48.0272130Z * [new branch] gh/v0i0/1/orig -> origin/gh/v0i0/1/orig 2025-07-17T06:36:48.0272712Z * [new branch] gh/vkuzo/1/next -> origin/gh/vkuzo/1/next 2025-07-17T06:36:48.0273176Z * [new branch] gh/vkuzo/10/base -> origin/gh/vkuzo/10/base 2025-07-17T06:36:48.0273647Z * [new branch] gh/vkuzo/10/head -> origin/gh/vkuzo/10/head 2025-07-17T06:36:48.0274106Z * [new branch] gh/vkuzo/10/orig -> origin/gh/vkuzo/10/orig 2025-07-17T06:36:48.0274563Z * [new branch] gh/vkuzo/2/next -> origin/gh/vkuzo/2/next 2025-07-17T06:36:48.0275075Z * [new branch] gh/vkuzo/3/next -> origin/gh/vkuzo/3/next 2025-07-17T06:36:48.0275552Z * [new branch] gh/wanchaol/373/base -> origin/gh/wanchaol/373/base 2025-07-17T06:36:48.0276090Z * [new branch] gh/wanchaol/373/head -> origin/gh/wanchaol/373/head 2025-07-17T06:36:48.0277594Z * [new branch] gh/wanchaol/373/orig -> origin/gh/wanchaol/373/orig 2025-07-17T06:36:48.0278102Z * [new branch] gh/wanchaol/374/base -> origin/gh/wanchaol/374/base 2025-07-17T06:36:48.0278606Z * [new branch] gh/wanchaol/374/head -> origin/gh/wanchaol/374/head 2025-07-17T06:36:48.0279099Z * [new branch] gh/wanchaol/374/orig -> origin/gh/wanchaol/374/orig 2025-07-17T06:36:48.0279597Z * [new branch] gh/wconstab/392/base -> origin/gh/wconstab/392/base 2025-07-17T06:36:48.0280091Z * [new branch] gh/wconstab/392/head -> origin/gh/wconstab/392/head 2025-07-17T06:36:48.0280583Z * [new branch] gh/wconstab/392/orig -> origin/gh/wconstab/392/orig 2025-07-17T06:36:48.0281095Z * [new branch] gh/wconstab/419/base -> origin/gh/wconstab/419/base 2025-07-17T06:36:48.0281590Z * [new branch] gh/wconstab/419/head -> origin/gh/wconstab/419/head 2025-07-17T06:36:48.0282083Z * [new branch] gh/wconstab/419/orig -> origin/gh/wconstab/419/orig 2025-07-17T06:36:48.0283541Z * [new branch] gh/wconstab/420/base -> origin/gh/wconstab/420/base 2025-07-17T06:36:48.0284043Z * [new branch] gh/wconstab/420/head -> origin/gh/wconstab/420/head 2025-07-17T06:36:48.0284548Z * [new branch] gh/wconstab/420/orig -> origin/gh/wconstab/420/orig 2025-07-17T06:36:48.0285039Z * [new branch] gh/wconstab/421/base -> origin/gh/wconstab/421/base 2025-07-17T06:36:48.0285539Z * [new branch] gh/wconstab/421/orig -> origin/gh/wconstab/421/orig 2025-07-17T06:36:48.0286029Z * [new branch] gh/wconstab/422/base -> origin/gh/wconstab/422/base 2025-07-17T06:36:48.0287041Z * [new branch] gh/wconstab/422/head -> origin/gh/wconstab/422/head 2025-07-17T06:36:48.0287544Z * [new branch] gh/wconstab/422/orig -> origin/gh/wconstab/422/orig 2025-07-17T06:36:48.0289090Z * [new branch] gh/wconstab/423/base -> origin/gh/wconstab/423/base 2025-07-17T06:36:48.0289607Z * [new branch] gh/wconstab/423/head -> origin/gh/wconstab/423/head 2025-07-17T06:36:48.0290096Z * [new branch] gh/wconstab/423/orig -> origin/gh/wconstab/423/orig 2025-07-17T06:36:48.0290592Z * [new branch] gh/wconstab/424/base -> origin/gh/wconstab/424/base 2025-07-17T06:36:48.0291086Z * [new branch] gh/wconstab/424/head -> origin/gh/wconstab/424/head 2025-07-17T06:36:48.0291584Z * [new branch] gh/wconstab/424/orig -> origin/gh/wconstab/424/orig 2025-07-17T06:36:48.0292083Z * [new branch] gh/wconstab/425/base -> origin/gh/wconstab/425/base 2025-07-17T06:36:48.0292681Z * [new branch] gh/wconstab/425/head -> origin/gh/wconstab/425/head 2025-07-17T06:36:48.0293193Z * [new branch] gh/wconstab/425/orig -> origin/gh/wconstab/425/orig 2025-07-17T06:36:48.0293697Z * [new branch] gh/wconstab/426/base -> origin/gh/wconstab/426/base 2025-07-17T06:36:48.0295183Z * [new branch] gh/wconstab/426/head -> origin/gh/wconstab/426/head 2025-07-17T06:36:48.0295690Z * [new branch] gh/wconstab/426/orig -> origin/gh/wconstab/426/orig 2025-07-17T06:36:48.0296177Z * [new branch] gh/wconstab/427/base -> origin/gh/wconstab/427/base 2025-07-17T06:36:48.0296673Z * [new branch] gh/wconstab/427/head -> origin/gh/wconstab/427/head 2025-07-17T06:36:48.0297158Z * [new branch] gh/wconstab/427/orig -> origin/gh/wconstab/427/orig 2025-07-17T06:36:48.0297664Z * [new branch] gh/wconstab/428/base -> origin/gh/wconstab/428/base 2025-07-17T06:36:48.0298169Z * [new branch] gh/wconstab/428/head -> origin/gh/wconstab/428/head 2025-07-17T06:36:48.0298653Z * [new branch] gh/wconstab/428/orig -> origin/gh/wconstab/428/orig 2025-07-17T06:36:48.0299146Z * [new branch] gh/wconstab/429/base -> origin/gh/wconstab/429/base 2025-07-17T06:36:48.0300605Z * [new branch] gh/wconstab/429/head -> origin/gh/wconstab/429/head 2025-07-17T06:36:48.0913226Z * [new branch] gh/wconstab/429/orig -> origin/gh/wconstab/429/orig 2025-07-17T06:36:48.0920686Z * [new branch] gh/wconstab/430/base -> origin/gh/wconstab/430/base 2025-07-17T06:36:48.0921297Z * [new branch] gh/wconstab/430/head -> origin/gh/wconstab/430/head 2025-07-17T06:36:48.0921814Z * [new branch] gh/wconstab/430/orig -> origin/gh/wconstab/430/orig 2025-07-17T06:36:48.0922348Z * [new branch] gh/wconstab/431/base -> origin/gh/wconstab/431/base 2025-07-17T06:36:48.0922846Z * [new branch] gh/wconstab/431/head -> origin/gh/wconstab/431/head 2025-07-17T06:36:48.0923344Z * [new branch] gh/wconstab/431/orig -> origin/gh/wconstab/431/orig 2025-07-17T06:36:48.0923847Z * [new branch] gh/weifengpy/27/base -> origin/gh/weifengpy/27/base 2025-07-17T06:36:48.0924349Z * [new branch] gh/weifengpy/27/head -> origin/gh/weifengpy/27/head 2025-07-17T06:36:48.0924845Z * [new branch] gh/weifengpy/27/orig -> origin/gh/weifengpy/27/orig 2025-07-17T06:36:48.0925342Z * [new branch] gh/weifengpy/29/base -> origin/gh/weifengpy/29/base 2025-07-17T06:36:48.0925842Z * [new branch] gh/weifengpy/29/head -> origin/gh/weifengpy/29/head 2025-07-17T06:36:48.0926329Z * [new branch] gh/weifengpy/29/orig -> origin/gh/weifengpy/29/orig 2025-07-17T06:36:48.0927369Z * [new branch] gh/weifengpy/30/base -> origin/gh/weifengpy/30/base 2025-07-17T06:36:48.0927888Z * [new branch] gh/weifengpy/30/head -> origin/gh/weifengpy/30/head 2025-07-17T06:36:48.0928382Z * [new branch] gh/weifengpy/30/orig -> origin/gh/weifengpy/30/orig 2025-07-17T06:36:48.0928906Z * [new branch] gh/williamwen42/196/base -> origin/gh/williamwen42/196/base 2025-07-17T06:36:48.0929439Z * [new branch] gh/williamwen42/196/head -> origin/gh/williamwen42/196/head 2025-07-17T06:36:48.0929981Z * [new branch] gh/williamwen42/196/orig -> origin/gh/williamwen42/196/orig 2025-07-17T06:36:48.0930515Z * [new branch] gh/williamwen42/209/base -> origin/gh/williamwen42/209/base 2025-07-17T06:36:48.0931042Z * [new branch] gh/williamwen42/209/head -> origin/gh/williamwen42/209/head 2025-07-17T06:36:48.0931576Z * [new branch] gh/williamwen42/209/orig -> origin/gh/williamwen42/209/orig 2025-07-17T06:36:48.0932207Z * [new branch] gh/williamwen42/241/base -> origin/gh/williamwen42/241/base 2025-07-17T06:36:48.0932746Z * [new branch] gh/williamwen42/241/head -> origin/gh/williamwen42/241/head 2025-07-17T06:36:48.0933280Z * [new branch] gh/williamwen42/241/orig -> origin/gh/williamwen42/241/orig 2025-07-17T06:36:48.0933807Z * [new branch] gh/williamwen42/242/base -> origin/gh/williamwen42/242/base 2025-07-17T06:36:48.0934346Z * [new branch] gh/williamwen42/242/head -> origin/gh/williamwen42/242/head 2025-07-17T06:36:48.0934879Z * [new branch] gh/williamwen42/242/orig -> origin/gh/williamwen42/242/orig 2025-07-17T06:36:48.0935422Z * [new branch] gh/williamwen42/243/base -> origin/gh/williamwen42/243/base 2025-07-17T06:36:48.0935977Z * [new branch] gh/williamwen42/243/head -> origin/gh/williamwen42/243/head 2025-07-17T06:36:48.0936564Z * [new branch] gh/williamwen42/243/orig -> origin/gh/williamwen42/243/orig 2025-07-17T06:36:48.0937107Z * [new branch] gh/williamwen42/244/base -> origin/gh/williamwen42/244/base 2025-07-17T06:36:48.0937629Z * [new branch] gh/williamwen42/244/head -> origin/gh/williamwen42/244/head 2025-07-17T06:36:48.0938162Z * [new branch] gh/williamwen42/244/orig -> origin/gh/williamwen42/244/orig 2025-07-17T06:36:48.0938701Z * [new branch] gh/williamwen42/245/base -> origin/gh/williamwen42/245/base 2025-07-17T06:36:48.0939225Z * [new branch] gh/williamwen42/245/head -> origin/gh/williamwen42/245/head 2025-07-17T06:36:48.0939761Z * [new branch] gh/williamwen42/245/orig -> origin/gh/williamwen42/245/orig 2025-07-17T06:36:48.0940331Z * [new branch] gh/williamwen42/246/base -> origin/gh/williamwen42/246/base 2025-07-17T06:36:48.0940869Z * [new branch] gh/williamwen42/246/head -> origin/gh/williamwen42/246/head 2025-07-17T06:36:48.0941393Z * [new branch] gh/williamwen42/246/orig -> origin/gh/williamwen42/246/orig 2025-07-17T06:36:48.0941927Z * [new branch] gh/williamwen42/248/base -> origin/gh/williamwen42/248/base 2025-07-17T06:36:48.0942463Z * [new branch] gh/williamwen42/248/head -> origin/gh/williamwen42/248/head 2025-07-17T06:36:48.0942986Z * [new branch] gh/williamwen42/248/orig -> origin/gh/williamwen42/248/orig 2025-07-17T06:36:48.0943520Z * [new branch] gh/williamwen42/249/base -> origin/gh/williamwen42/249/base 2025-07-17T06:36:48.0944043Z * [new branch] gh/williamwen42/249/head -> origin/gh/williamwen42/249/head 2025-07-17T06:36:48.1356855Z * [new branch] gh/williamwen42/249/orig -> origin/gh/williamwen42/249/orig 2025-07-17T06:36:48.1358024Z * [new branch] gh/williamwen42/250/base -> origin/gh/williamwen42/250/base 2025-07-17T06:36:48.1358570Z * [new branch] gh/williamwen42/250/head -> origin/gh/williamwen42/250/head 2025-07-17T06:36:48.1359119Z * [new branch] gh/williamwen42/250/orig -> origin/gh/williamwen42/250/orig 2025-07-17T06:36:48.1359667Z * [new branch] gh/williamwen42/251/base -> origin/gh/williamwen42/251/base 2025-07-17T06:36:48.1360188Z * [new branch] gh/williamwen42/251/head -> origin/gh/williamwen42/251/head 2025-07-17T06:36:48.1360724Z * [new branch] gh/williamwen42/251/orig -> origin/gh/williamwen42/251/orig 2025-07-17T06:36:48.1361246Z * [new branch] gh/williamwen42/252/base -> origin/gh/williamwen42/252/base 2025-07-17T06:36:48.1361871Z * [new branch] gh/williamwen42/252/head -> origin/gh/williamwen42/252/head 2025-07-17T06:36:48.1362405Z * [new branch] gh/williamwen42/252/orig -> origin/gh/williamwen42/252/orig 2025-07-17T06:36:48.1363058Z * [new branch] gh/williamwen42/253/base -> origin/gh/williamwen42/253/base 2025-07-17T06:36:48.1363600Z * [new branch] gh/williamwen42/253/head -> origin/gh/williamwen42/253/head 2025-07-17T06:36:48.1364124Z * [new branch] gh/williamwen42/253/orig -> origin/gh/williamwen42/253/orig 2025-07-17T06:36:48.1364667Z * [new branch] gh/williamwen42/254/base -> origin/gh/williamwen42/254/base 2025-07-17T06:36:48.1365197Z * [new branch] gh/williamwen42/254/head -> origin/gh/williamwen42/254/head 2025-07-17T06:36:48.1365741Z * [new branch] gh/williamwen42/254/orig -> origin/gh/williamwen42/254/orig 2025-07-17T06:36:48.1366275Z * [new branch] gh/williamwen42/255/base -> origin/gh/williamwen42/255/base 2025-07-17T06:36:48.1366799Z * [new branch] gh/williamwen42/255/head -> origin/gh/williamwen42/255/head 2025-07-17T06:36:48.1367379Z * [new branch] gh/williamwen42/255/orig -> origin/gh/williamwen42/255/orig 2025-07-17T06:36:48.1367974Z * [new branch] gh/williamwen42/256/base -> origin/gh/williamwen42/256/base 2025-07-17T06:36:48.1368501Z * [new branch] gh/williamwen42/256/head -> origin/gh/williamwen42/256/head 2025-07-17T06:36:48.1369035Z * [new branch] gh/williamwen42/256/orig -> origin/gh/williamwen42/256/orig 2025-07-17T06:36:48.1369561Z * [new branch] gh/williamwen42/257/base -> origin/gh/williamwen42/257/base 2025-07-17T06:36:48.1370094Z * [new branch] gh/williamwen42/257/head -> origin/gh/williamwen42/257/head 2025-07-17T06:36:48.1370620Z * [new branch] gh/williamwen42/257/orig -> origin/gh/williamwen42/257/orig 2025-07-17T06:36:48.1371157Z * [new branch] gh/williamwen42/258/base -> origin/gh/williamwen42/258/base 2025-07-17T06:36:48.1371686Z * [new branch] gh/williamwen42/258/head -> origin/gh/williamwen42/258/head 2025-07-17T06:36:48.1372233Z * [new branch] gh/williamwen42/258/orig -> origin/gh/williamwen42/258/orig 2025-07-17T06:36:48.1372796Z * [new branch] gh/williamwen42/259/base -> origin/gh/williamwen42/259/base 2025-07-17T06:36:48.1373324Z * [new branch] gh/williamwen42/259/head -> origin/gh/williamwen42/259/head 2025-07-17T06:36:48.1373901Z * [new branch] gh/williamwen42/259/orig -> origin/gh/williamwen42/259/orig 2025-07-17T06:36:48.1374437Z * [new branch] gh/williamwen42/260/base -> origin/gh/williamwen42/260/base 2025-07-17T06:36:48.1374961Z * [new branch] gh/williamwen42/260/head -> origin/gh/williamwen42/260/head 2025-07-17T06:36:48.1375494Z * [new branch] gh/williamwen42/260/orig -> origin/gh/williamwen42/260/orig 2025-07-17T06:36:48.1376019Z * [new branch] gh/williamwen42/261/base -> origin/gh/williamwen42/261/base 2025-07-17T06:36:48.1376940Z * [new branch] gh/williamwen42/261/head -> origin/gh/williamwen42/261/head 2025-07-17T06:36:48.1377482Z * [new branch] gh/williamwen42/261/orig -> origin/gh/williamwen42/261/orig 2025-07-17T06:36:48.1378023Z * [new branch] gh/williamwen42/262/base -> origin/gh/williamwen42/262/base 2025-07-17T06:36:48.1378562Z * [new branch] gh/williamwen42/262/head -> origin/gh/williamwen42/262/head 2025-07-17T06:36:48.1379131Z * [new branch] gh/williamwen42/262/orig -> origin/gh/williamwen42/262/orig 2025-07-17T06:36:48.1379702Z * [new branch] gh/williamwen42/263/base -> origin/gh/williamwen42/263/base 2025-07-17T06:36:48.1380238Z * [new branch] gh/williamwen42/263/head -> origin/gh/williamwen42/263/head 2025-07-17T06:36:48.1380761Z * [new branch] gh/williamwen42/263/orig -> origin/gh/williamwen42/263/orig 2025-07-17T06:36:48.1381291Z * [new branch] gh/xmfan/169/base -> origin/gh/xmfan/169/base 2025-07-17T06:36:48.1381854Z * [new branch] gh/xmfan/169/head -> origin/gh/xmfan/169/head 2025-07-17T06:36:48.2013104Z * [new branch] gh/xmfan/170/base -> origin/gh/xmfan/170/base 2025-07-17T06:36:48.2013636Z * [new branch] gh/xmfan/170/head -> origin/gh/xmfan/170/head 2025-07-17T06:36:48.2014108Z * [new branch] gh/xmfan/18/base -> origin/gh/xmfan/18/base 2025-07-17T06:36:48.2014581Z * [new branch] gh/xmfan/18/head -> origin/gh/xmfan/18/head 2025-07-17T06:36:48.2015052Z * [new branch] gh/xmfan/194/base -> origin/gh/xmfan/194/base 2025-07-17T06:36:48.2015519Z * [new branch] gh/xmfan/194/head -> origin/gh/xmfan/194/head 2025-07-17T06:36:48.2015995Z * [new branch] gh/xmfan/194/orig -> origin/gh/xmfan/194/orig 2025-07-17T06:36:48.2016477Z * [new branch] gh/xmfan/206/base -> origin/gh/xmfan/206/base 2025-07-17T06:36:48.2016953Z * [new branch] gh/xmfan/206/head -> origin/gh/xmfan/206/head 2025-07-17T06:36:48.2017411Z * [new branch] gh/xmfan/206/orig -> origin/gh/xmfan/206/orig 2025-07-17T06:36:48.2017869Z * [new branch] gh/xmfan/213/base -> origin/gh/xmfan/213/base 2025-07-17T06:36:48.2018340Z * [new branch] gh/xmfan/213/head -> origin/gh/xmfan/213/head 2025-07-17T06:36:48.2018823Z * [new branch] gh/xmfan/213/orig -> origin/gh/xmfan/213/orig 2025-07-17T06:36:48.2019283Z * [new branch] gh/xmfan/223/base -> origin/gh/xmfan/223/base 2025-07-17T06:36:48.2019746Z * [new branch] gh/xmfan/223/head -> origin/gh/xmfan/223/head 2025-07-17T06:36:48.2020201Z * [new branch] gh/xmfan/223/orig -> origin/gh/xmfan/223/orig 2025-07-17T06:36:48.2020669Z * [new branch] gh/xmfan/225/base -> origin/gh/xmfan/225/base 2025-07-17T06:36:48.2021127Z * [new branch] gh/xmfan/225/head -> origin/gh/xmfan/225/head 2025-07-17T06:36:48.2021595Z * [new branch] gh/xmfan/225/orig -> origin/gh/xmfan/225/orig 2025-07-17T06:36:48.2022060Z * [new branch] gh/xmfan/228/base -> origin/gh/xmfan/228/base 2025-07-17T06:36:48.2022518Z * [new branch] gh/xmfan/228/head -> origin/gh/xmfan/228/head 2025-07-17T06:36:48.2022980Z * [new branch] gh/xmfan/228/orig -> origin/gh/xmfan/228/orig 2025-07-17T06:36:48.2023436Z * [new branch] gh/xmfan/229/base -> origin/gh/xmfan/229/base 2025-07-17T06:36:48.2023896Z * [new branch] gh/xmfan/229/head -> origin/gh/xmfan/229/head 2025-07-17T06:36:48.2024364Z * [new branch] gh/xmfan/229/orig -> origin/gh/xmfan/229/orig 2025-07-17T06:36:48.2025368Z * [new branch] gh/xmfan/230/base -> origin/gh/xmfan/230/base 2025-07-17T06:36:48.2025841Z * [new branch] gh/xmfan/230/head -> origin/gh/xmfan/230/head 2025-07-17T06:36:48.2026310Z * [new branch] gh/xmfan/230/orig -> origin/gh/xmfan/230/orig 2025-07-17T06:36:48.2026780Z * [new branch] gh/xmfan/237/base -> origin/gh/xmfan/237/base 2025-07-17T06:36:48.2027244Z * [new branch] gh/xmfan/237/head -> origin/gh/xmfan/237/head 2025-07-17T06:36:48.2027709Z * [new branch] gh/xmfan/237/orig -> origin/gh/xmfan/237/orig 2025-07-17T06:36:48.2028176Z * [new branch] gh/xmfan/243/base -> origin/gh/xmfan/243/base 2025-07-17T06:36:48.2028630Z * [new branch] gh/xmfan/243/head -> origin/gh/xmfan/243/head 2025-07-17T06:36:48.2029101Z * [new branch] gh/xmfan/243/orig -> origin/gh/xmfan/243/orig 2025-07-17T06:36:48.2029561Z * [new branch] gh/xmfan/244/base -> origin/gh/xmfan/244/base 2025-07-17T06:36:48.2030135Z * [new branch] gh/xmfan/244/head -> origin/gh/xmfan/244/head 2025-07-17T06:36:48.2030601Z * [new branch] gh/xmfan/244/orig -> origin/gh/xmfan/244/orig 2025-07-17T06:36:48.2031059Z * [new branch] gh/xmfan/246/base -> origin/gh/xmfan/246/base 2025-07-17T06:36:48.2031529Z * [new branch] gh/xmfan/246/head -> origin/gh/xmfan/246/head 2025-07-17T06:36:48.2031987Z * [new branch] gh/xmfan/246/orig -> origin/gh/xmfan/246/orig 2025-07-17T06:36:48.2032459Z * [new branch] gh/xmfan/248/base -> origin/gh/xmfan/248/base 2025-07-17T06:36:48.2032932Z * [new branch] gh/xmfan/248/head -> origin/gh/xmfan/248/head 2025-07-17T06:36:48.2033392Z * [new branch] gh/xmfan/248/orig -> origin/gh/xmfan/248/orig 2025-07-17T06:36:48.2033867Z * [new branch] gh/xmfan/250/base -> origin/gh/xmfan/250/base 2025-07-17T06:36:48.2034322Z * [new branch] gh/xmfan/250/head -> origin/gh/xmfan/250/head 2025-07-17T06:36:48.2034790Z * [new branch] gh/xmfan/250/orig -> origin/gh/xmfan/250/orig 2025-07-17T06:36:48.2035359Z * [new branch] gh/xmfan/253/base -> origin/gh/xmfan/253/base 2025-07-17T06:36:48.2035828Z * [new branch] gh/xmfan/253/head -> origin/gh/xmfan/253/head 2025-07-17T06:36:48.2480623Z * [new branch] gh/xmfan/253/orig -> origin/gh/xmfan/253/orig 2025-07-17T06:36:48.2481215Z * [new branch] gh/xmfan/254/base -> origin/gh/xmfan/254/base 2025-07-17T06:36:48.2481700Z * [new branch] gh/xmfan/254/head -> origin/gh/xmfan/254/head 2025-07-17T06:36:48.2482183Z * [new branch] gh/xmfan/254/orig -> origin/gh/xmfan/254/orig 2025-07-17T06:36:48.2482690Z * [new branch] gh/xmfan/255/base -> origin/gh/xmfan/255/base 2025-07-17T06:36:48.2483157Z * [new branch] gh/xmfan/255/head -> origin/gh/xmfan/255/head 2025-07-17T06:36:48.2483626Z * [new branch] gh/xmfan/255/orig -> origin/gh/xmfan/255/orig 2025-07-17T06:36:48.2484091Z * [new branch] gh/xmfan/256/base -> origin/gh/xmfan/256/base 2025-07-17T06:36:48.2484556Z * [new branch] gh/xmfan/256/head -> origin/gh/xmfan/256/head 2025-07-17T06:36:48.2485018Z * [new branch] gh/xmfan/256/orig -> origin/gh/xmfan/256/orig 2025-07-17T06:36:48.2485480Z * [new branch] gh/xmfan/257/base -> origin/gh/xmfan/257/base 2025-07-17T06:36:48.2485936Z * [new branch] gh/xmfan/257/head -> origin/gh/xmfan/257/head 2025-07-17T06:36:48.2486412Z * [new branch] gh/xmfan/257/orig -> origin/gh/xmfan/257/orig 2025-07-17T06:36:48.2487403Z * [new branch] gh/xmfan/258/base -> origin/gh/xmfan/258/base 2025-07-17T06:36:48.2487874Z * [new branch] gh/xmfan/258/head -> origin/gh/xmfan/258/head 2025-07-17T06:36:48.2488343Z * [new branch] gh/xmfan/258/orig -> origin/gh/xmfan/258/orig 2025-07-17T06:36:48.2488805Z * [new branch] gh/xmfan/259/base -> origin/gh/xmfan/259/base 2025-07-17T06:36:48.2489282Z * [new branch] gh/xmfan/259/head -> origin/gh/xmfan/259/head 2025-07-17T06:36:48.2489739Z * [new branch] gh/xmfan/259/orig -> origin/gh/xmfan/259/orig 2025-07-17T06:36:48.2490200Z * [new branch] gh/xmfan/260/base -> origin/gh/xmfan/260/base 2025-07-17T06:36:48.2490665Z * [new branch] gh/xmfan/260/head -> origin/gh/xmfan/260/head 2025-07-17T06:36:48.2491122Z * [new branch] gh/xmfan/260/orig -> origin/gh/xmfan/260/orig 2025-07-17T06:36:48.2491711Z * [new branch] gh/xmfan/261/base -> origin/gh/xmfan/261/base 2025-07-17T06:36:48.2492172Z * [new branch] gh/xmfan/261/head -> origin/gh/xmfan/261/head 2025-07-17T06:36:48.2492656Z * [new branch] gh/xmfan/261/orig -> origin/gh/xmfan/261/orig 2025-07-17T06:36:48.2493115Z * [new branch] gh/xmfan/262/base -> origin/gh/xmfan/262/base 2025-07-17T06:36:48.2493608Z * [new branch] gh/xmfan/262/head -> origin/gh/xmfan/262/head 2025-07-17T06:36:48.2494075Z * [new branch] gh/xmfan/262/orig -> origin/gh/xmfan/262/orig 2025-07-17T06:36:48.2494537Z * [new branch] gh/xmfan/263/base -> origin/gh/xmfan/263/base 2025-07-17T06:36:48.2495010Z * [new branch] gh/xmfan/263/head -> origin/gh/xmfan/263/head 2025-07-17T06:36:48.2495467Z * [new branch] gh/xmfan/263/orig -> origin/gh/xmfan/263/orig 2025-07-17T06:36:48.2495947Z * [new branch] gh/xmfan/264/base -> origin/gh/xmfan/264/base 2025-07-17T06:36:48.2496423Z * [new branch] gh/xmfan/264/head -> origin/gh/xmfan/264/head 2025-07-17T06:36:48.2496896Z * [new branch] gh/xmfan/264/orig -> origin/gh/xmfan/264/orig 2025-07-17T06:36:48.2497366Z * [new branch] gh/xmfan/265/base -> origin/gh/xmfan/265/base 2025-07-17T06:36:48.2497832Z * [new branch] gh/xmfan/265/head -> origin/gh/xmfan/265/head 2025-07-17T06:36:48.2498297Z * [new branch] gh/xmfan/265/orig -> origin/gh/xmfan/265/orig 2025-07-17T06:36:48.2498768Z * [new branch] gh/xmfan/266/base -> origin/gh/xmfan/266/base 2025-07-17T06:36:48.2499230Z * [new branch] gh/xmfan/266/head -> origin/gh/xmfan/266/head 2025-07-17T06:36:48.2499697Z * [new branch] gh/xmfan/266/orig -> origin/gh/xmfan/266/orig 2025-07-17T06:36:48.2500170Z * [new branch] gh/xmfan/267/base -> origin/gh/xmfan/267/base 2025-07-17T06:36:48.2500645Z * [new branch] gh/xmfan/267/head -> origin/gh/xmfan/267/head 2025-07-17T06:36:48.2501114Z * [new branch] gh/xmfan/267/orig -> origin/gh/xmfan/267/orig 2025-07-17T06:36:48.2501570Z * [new branch] gh/xmfan/268/base -> origin/gh/xmfan/268/base 2025-07-17T06:36:48.2502039Z * [new branch] gh/xmfan/268/head -> origin/gh/xmfan/268/head 2025-07-17T06:36:48.2502502Z * [new branch] gh/xmfan/268/orig -> origin/gh/xmfan/268/orig 2025-07-17T06:36:48.2502967Z * [new branch] gh/xmfan/269/base -> origin/gh/xmfan/269/base 2025-07-17T06:36:48.2503427Z * [new branch] gh/xmfan/269/head -> origin/gh/xmfan/269/head 2025-07-17T06:36:48.3297196Z * [new branch] gh/xmfan/269/orig -> origin/gh/xmfan/269/orig 2025-07-17T06:36:48.3297797Z * [new branch] gh/xuanzhang816/12/base -> origin/gh/xuanzhang816/12/base 2025-07-17T06:36:48.3298346Z * [new branch] gh/xuanzhang816/12/head -> origin/gh/xuanzhang816/12/head 2025-07-17T06:36:48.3298869Z * [new branch] gh/xuanzhang816/12/orig -> origin/gh/xuanzhang816/12/orig 2025-07-17T06:36:48.3299391Z * [new branch] gh/xuanzhang816/14/base -> origin/gh/xuanzhang816/14/base 2025-07-17T06:36:48.3299909Z * [new branch] gh/xuanzhang816/14/head -> origin/gh/xuanzhang816/14/head 2025-07-17T06:36:48.3300432Z * [new branch] gh/xuanzhang816/14/orig -> origin/gh/xuanzhang816/14/orig 2025-07-17T06:36:48.3300957Z * [new branch] gh/xuanzhang816/15/base -> origin/gh/xuanzhang816/15/base 2025-07-17T06:36:48.3301488Z * [new branch] gh/xuanzhang816/15/head -> origin/gh/xuanzhang816/15/head 2025-07-17T06:36:48.3302248Z * [new branch] gh/xuanzhang816/15/orig -> origin/gh/xuanzhang816/15/orig 2025-07-17T06:36:48.3302826Z * [new branch] gh/xuanzhang816/16/base -> origin/gh/xuanzhang816/16/base 2025-07-17T06:36:48.3303341Z * [new branch] gh/xuanzhang816/16/head -> origin/gh/xuanzhang816/16/head 2025-07-17T06:36:48.3303881Z * [new branch] gh/xuanzhang816/16/orig -> origin/gh/xuanzhang816/16/orig 2025-07-17T06:36:48.3304400Z * [new branch] gh/xuanzhang816/17/base -> origin/gh/xuanzhang816/17/base 2025-07-17T06:36:48.3304925Z * [new branch] gh/xuanzhang816/17/head -> origin/gh/xuanzhang816/17/head 2025-07-17T06:36:48.3305445Z * [new branch] gh/xuanzhang816/17/orig -> origin/gh/xuanzhang816/17/orig 2025-07-17T06:36:48.3305957Z * [new branch] gh/xuanzhang816/18/base -> origin/gh/xuanzhang816/18/base 2025-07-17T06:36:48.3306477Z * [new branch] gh/xuanzhang816/18/head -> origin/gh/xuanzhang816/18/head 2025-07-17T06:36:48.3307000Z * [new branch] gh/xuanzhang816/18/orig -> origin/gh/xuanzhang816/18/orig 2025-07-17T06:36:48.3307514Z * [new branch] gh/xuanzhang816/19/base -> origin/gh/xuanzhang816/19/base 2025-07-17T06:36:48.3308127Z * [new branch] gh/xuanzhang816/19/head -> origin/gh/xuanzhang816/19/head 2025-07-17T06:36:48.3308645Z * [new branch] gh/xuanzhang816/19/orig -> origin/gh/xuanzhang816/19/orig 2025-07-17T06:36:48.3309162Z * [new branch] gh/xuanzhang816/20/base -> origin/gh/xuanzhang816/20/base 2025-07-17T06:36:48.3309676Z * [new branch] gh/xuanzhang816/20/head -> origin/gh/xuanzhang816/20/head 2025-07-17T06:36:48.3310198Z * [new branch] gh/xuanzhang816/20/orig -> origin/gh/xuanzhang816/20/orig 2025-07-17T06:36:48.3310703Z * [new branch] gh/yanbing-j/11/base -> origin/gh/yanbing-j/11/base 2025-07-17T06:36:48.3311219Z * [new branch] gh/yanbing-j/11/head -> origin/gh/yanbing-j/11/head 2025-07-17T06:36:48.3311716Z * [new branch] gh/yanbing-j/11/orig -> origin/gh/yanbing-j/11/orig 2025-07-17T06:36:48.3312198Z * [new branch] gh/yanbing-j/12/base -> origin/gh/yanbing-j/12/base 2025-07-17T06:36:48.3312686Z * [new branch] gh/yanbing-j/12/head -> origin/gh/yanbing-j/12/head 2025-07-17T06:36:48.3313170Z * [new branch] gh/yanbing-j/12/orig -> origin/gh/yanbing-j/12/orig 2025-07-17T06:36:48.3313712Z * [new branch] gh/yanbing-j/13/base -> origin/gh/yanbing-j/13/base 2025-07-17T06:36:48.3314252Z * [new branch] gh/yanbing-j/13/head -> origin/gh/yanbing-j/13/head 2025-07-17T06:36:48.3314737Z * [new branch] gh/yanbing-j/13/orig -> origin/gh/yanbing-j/13/orig 2025-07-17T06:36:48.3315338Z * [new branch] gh/yanbing-j/14/base -> origin/gh/yanbing-j/14/base 2025-07-17T06:36:48.3316341Z * [new branch] gh/yanbing-j/14/head -> origin/gh/yanbing-j/14/head 2025-07-17T06:36:48.3316835Z * [new branch] gh/yanbing-j/14/orig -> origin/gh/yanbing-j/14/orig 2025-07-17T06:36:48.3317332Z * [new branch] gh/yanbing-j/15/base -> origin/gh/yanbing-j/15/base 2025-07-17T06:36:48.3317825Z * [new branch] gh/yanbing-j/15/head -> origin/gh/yanbing-j/15/head 2025-07-17T06:36:48.3318313Z * [new branch] gh/yanbing-j/15/orig -> origin/gh/yanbing-j/15/orig 2025-07-17T06:36:48.3318817Z * [new branch] gh/yanbing-j/18/base -> origin/gh/yanbing-j/18/base 2025-07-17T06:36:48.3328696Z * [new branch] gh/yanbing-j/18/head -> origin/gh/yanbing-j/18/head 2025-07-17T06:36:48.3329445Z * [new branch] gh/yanbing-j/18/orig -> origin/gh/yanbing-j/18/orig 2025-07-17T06:36:48.3330106Z * [new branch] gh/yanbing-j/19/base -> origin/gh/yanbing-j/19/base 2025-07-17T06:36:48.3330785Z * [new branch] gh/yanbing-j/19/head -> origin/gh/yanbing-j/19/head 2025-07-17T06:36:48.3331270Z * [new branch] gh/yanbing-j/19/orig -> origin/gh/yanbing-j/19/orig 2025-07-17T06:36:48.3755294Z * [new branch] gh/yanbing-j/20/base -> origin/gh/yanbing-j/20/base 2025-07-17T06:36:48.3755848Z * [new branch] gh/yanbing-j/20/head -> origin/gh/yanbing-j/20/head 2025-07-17T06:36:48.3756398Z * [new branch] gh/yanbing-j/20/orig -> origin/gh/yanbing-j/20/orig 2025-07-17T06:36:48.3756946Z * [new branch] gh/yanbing-j/21/base -> origin/gh/yanbing-j/21/base 2025-07-17T06:36:48.3757428Z * [new branch] gh/yanbing-j/21/head -> origin/gh/yanbing-j/21/head 2025-07-17T06:36:48.3757920Z * [new branch] gh/yanbing-j/22/base -> origin/gh/yanbing-j/22/base 2025-07-17T06:36:48.3758446Z * [new branch] gh/yanbing-j/22/head -> origin/gh/yanbing-j/22/head 2025-07-17T06:36:48.3758930Z * [new branch] gh/yanbing-j/22/orig -> origin/gh/yanbing-j/22/orig 2025-07-17T06:36:48.3759415Z * [new branch] gh/yanbing-j/23/base -> origin/gh/yanbing-j/23/base 2025-07-17T06:36:48.3759889Z * [new branch] gh/yanbing-j/23/head -> origin/gh/yanbing-j/23/head 2025-07-17T06:36:48.3760379Z * [new branch] gh/yanbing-j/23/orig -> origin/gh/yanbing-j/23/orig 2025-07-17T06:36:48.3760859Z * [new branch] gh/yanbing-j/24/base -> origin/gh/yanbing-j/24/base 2025-07-17T06:36:48.3761341Z * [new branch] gh/yanbing-j/24/head -> origin/gh/yanbing-j/24/head 2025-07-17T06:36:48.3761877Z * [new branch] gh/yanbing-j/24/orig -> origin/gh/yanbing-j/24/orig 2025-07-17T06:36:48.3762409Z * [new branch] gh/yanbing-j/25/base -> origin/gh/yanbing-j/25/base 2025-07-17T06:36:48.3762907Z * [new branch] gh/yanbing-j/25/head -> origin/gh/yanbing-j/25/head 2025-07-17T06:36:48.3763388Z * [new branch] gh/yanbing-j/25/orig -> origin/gh/yanbing-j/25/orig 2025-07-17T06:36:48.3763880Z * [new branch] gh/yanbing-j/26/base -> origin/gh/yanbing-j/26/base 2025-07-17T06:36:48.3764363Z * [new branch] gh/yanbing-j/26/head -> origin/gh/yanbing-j/26/head 2025-07-17T06:36:48.3764844Z * [new branch] gh/yanbing-j/26/orig -> origin/gh/yanbing-j/26/orig 2025-07-17T06:36:48.3765343Z * [new branch] gh/yanbing-j/34/base -> origin/gh/yanbing-j/34/base 2025-07-17T06:36:48.3765822Z * [new branch] gh/yanbing-j/34/head -> origin/gh/yanbing-j/34/head 2025-07-17T06:36:48.3766306Z * [new branch] gh/yanbing-j/34/orig -> origin/gh/yanbing-j/34/orig 2025-07-17T06:36:48.3766976Z * [new branch] gh/yanbing-j/36/base -> origin/gh/yanbing-j/36/base 2025-07-17T06:36:48.3767466Z * [new branch] gh/yanbing-j/36/head -> origin/gh/yanbing-j/36/head 2025-07-17T06:36:48.3768043Z * [new branch] gh/yanbing-j/36/orig -> origin/gh/yanbing-j/36/orig 2025-07-17T06:36:48.3768546Z * [new branch] gh/yanbing-j/37/base -> origin/gh/yanbing-j/37/base 2025-07-17T06:36:48.3769037Z * [new branch] gh/yanbing-j/37/head -> origin/gh/yanbing-j/37/head 2025-07-17T06:36:48.3769532Z * [new branch] gh/yanbing-j/37/orig -> origin/gh/yanbing-j/37/orig 2025-07-17T06:36:48.3770009Z * [new branch] gh/yanbing-j/38/base -> origin/gh/yanbing-j/38/base 2025-07-17T06:36:48.3770495Z * [new branch] gh/yanbing-j/38/head -> origin/gh/yanbing-j/38/head 2025-07-17T06:36:48.3770973Z * [new branch] gh/yanbing-j/38/orig -> origin/gh/yanbing-j/38/orig 2025-07-17T06:36:48.3771573Z * [new branch] gh/yanbing-j/39/base -> origin/gh/yanbing-j/39/base 2025-07-17T06:36:48.3772073Z * [new branch] gh/yanbing-j/39/head -> origin/gh/yanbing-j/39/head 2025-07-17T06:36:48.3772562Z * [new branch] gh/yanbing-j/39/orig -> origin/gh/yanbing-j/39/orig 2025-07-17T06:36:48.3773049Z * [new branch] gh/ydwu4/223/base -> origin/gh/ydwu4/223/base 2025-07-17T06:36:48.3773559Z * [new branch] gh/ydwu4/223/head -> origin/gh/ydwu4/223/head 2025-07-17T06:36:48.3774072Z * [new branch] gh/ydwu4/223/orig -> origin/gh/ydwu4/223/orig 2025-07-17T06:36:48.3774541Z * [new branch] gh/ydwu4/224/base -> origin/gh/ydwu4/224/base 2025-07-17T06:36:48.3775007Z * [new branch] gh/ydwu4/224/head -> origin/gh/ydwu4/224/head 2025-07-17T06:36:48.3775471Z * [new branch] gh/ydwu4/224/orig -> origin/gh/ydwu4/224/orig 2025-07-17T06:36:48.3775934Z * [new branch] gh/ydwu4/225/base -> origin/gh/ydwu4/225/base 2025-07-17T06:36:48.3776398Z * [new branch] gh/ydwu4/225/head -> origin/gh/ydwu4/225/head 2025-07-17T06:36:48.3776859Z * [new branch] gh/ydwu4/225/orig -> origin/gh/ydwu4/225/orig 2025-07-17T06:36:48.3777319Z * [new branch] gh/ydwu4/233/base -> origin/gh/ydwu4/233/base 2025-07-17T06:36:48.3777781Z * [new branch] gh/ydwu4/233/head -> origin/gh/ydwu4/233/head 2025-07-17T06:36:48.3778237Z * [new branch] gh/ydwu4/233/orig -> origin/gh/ydwu4/233/orig 2025-07-17T06:36:48.4387011Z * [new branch] gh/ydwu4/246/base -> origin/gh/ydwu4/246/base 2025-07-17T06:36:48.4387576Z * [new branch] gh/ydwu4/246/head -> origin/gh/ydwu4/246/head 2025-07-17T06:36:48.4388093Z * [new branch] gh/ydwu4/246/orig -> origin/gh/ydwu4/246/orig 2025-07-17T06:36:48.4388610Z * [new branch] gh/ydwu4/247/base -> origin/gh/ydwu4/247/base 2025-07-17T06:36:48.4389091Z * [new branch] gh/ydwu4/247/head -> origin/gh/ydwu4/247/head 2025-07-17T06:36:48.4389556Z * [new branch] gh/ydwu4/247/orig -> origin/gh/ydwu4/247/orig 2025-07-17T06:36:48.4390024Z * [new branch] gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-07-17T06:36:48.4390478Z * [new branch] gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-07-17T06:36:48.4390938Z * [new branch] gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig 2025-07-17T06:36:48.4391390Z * [new branch] gh/ydwu4/255/base -> origin/gh/ydwu4/255/base 2025-07-17T06:36:48.4391861Z * [new branch] gh/ydwu4/255/head -> origin/gh/ydwu4/255/head 2025-07-17T06:36:48.4392311Z * [new branch] gh/ydwu4/255/orig -> origin/gh/ydwu4/255/orig 2025-07-17T06:36:48.4392976Z * [new branch] gh/ydwu4/259/base -> origin/gh/ydwu4/259/base 2025-07-17T06:36:48.4393487Z * [new branch] gh/ydwu4/259/head -> origin/gh/ydwu4/259/head 2025-07-17T06:36:48.4393979Z * [new branch] gh/ydwu4/259/orig -> origin/gh/ydwu4/259/orig 2025-07-17T06:36:48.4394448Z * [new branch] gh/ydwu4/261/base -> origin/gh/ydwu4/261/base 2025-07-17T06:36:48.4394900Z * [new branch] gh/ydwu4/261/head -> origin/gh/ydwu4/261/head 2025-07-17T06:36:48.4395440Z * [new branch] gh/ydwu4/261/orig -> origin/gh/ydwu4/261/orig 2025-07-17T06:36:48.4395901Z * [new branch] gh/ydwu4/262/base -> origin/gh/ydwu4/262/base 2025-07-17T06:36:48.4396358Z * [new branch] gh/ydwu4/262/head -> origin/gh/ydwu4/262/head 2025-07-17T06:36:48.4396839Z * [new branch] gh/ydwu4/262/orig -> origin/gh/ydwu4/262/orig 2025-07-17T06:36:48.4397990Z * [new branch] gh/ydwu4/263/base -> origin/gh/ydwu4/263/base 2025-07-17T06:36:48.4398473Z * [new branch] gh/ydwu4/263/head -> origin/gh/ydwu4/263/head 2025-07-17T06:36:48.4398948Z * [new branch] gh/ydwu4/263/orig -> origin/gh/ydwu4/263/orig 2025-07-17T06:36:48.4399460Z * [new branch] gh/ydwu4/264/base -> origin/gh/ydwu4/264/base 2025-07-17T06:36:48.4399967Z * [new branch] gh/ydwu4/264/head -> origin/gh/ydwu4/264/head 2025-07-17T06:36:48.4400424Z * [new branch] gh/ydwu4/264/orig -> origin/gh/ydwu4/264/orig 2025-07-17T06:36:48.4400897Z * [new branch] gh/ydwu4/265/base -> origin/gh/ydwu4/265/base 2025-07-17T06:36:48.4401349Z * [new branch] gh/ydwu4/265/head -> origin/gh/ydwu4/265/head 2025-07-17T06:36:48.4401826Z * [new branch] gh/ydwu4/265/orig -> origin/gh/ydwu4/265/orig 2025-07-17T06:36:48.4402302Z * [new branch] gh/ydwu4/266/base -> origin/gh/ydwu4/266/base 2025-07-17T06:36:48.4402759Z * [new branch] gh/ydwu4/266/head -> origin/gh/ydwu4/266/head 2025-07-17T06:36:48.4403221Z * [new branch] gh/ydwu4/266/orig -> origin/gh/ydwu4/266/orig 2025-07-17T06:36:48.4403673Z * [new branch] gh/ydwu4/267/base -> origin/gh/ydwu4/267/base 2025-07-17T06:36:48.4404139Z * [new branch] gh/ydwu4/267/head -> origin/gh/ydwu4/267/head 2025-07-17T06:36:48.4404601Z * [new branch] gh/ydwu4/267/orig -> origin/gh/ydwu4/267/orig 2025-07-17T06:36:48.4405096Z * [new branch] gh/ydwu4/268/base -> origin/gh/ydwu4/268/base 2025-07-17T06:36:48.4405605Z * [new branch] gh/ydwu4/268/head -> origin/gh/ydwu4/268/head 2025-07-17T06:36:48.4406068Z * [new branch] gh/ydwu4/268/orig -> origin/gh/ydwu4/268/orig 2025-07-17T06:36:48.4406547Z * [new branch] gh/ydwu4/269/base -> origin/gh/ydwu4/269/base 2025-07-17T06:36:48.4407010Z * [new branch] gh/ydwu4/269/head -> origin/gh/ydwu4/269/head 2025-07-17T06:36:48.4407466Z * [new branch] gh/ydwu4/269/orig -> origin/gh/ydwu4/269/orig 2025-07-17T06:36:48.4407936Z * [new branch] gh/ydwu4/270/base -> origin/gh/ydwu4/270/base 2025-07-17T06:36:48.4408394Z * [new branch] gh/ydwu4/270/head -> origin/gh/ydwu4/270/head 2025-07-17T06:36:48.4408857Z * [new branch] gh/ydwu4/270/orig -> origin/gh/ydwu4/270/orig 2025-07-17T06:36:48.4409315Z * [new branch] gh/ydwu4/271/base -> origin/gh/ydwu4/271/base 2025-07-17T06:36:48.4409779Z * [new branch] gh/ydwu4/271/head -> origin/gh/ydwu4/271/head 2025-07-17T06:36:48.4410362Z * [new branch] gh/ydwu4/271/orig -> origin/gh/ydwu4/271/orig 2025-07-17T06:36:48.5151225Z * [new branch] gh/ydwu4/272/base -> origin/gh/ydwu4/272/base 2025-07-17T06:36:48.5151759Z * [new branch] gh/ydwu4/272/head -> origin/gh/ydwu4/272/head 2025-07-17T06:36:48.5152231Z * [new branch] gh/ydwu4/272/orig -> origin/gh/ydwu4/272/orig 2025-07-17T06:36:48.5152699Z * [new branch] gh/ydwu4/273/base -> origin/gh/ydwu4/273/base 2025-07-17T06:36:48.5153164Z * [new branch] gh/ydwu4/273/head -> origin/gh/ydwu4/273/head 2025-07-17T06:36:48.5153630Z * [new branch] gh/ydwu4/273/orig -> origin/gh/ydwu4/273/orig 2025-07-17T06:36:48.5154093Z * [new branch] gh/ydwu4/274/base -> origin/gh/ydwu4/274/base 2025-07-17T06:36:48.5154546Z * [new branch] gh/ydwu4/274/head -> origin/gh/ydwu4/274/head 2025-07-17T06:36:48.5155095Z * [new branch] gh/ydwu4/274/orig -> origin/gh/ydwu4/274/orig 2025-07-17T06:36:48.5155735Z * [new branch] gh/ydwu4/275/base -> origin/gh/ydwu4/275/base 2025-07-17T06:36:48.5156199Z * [new branch] gh/ydwu4/275/head -> origin/gh/ydwu4/275/head 2025-07-17T06:36:48.5156666Z * [new branch] gh/ydwu4/275/orig -> origin/gh/ydwu4/275/orig 2025-07-17T06:36:48.5157121Z * [new branch] gh/ydwu4/276/base -> origin/gh/ydwu4/276/base 2025-07-17T06:36:48.5157601Z * [new branch] gh/ydwu4/276/head -> origin/gh/ydwu4/276/head 2025-07-17T06:36:48.5158062Z * [new branch] gh/ydwu4/276/orig -> origin/gh/ydwu4/276/orig 2025-07-17T06:36:48.5158519Z * [new branch] gh/ydwu4/277/base -> origin/gh/ydwu4/277/base 2025-07-17T06:36:48.5158982Z * [new branch] gh/ydwu4/277/head -> origin/gh/ydwu4/277/head 2025-07-17T06:36:48.5159455Z * [new branch] gh/ydwu4/277/orig -> origin/gh/ydwu4/277/orig 2025-07-17T06:36:48.5159915Z * [new branch] gh/ydwu4/278/base -> origin/gh/ydwu4/278/base 2025-07-17T06:36:48.5160381Z * [new branch] gh/ydwu4/278/head -> origin/gh/ydwu4/278/head 2025-07-17T06:36:48.5160842Z * [new branch] gh/ydwu4/278/orig -> origin/gh/ydwu4/278/orig 2025-07-17T06:36:48.5161313Z * [new branch] gh/ydwu4/279/base -> origin/gh/ydwu4/279/base 2025-07-17T06:36:48.5161765Z * [new branch] gh/ydwu4/279/head -> origin/gh/ydwu4/279/head 2025-07-17T06:36:48.5162229Z * [new branch] gh/ydwu4/279/orig -> origin/gh/ydwu4/279/orig 2025-07-17T06:36:48.5162691Z * [new branch] gh/ydwu4/280/base -> origin/gh/ydwu4/280/base 2025-07-17T06:36:48.5163157Z * [new branch] gh/ydwu4/280/head -> origin/gh/ydwu4/280/head 2025-07-17T06:36:48.5163626Z * [new branch] gh/ydwu4/280/orig -> origin/gh/ydwu4/280/orig 2025-07-17T06:36:48.5164089Z * [new branch] gh/ydwu4/281/base -> origin/gh/ydwu4/281/base 2025-07-17T06:36:48.5164551Z * [new branch] gh/ydwu4/281/head -> origin/gh/ydwu4/281/head 2025-07-17T06:36:48.5165014Z * [new branch] gh/ydwu4/281/orig -> origin/gh/ydwu4/281/orig 2025-07-17T06:36:48.5165477Z * [new branch] gh/ydwu4/282/base -> origin/gh/ydwu4/282/base 2025-07-17T06:36:48.5165935Z * [new branch] gh/ydwu4/282/head -> origin/gh/ydwu4/282/head 2025-07-17T06:36:48.5166392Z * [new branch] gh/ydwu4/282/orig -> origin/gh/ydwu4/282/orig 2025-07-17T06:36:48.5166861Z * [new branch] gh/ydwu4/283/base -> origin/gh/ydwu4/283/base 2025-07-17T06:36:48.5167314Z * [new branch] gh/ydwu4/283/head -> origin/gh/ydwu4/283/head 2025-07-17T06:36:48.5167907Z * [new branch] gh/ydwu4/283/orig -> origin/gh/ydwu4/283/orig 2025-07-17T06:36:48.5168375Z * [new branch] gh/yf225/133/base -> origin/gh/yf225/133/base 2025-07-17T06:36:48.5168831Z * [new branch] gh/yf225/133/head -> origin/gh/yf225/133/head 2025-07-17T06:36:48.5169388Z * [new branch] gh/yf225/171/base -> origin/gh/yf225/171/base 2025-07-17T06:36:48.5169893Z * [new branch] gh/yf225/171/head -> origin/gh/yf225/171/head 2025-07-17T06:36:48.5170356Z * [new branch] gh/yf225/171/orig -> origin/gh/yf225/171/orig 2025-07-17T06:36:48.5170815Z * [new branch] gh/yf225/172/base -> origin/gh/yf225/172/base 2025-07-17T06:36:48.5171275Z * [new branch] gh/yf225/172/head -> origin/gh/yf225/172/head 2025-07-17T06:36:48.5171732Z * [new branch] gh/yf225/172/orig -> origin/gh/yf225/172/orig 2025-07-17T06:36:48.5172293Z * [new branch] gh/yf225/93/base -> origin/gh/yf225/93/base 2025-07-17T06:36:48.5172756Z * [new branch] gh/yf225/93/head -> origin/gh/yf225/93/head 2025-07-17T06:36:48.5173232Z * [new branch] gh/yifuwang/152/base -> origin/gh/yifuwang/152/base 2025-07-17T06:36:48.5173742Z * [new branch] gh/yifuwang/152/head -> origin/gh/yifuwang/152/head 2025-07-17T06:36:48.5718661Z * [new branch] gh/yifuwang/152/orig -> origin/gh/yifuwang/152/orig 2025-07-17T06:36:48.5719200Z * [new branch] gh/yifuwang/195/base -> origin/gh/yifuwang/195/base 2025-07-17T06:36:48.5719693Z * [new branch] gh/yifuwang/195/head -> origin/gh/yifuwang/195/head 2025-07-17T06:36:48.5720199Z * [new branch] gh/yifuwang/195/orig -> origin/gh/yifuwang/195/orig 2025-07-17T06:36:48.5720714Z * [new branch] gh/yiming0416/1/base -> origin/gh/yiming0416/1/base 2025-07-17T06:36:48.5721231Z * [new branch] gh/yiming0416/1/head -> origin/gh/yiming0416/1/head 2025-07-17T06:36:48.5721729Z * [new branch] gh/yiming0416/2/base -> origin/gh/yiming0416/2/base 2025-07-17T06:36:48.5722209Z * [new branch] gh/yiming0416/2/head -> origin/gh/yiming0416/2/head 2025-07-17T06:36:48.5722714Z * [new branch] gh/ysiraichi/79/base -> origin/gh/ysiraichi/79/base 2025-07-17T06:36:48.5723211Z * [new branch] gh/ysiraichi/79/head -> origin/gh/ysiraichi/79/head 2025-07-17T06:36:48.5723712Z * [new branch] gh/ysiraichi/79/orig -> origin/gh/ysiraichi/79/orig 2025-07-17T06:36:48.5724209Z * [new branch] gh/ysiraichi/80/base -> origin/gh/ysiraichi/80/base 2025-07-17T06:36:48.5724697Z * [new branch] gh/ysiraichi/80/head -> origin/gh/ysiraichi/80/head 2025-07-17T06:36:48.5725212Z * [new branch] gh/ysiraichi/80/orig -> origin/gh/ysiraichi/80/orig 2025-07-17T06:36:48.5725709Z * [new branch] gh/ysiraichi/81/base -> origin/gh/ysiraichi/81/base 2025-07-17T06:36:48.5726209Z * [new branch] gh/ysiraichi/81/head -> origin/gh/ysiraichi/81/head 2025-07-17T06:36:48.5726709Z * [new branch] gh/ysiraichi/81/orig -> origin/gh/ysiraichi/81/orig 2025-07-17T06:36:48.5727196Z * [new branch] gh/ysiraichi/84/base -> origin/gh/ysiraichi/84/base 2025-07-17T06:36:48.5727699Z * [new branch] gh/ysiraichi/84/head -> origin/gh/ysiraichi/84/head 2025-07-17T06:36:48.5728192Z * [new branch] gh/ysiraichi/84/orig -> origin/gh/ysiraichi/84/orig 2025-07-17T06:36:48.5728689Z * [new branch] gh/ysiraichi/85/base -> origin/gh/ysiraichi/85/base 2025-07-17T06:36:48.5729177Z * [new branch] gh/ysiraichi/85/head -> origin/gh/ysiraichi/85/head 2025-07-17T06:36:48.5729849Z * [new branch] gh/ysiraichi/85/orig -> origin/gh/ysiraichi/85/orig 2025-07-17T06:36:48.5730350Z * [new branch] gh/ysiraichi/86/base -> origin/gh/ysiraichi/86/base 2025-07-17T06:36:48.5730844Z * [new branch] gh/ysiraichi/86/head -> origin/gh/ysiraichi/86/head 2025-07-17T06:36:48.5731343Z * [new branch] gh/ysiraichi/86/orig -> origin/gh/ysiraichi/86/orig 2025-07-17T06:36:48.5731840Z * [new branch] gh/ysiraichi/87/base -> origin/gh/ysiraichi/87/base 2025-07-17T06:36:48.5732346Z * [new branch] gh/ysiraichi/87/head -> origin/gh/ysiraichi/87/head 2025-07-17T06:36:48.5732848Z * [new branch] gh/ysiraichi/87/orig -> origin/gh/ysiraichi/87/orig 2025-07-17T06:36:48.5733342Z * [new branch] gh/ysiraichi/88/base -> origin/gh/ysiraichi/88/base 2025-07-17T06:36:48.5733839Z * [new branch] gh/ysiraichi/88/head -> origin/gh/ysiraichi/88/head 2025-07-17T06:36:48.5734427Z * [new branch] gh/ysiraichi/88/orig -> origin/gh/ysiraichi/88/orig 2025-07-17T06:36:48.5734921Z * [new branch] gh/yuguo68/1/base -> origin/gh/yuguo68/1/base 2025-07-17T06:36:48.5735402Z * [new branch] gh/yuguo68/1/head -> origin/gh/yuguo68/1/head 2025-07-17T06:36:48.5735864Z * [new branch] gh/yuguo68/1/orig -> origin/gh/yuguo68/1/orig 2025-07-17T06:36:48.5736349Z * [new branch] gh/yuguo68/2/base -> origin/gh/yuguo68/2/base 2025-07-17T06:36:48.5736807Z * [new branch] gh/yuguo68/2/head -> origin/gh/yuguo68/2/head 2025-07-17T06:36:48.5737276Z * [new branch] gh/yuguo68/2/orig -> origin/gh/yuguo68/2/orig 2025-07-17T06:36:48.5737763Z * [new branch] gh/zhuhaozhe/28/base -> origin/gh/zhuhaozhe/28/base 2025-07-17T06:36:48.5738257Z * [new branch] gh/zhuhaozhe/28/head -> origin/gh/zhuhaozhe/28/head 2025-07-17T06:36:48.5738762Z * [new branch] gh/zhuhaozhe/28/orig -> origin/gh/zhuhaozhe/28/orig 2025-07-17T06:36:48.5739251Z * [new branch] gh/zhuhaozhe/29/base -> origin/gh/zhuhaozhe/29/base 2025-07-17T06:36:48.5739743Z * [new branch] gh/zhuhaozhe/29/head -> origin/gh/zhuhaozhe/29/head 2025-07-17T06:36:48.5740237Z * [new branch] gh/zhuhaozhe/29/orig -> origin/gh/zhuhaozhe/29/orig 2025-07-17T06:36:48.5740726Z * [new branch] gh/zhuhaozhe/31/base -> origin/gh/zhuhaozhe/31/base 2025-07-17T06:36:48.5741224Z * [new branch] gh/zhuhaozhe/31/head -> origin/gh/zhuhaozhe/31/head 2025-07-17T06:36:48.5741713Z * [new branch] gh/zhuhaozhe/31/orig -> origin/gh/zhuhaozhe/31/orig 2025-07-17T06:36:48.6755160Z * [new branch] gh/zhuhaozhe/32/base -> origin/gh/zhuhaozhe/32/base 2025-07-17T06:36:48.6755775Z * [new branch] gh/zhuhaozhe/32/head -> origin/gh/zhuhaozhe/32/head 2025-07-17T06:36:48.6756273Z * [new branch] gh/zhuhaozhe/32/orig -> origin/gh/zhuhaozhe/32/orig 2025-07-17T06:36:48.6756773Z * [new branch] gh/zhuhaozhe/33/base -> origin/gh/zhuhaozhe/33/base 2025-07-17T06:36:48.6757263Z * [new branch] gh/zhuhaozhe/33/head -> origin/gh/zhuhaozhe/33/head 2025-07-17T06:36:48.6757828Z * [new branch] gh/zhuhaozhe/33/orig -> origin/gh/zhuhaozhe/33/orig 2025-07-17T06:36:48.6758332Z * [new branch] gh/zhxchen17/22/base -> origin/gh/zhxchen17/22/base 2025-07-17T06:36:48.6758860Z * [new branch] gh/zhxchen17/22/head -> origin/gh/zhxchen17/22/head 2025-07-17T06:36:48.6759369Z * [new branch] gh/zhxchen17/22/orig -> origin/gh/zhxchen17/22/orig 2025-07-17T06:36:48.6759852Z * [new branch] gh/zhxchen17/25/base -> origin/gh/zhxchen17/25/base 2025-07-17T06:36:48.6760538Z * [new branch] gh/zhxchen17/25/head -> origin/gh/zhxchen17/25/head 2025-07-17T06:36:48.6761031Z * [new branch] gh/zhxchen17/25/orig -> origin/gh/zhxchen17/25/orig 2025-07-17T06:36:48.6761519Z * [new branch] gh/zhxchen17/26/base -> origin/gh/zhxchen17/26/base 2025-07-17T06:36:48.6762016Z * [new branch] gh/zhxchen17/26/head -> origin/gh/zhxchen17/26/head 2025-07-17T06:36:48.6762496Z * [new branch] gh/zhxchen17/26/orig -> origin/gh/zhxchen17/26/orig 2025-07-17T06:36:48.6762997Z * [new branch] gh/zhxchen17/27/base -> origin/gh/zhxchen17/27/base 2025-07-17T06:36:48.6763492Z * [new branch] gh/zhxchen17/27/head -> origin/gh/zhxchen17/27/head 2025-07-17T06:36:48.6763972Z * [new branch] gh/zhxchen17/27/orig -> origin/gh/zhxchen17/27/orig 2025-07-17T06:36:48.6764473Z * [new branch] gh/zhxchen17/28/base -> origin/gh/zhxchen17/28/base 2025-07-17T06:36:48.6765057Z * [new branch] gh/zhxchen17/28/head -> origin/gh/zhxchen17/28/head 2025-07-17T06:36:48.6765563Z * [new branch] gh/zhxchen17/28/orig -> origin/gh/zhxchen17/28/orig 2025-07-17T06:36:48.6766064Z * [new branch] gh/zhxchen17/29/base -> origin/gh/zhxchen17/29/base 2025-07-17T06:36:48.6766549Z * [new branch] gh/zhxchen17/29/head -> origin/gh/zhxchen17/29/head 2025-07-17T06:36:48.6767055Z * [new branch] gh/zhxchen17/29/orig -> origin/gh/zhxchen17/29/orig 2025-07-17T06:36:48.6767548Z * [new branch] gh/zhxchen17/30/base -> origin/gh/zhxchen17/30/base 2025-07-17T06:36:48.6768045Z * [new branch] gh/zhxchen17/30/head -> origin/gh/zhxchen17/30/head 2025-07-17T06:36:48.6768523Z * [new branch] gh/zhxchen17/30/orig -> origin/gh/zhxchen17/30/orig 2025-07-17T06:36:48.6769024Z * [new branch] gh/zhxchen17/31/base -> origin/gh/zhxchen17/31/base 2025-07-17T06:36:48.6769522Z * [new branch] gh/zhxchen17/31/head -> origin/gh/zhxchen17/31/head 2025-07-17T06:36:48.6770009Z * [new branch] gh/zhxchen17/31/orig -> origin/gh/zhxchen17/31/orig 2025-07-17T06:36:48.6770504Z * [new branch] gh/zhxchen17/32/base -> origin/gh/zhxchen17/32/base 2025-07-17T06:36:48.6770990Z * [new branch] gh/zhxchen17/32/head -> origin/gh/zhxchen17/32/head 2025-07-17T06:36:48.6771488Z * [new branch] gh/zhxchen17/32/orig -> origin/gh/zhxchen17/32/orig 2025-07-17T06:36:48.6771971Z * [new branch] gh/zklaus/1/base -> origin/gh/zklaus/1/base 2025-07-17T06:36:48.6772434Z * [new branch] gh/zklaus/1/head -> origin/gh/zklaus/1/head 2025-07-17T06:36:48.6772901Z * [new branch] gh/zklaus/1/orig -> origin/gh/zklaus/1/orig 2025-07-17T06:36:48.6773374Z * [new branch] gh/zklaus/10/base -> origin/gh/zklaus/10/base 2025-07-17T06:36:48.6773855Z * [new branch] gh/zklaus/10/head -> origin/gh/zklaus/10/head 2025-07-17T06:36:48.6774321Z * [new branch] gh/zklaus/10/orig -> origin/gh/zklaus/10/orig 2025-07-17T06:36:48.6774784Z * [new branch] gh/zklaus/11/base -> origin/gh/zklaus/11/base 2025-07-17T06:36:48.6775249Z * [new branch] gh/zklaus/11/head -> origin/gh/zklaus/11/head 2025-07-17T06:36:48.6775714Z * [new branch] gh/zklaus/11/orig -> origin/gh/zklaus/11/orig 2025-07-17T06:36:48.6776182Z * [new branch] gh/zklaus/12/base -> origin/gh/zklaus/12/base 2025-07-17T06:36:48.6776645Z * [new branch] gh/zklaus/12/head -> origin/gh/zklaus/12/head 2025-07-17T06:36:48.6777114Z * [new branch] gh/zklaus/12/orig -> origin/gh/zklaus/12/orig 2025-07-17T06:36:48.6777690Z * [new branch] gh/zklaus/13/base -> origin/gh/zklaus/13/base 2025-07-17T06:36:48.6778152Z * [new branch] gh/zklaus/13/head -> origin/gh/zklaus/13/head 2025-07-17T06:36:48.7403754Z * [new branch] gh/zklaus/13/orig -> origin/gh/zklaus/13/orig 2025-07-17T06:36:48.7404288Z * [new branch] gh/zklaus/14/base -> origin/gh/zklaus/14/base 2025-07-17T06:36:48.7404753Z * [new branch] gh/zklaus/14/head -> origin/gh/zklaus/14/head 2025-07-17T06:36:48.7405226Z * [new branch] gh/zklaus/14/orig -> origin/gh/zklaus/14/orig 2025-07-17T06:36:48.7405691Z * [new branch] gh/zklaus/15/base -> origin/gh/zklaus/15/base 2025-07-17T06:36:48.7406161Z * [new branch] gh/zklaus/15/head -> origin/gh/zklaus/15/head 2025-07-17T06:36:48.7406629Z * [new branch] gh/zklaus/15/orig -> origin/gh/zklaus/15/orig 2025-07-17T06:36:48.7407280Z * [new branch] gh/zklaus/16/base -> origin/gh/zklaus/16/base 2025-07-17T06:36:48.7407752Z * [new branch] gh/zklaus/16/head -> origin/gh/zklaus/16/head 2025-07-17T06:36:48.7409279Z * [new branch] gh/zklaus/16/orig -> origin/gh/zklaus/16/orig 2025-07-17T06:36:48.7409764Z * [new branch] gh/zklaus/17/base -> origin/gh/zklaus/17/base 2025-07-17T06:36:48.7410231Z * [new branch] gh/zklaus/17/head -> origin/gh/zklaus/17/head 2025-07-17T06:36:48.7410690Z * [new branch] gh/zklaus/17/orig -> origin/gh/zklaus/17/orig 2025-07-17T06:36:48.7411164Z * [new branch] gh/zklaus/18/base -> origin/gh/zklaus/18/base 2025-07-17T06:36:48.7411620Z * [new branch] gh/zklaus/18/head -> origin/gh/zklaus/18/head 2025-07-17T06:36:48.7412086Z * [new branch] gh/zklaus/18/orig -> origin/gh/zklaus/18/orig 2025-07-17T06:36:48.7412563Z * [new branch] gh/zklaus/2/base -> origin/gh/zklaus/2/base 2025-07-17T06:36:48.7413027Z * [new branch] gh/zklaus/2/head -> origin/gh/zklaus/2/head 2025-07-17T06:36:48.7413491Z * [new branch] gh/zklaus/2/orig -> origin/gh/zklaus/2/orig 2025-07-17T06:36:48.7414930Z * [new branch] gh/zklaus/4/base -> origin/gh/zklaus/4/base 2025-07-17T06:36:48.7415396Z * [new branch] gh/zklaus/4/head -> origin/gh/zklaus/4/head 2025-07-17T06:36:48.7415847Z * [new branch] gh/zklaus/4/orig -> origin/gh/zklaus/4/orig 2025-07-17T06:36:48.7416308Z * [new branch] gh/zklaus/7/base -> origin/gh/zklaus/7/base 2025-07-17T06:36:48.7416773Z * [new branch] gh/zklaus/7/head -> origin/gh/zklaus/7/head 2025-07-17T06:36:48.7417232Z * [new branch] gh/zklaus/7/orig -> origin/gh/zklaus/7/orig 2025-07-17T06:36:48.7417706Z * [new branch] gh/zklaus/8/base -> origin/gh/zklaus/8/base 2025-07-17T06:36:48.7418156Z * [new branch] gh/zklaus/8/head -> origin/gh/zklaus/8/head 2025-07-17T06:36:48.7418614Z * [new branch] gh/zklaus/8/orig -> origin/gh/zklaus/8/orig 2025-07-17T06:36:48.7419065Z * [new branch] gh/zklaus/9/base -> origin/gh/zklaus/9/base 2025-07-17T06:36:48.7420498Z * [new branch] gh/zklaus/9/head -> origin/gh/zklaus/9/head 2025-07-17T06:36:48.7420962Z * [new branch] gh/zklaus/9/orig -> origin/gh/zklaus/9/orig 2025-07-17T06:36:48.7421441Z * [new branch] gh/zou3519/1162/base -> origin/gh/zou3519/1162/base 2025-07-17T06:36:48.7421929Z * [new branch] gh/zou3519/1162/head -> origin/gh/zou3519/1162/head 2025-07-17T06:36:48.7422578Z * [new branch] gh/zou3519/1162/orig -> origin/gh/zou3519/1162/orig 2025-07-17T06:36:48.7423120Z * [new branch] gh/zou3519/1173/base -> origin/gh/zou3519/1173/base 2025-07-17T06:36:48.7423597Z * [new branch] gh/zou3519/1173/head -> origin/gh/zou3519/1173/head 2025-07-17T06:36:48.7424073Z * [new branch] gh/zou3519/1173/orig -> origin/gh/zou3519/1173/orig 2025-07-17T06:36:48.7424548Z * [new branch] gh/zou3519/1174/base -> origin/gh/zou3519/1174/base 2025-07-17T06:36:48.7425018Z * [new branch] gh/zou3519/1174/head -> origin/gh/zou3519/1174/head 2025-07-17T06:36:48.7426501Z * [new branch] gh/zou3519/1174/orig -> origin/gh/zou3519/1174/orig 2025-07-17T06:36:48.7427035Z * [new branch] gh/zou3519/1175/base -> origin/gh/zou3519/1175/base 2025-07-17T06:36:48.7427506Z * [new branch] gh/zou3519/1175/head -> origin/gh/zou3519/1175/head 2025-07-17T06:36:48.7428002Z * [new branch] gh/zou3519/1175/orig -> origin/gh/zou3519/1175/orig 2025-07-17T06:36:48.7428580Z * [new branch] gh/zou3519/1176/base -> origin/gh/zou3519/1176/base 2025-07-17T06:36:48.7429067Z * [new branch] gh/zou3519/1176/head -> origin/gh/zou3519/1176/head 2025-07-17T06:36:48.7429552Z * [new branch] gh/zou3519/1176/orig -> origin/gh/zou3519/1176/orig 2025-07-17T06:36:48.7430025Z * [new branch] gh/zou3519/1177/base -> origin/gh/zou3519/1177/base 2025-07-17T06:36:48.7430509Z * [new branch] gh/zou3519/1177/head -> origin/gh/zou3519/1177/head 2025-07-17T06:36:48.7886715Z * [new branch] gh/zou3519/1177/orig -> origin/gh/zou3519/1177/orig 2025-07-17T06:36:48.7887259Z * [new branch] gh/zou3519/1178/base -> origin/gh/zou3519/1178/base 2025-07-17T06:36:48.7888754Z * [new branch] gh/zou3519/1178/head -> origin/gh/zou3519/1178/head 2025-07-17T06:36:48.7889277Z * [new branch] gh/zou3519/1178/orig -> origin/gh/zou3519/1178/orig 2025-07-17T06:36:48.7889760Z * [new branch] gh/zou3519/1179/base -> origin/gh/zou3519/1179/base 2025-07-17T06:36:48.7890229Z * [new branch] gh/zou3519/1179/head -> origin/gh/zou3519/1179/head 2025-07-17T06:36:48.7890716Z * [new branch] gh/zou3519/1179/orig -> origin/gh/zou3519/1179/orig 2025-07-17T06:36:48.7891190Z * [new branch] gh/zou3519/1180/base -> origin/gh/zou3519/1180/base 2025-07-17T06:36:48.7891665Z * [new branch] gh/zou3519/1180/head -> origin/gh/zou3519/1180/head 2025-07-17T06:36:48.7892145Z * [new branch] gh/zou3519/1180/orig -> origin/gh/zou3519/1180/orig 2025-07-17T06:36:48.7892615Z * [new branch] gh/zou3519/1181/base -> origin/gh/zou3519/1181/base 2025-07-17T06:36:48.7893101Z * [new branch] gh/zou3519/1181/head -> origin/gh/zou3519/1181/head 2025-07-17T06:36:48.7894558Z * [new branch] gh/zou3519/1181/orig -> origin/gh/zou3519/1181/orig 2025-07-17T06:36:48.7895042Z * [new branch] gh/zou3519/1182/base -> origin/gh/zou3519/1182/base 2025-07-17T06:36:48.7895532Z * [new branch] gh/zou3519/1182/head -> origin/gh/zou3519/1182/head 2025-07-17T06:36:48.7896006Z * [new branch] gh/zou3519/1182/orig -> origin/gh/zou3519/1182/orig 2025-07-17T06:36:48.7896492Z * [new branch] gh/zou3519/1183/base -> origin/gh/zou3519/1183/base 2025-07-17T06:36:48.7896972Z * [new branch] gh/zou3519/1183/head -> origin/gh/zou3519/1183/head 2025-07-17T06:36:48.7897446Z * [new branch] gh/zou3519/1183/orig -> origin/gh/zou3519/1183/orig 2025-07-17T06:36:48.7897923Z * [new branch] gh/zou3519/1184/base -> origin/gh/zou3519/1184/base 2025-07-17T06:36:48.7898577Z * [new branch] gh/zou3519/1184/head -> origin/gh/zou3519/1184/head 2025-07-17T06:36:48.7899069Z * [new branch] gh/zou3519/1184/orig -> origin/gh/zou3519/1184/orig 2025-07-17T06:36:48.7900552Z * [new branch] gh/zou3519/1185/base -> origin/gh/zou3519/1185/base 2025-07-17T06:36:48.7901043Z * [new branch] gh/zou3519/1185/head -> origin/gh/zou3519/1185/head 2025-07-17T06:36:48.7901535Z * [new branch] gh/zou3519/1185/orig -> origin/gh/zou3519/1185/orig 2025-07-17T06:36:48.7902011Z * [new branch] gh/zou3519/1186/base -> origin/gh/zou3519/1186/base 2025-07-17T06:36:48.7902501Z * [new branch] gh/zou3519/1186/head -> origin/gh/zou3519/1186/head 2025-07-17T06:36:48.7902977Z * [new branch] gh/zou3519/1186/orig -> origin/gh/zou3519/1186/orig 2025-07-17T06:36:48.7903464Z * [new branch] gh/zou3519/916/base -> origin/gh/zou3519/916/base 2025-07-17T06:36:48.7904066Z * [new branch] gh/zou3519/916/head -> origin/gh/zou3519/916/head 2025-07-17T06:36:48.7904548Z * [new branch] gh/zpcore/1/base -> origin/gh/zpcore/1/base 2025-07-17T06:36:48.7906034Z * [new branch] gh/zpcore/1/head -> origin/gh/zpcore/1/head 2025-07-17T06:36:48.7906505Z * [new branch] gh/zpcore/2/base -> origin/gh/zpcore/2/base 2025-07-17T06:36:48.7906981Z * [new branch] gh/zpcore/2/head -> origin/gh/zpcore/2/head 2025-07-17T06:36:48.7907458Z * [new branch] gh/zpcore/3/base -> origin/gh/zpcore/3/base 2025-07-17T06:36:48.7907915Z * [new branch] gh/zpcore/3/head -> origin/gh/zpcore/3/head 2025-07-17T06:36:48.7908392Z * [new branch] gh/zpcore/4/base -> origin/gh/zpcore/4/base 2025-07-17T06:36:48.7908849Z * [new branch] gh/zpcore/4/head -> origin/gh/zpcore/4/head 2025-07-17T06:36:48.7909323Z * [new branch] gh/zpcore/5/base -> origin/gh/zpcore/5/base 2025-07-17T06:36:48.7909787Z * [new branch] gh/zpcore/5/head -> origin/gh/zpcore/5/head 2025-07-17T06:36:48.7910250Z * [new branch] gh/zpcore/6/base -> origin/gh/zpcore/6/base 2025-07-17T06:36:48.7911703Z * [new branch] gh/zpcore/6/head -> origin/gh/zpcore/6/head 2025-07-17T06:36:48.7912182Z * [new branch] gh/zpcore/7/base -> origin/gh/zpcore/7/base 2025-07-17T06:36:48.7912652Z * [new branch] gh/zpcore/7/head -> origin/gh/zpcore/7/head 2025-07-17T06:36:48.7913100Z * [new branch] google-main -> origin/google-main 2025-07-17T06:36:48.7913631Z * [new branch] guangyey/external_stream -> origin/guangyey/external_stream 2025-07-17T06:36:48.7914150Z * [new branch] guangyey/host_alloc -> origin/guangyey/host_alloc 2025-07-17T06:36:48.9488382Z * [new branch] guangyey/test_2025 -> origin/guangyey/test_2025 2025-07-17T06:36:48.9488898Z * [new branch] guard_system -> origin/guard_system 2025-07-17T06:36:48.9489537Z * [new branch] guilhermeleobas/cherry-pick-55d87d9dfd9 -> origin/guilhermeleobas/cherry-pick-55d87d9dfd9 2025-07-17T06:36:48.9490234Z * [new branch] haozhe/bf16-dynamic-shape -> origin/haozhe/bf16-dynamic-shape 2025-07-17T06:36:48.9490737Z * [new branch] hc_baseline -> origin/hc_baseline 2025-07-17T06:36:48.9491179Z * [new branch] hhh_decomp_mul -> origin/hhh_decomp_mul 2025-07-17T06:36:48.9491601Z * [new branch] hhh_rand -> origin/hhh_rand 2025-07-17T06:36:48.9492033Z * [new branch] hoy/mmsplitk -> origin/hoy/mmsplitk 2025-07-17T06:36:48.9492718Z * [new branch] hoy/triton-PR3973 -> origin/hoy/triton-PR3973 2025-07-17T06:36:48.9493295Z * [new branch] hoy/triton-coalescing-baseline -> origin/hoy/triton-coalescing-baseline 2025-07-17T06:36:48.9493912Z * [new branch] hoy/triton-coalescing-min -> origin/hoy/triton-coalescing-min 2025-07-17T06:36:48.9494477Z * [new branch] hoy/triton-coalescing-new -> origin/hoy/triton-coalescing-new 2025-07-17T06:36:48.9495055Z * [new branch] hoy/triton-coalescing-vec -> origin/hoy/triton-coalescing-vec 2025-07-17T06:36:48.9495592Z * [new branch] inductordecompfix -> origin/inductordecompfix 2025-07-17T06:36:48.9496040Z * [new branch] inline -> origin/inline 2025-07-17T06:36:48.9496446Z * [new branch] inlining -> origin/inlining 2025-07-17T06:36:48.9496893Z * [new branch] inlining-ezyang -> origin/inlining-ezyang 2025-07-17T06:36:48.9497366Z * [new branch] int8_sdpa -> origin/int8_sdpa 2025-07-17T06:36:48.9497937Z * [new branch] invoke-subgraph -> origin/invoke-subgraph 2025-07-17T06:36:48.9498410Z * [new branch] is_contiguous_shim -> origin/is_contiguous_shim 2025-07-17T06:36:48.9498875Z * [new branch] issue#58739 -> origin/issue#58739 2025-07-17T06:36:48.9499296Z * [new branch] issue-154849 -> origin/issue-154849 2025-07-17T06:36:48.9499850Z * [new branch] ivanov/cherry-pick-ckpt-fixes -> origin/ivanov/cherry-pick-ckpt-fixes 2025-07-17T06:36:48.9500530Z * [new branch] jcaip/test-cusparselt-version-0.6.2 -> origin/jcaip/test-cusparselt-version-0.6.2 2025-07-17T06:36:48.9501225Z * [new branch] jcaip/update-cusparselt-0.6.2 -> origin/jcaip/update-cusparselt-0.6.2 2025-07-17T06:36:48.9501838Z * [new branch] justinchu/attention-tests -> origin/justinchu/attention-tests 2025-07-17T06:36:48.9502401Z * [new branch] justinchu/del-opset-tool -> origin/justinchu/del-opset-tool 2025-07-17T06:36:48.9502966Z * [new branch] justinchu/native-qdq -> origin/justinchu/native-qdq 2025-07-17T06:36:48.9503563Z * [new branch] leslie/enable_poc_reduction_fusion -> origin/leslie/enable_poc_reduction_fusion 2025-07-17T06:36:48.9504219Z * [new branch] leslie/test_group_gemm_epilogues -> origin/leslie/test_group_gemm_epilogues 2025-07-17T06:36:48.9504852Z * [new branch] lessw2020/fix_cutlass_cache_error -> origin/lessw2020/fix_cutlass_cache_error 2025-07-17T06:36:48.9505422Z * [new branch] liaoxuan/shm_all_reduce -> origin/liaoxuan/shm_all_reduce 2025-07-17T06:36:48.9505942Z * [new branch] liaoxuan/tags_issue -> origin/liaoxuan/tags_issue 2025-07-17T06:36:48.9506498Z * [new branch] liaoxuan/test_fa_disable_softmax -> origin/liaoxuan/test_fa_disable_softmax 2025-07-17T06:36:48.9507089Z * [new branch] liaoxuan/test_int8_sdpa -> origin/liaoxuan/test_int8_sdpa 2025-07-17T06:36:48.9507565Z * [new branch] local_map -> origin/local_map 2025-07-17T06:36:48.9507987Z * [new branch] logdetfix -> origin/logdetfix 2025-07-17T06:36:48.9508429Z * [new branch] lts/release/1.8 -> origin/lts/release/1.8 2025-07-17T06:36:48.9508954Z * [new branch] lucaskabela/func_under_decomp -> origin/lucaskabela/func_under_decomp 2025-07-17T06:36:48.9509588Z * [new branch] lucaskabela/functional_in_dynamo -> origin/lucaskabela/functional_in_dynamo 2025-07-17T06:36:48.9510299Z * [new branch] lucaskabela/install_params_as_graph_attr -> origin/lucaskabela/install_params_as_graph_attr 2025-07-17T06:36:48.9511020Z * [new branch] lucaskabela/parameters_as_graph_attr -> origin/lucaskabela/parameters_as_graph_attr 2025-07-17T06:36:48.9511886Z * [new branch] lucaskabela/remove_aot_dispatcher_metadata -> origin/lucaskabela/remove_aot_dispatcher_metadata 2025-07-17T06:36:48.9512735Z * [new branch] lucaskabela/typing_bytecode_analysis_transform -> origin/lucaskabela/typing_bytecode_analysis_transform 2025-07-17T06:36:49.0685072Z * [new branch] lucaskabela/typing_cache_files -> origin/lucaskabela/typing_cache_files 2025-07-17T06:36:49.0685772Z * [new branch] lucaskabela/typing_debug_utils.py -> origin/lucaskabela/typing_debug_utils.py 2025-07-17T06:36:49.0686417Z * [new branch] lucaskabela/typing_decorators -> origin/lucaskabela/typing_decorators 2025-07-17T06:36:49.0687027Z * [new branch] lucaskabela/typing_eval_frame -> origin/lucaskabela/typing_eval_frame 2025-07-17T06:36:49.0687637Z * [new branch] lucaskabela/typing_for_codegen -> origin/lucaskabela/typing_for_codegen 2025-07-17T06:36:49.0688298Z * [new branch] lucaskabela/typing_source_guard -> origin/lucaskabela/typing_source_guard 2025-07-17T06:36:49.0689310Z * [new branch] m54qxk-codex/update-default-size_hint-fallback-value -> origin/m54qxk-codex/update-default-size_hint-fallback-value 2025-07-17T06:36:49.0690014Z * [new branch] main -> origin/main 2025-07-17T06:36:49.0690445Z * [new branch] malfet-patch-1 -> origin/malfet-patch-1 2025-07-17T06:36:49.0690929Z * [new branch] malfet-patch-10 -> origin/malfet-patch-10 2025-07-17T06:36:49.0691403Z * [new branch] malfet-patch-11 -> origin/malfet-patch-11 2025-07-17T06:36:49.0691880Z * [new branch] malfet-patch-12 -> origin/malfet-patch-12 2025-07-17T06:36:49.0692346Z * [new branch] malfet-patch-13 -> origin/malfet-patch-13 2025-07-17T06:36:49.0692809Z * [new branch] malfet-patch-14 -> origin/malfet-patch-14 2025-07-17T06:36:49.0693287Z * [new branch] malfet-patch-15 -> origin/malfet-patch-15 2025-07-17T06:36:49.0693758Z * [new branch] malfet-patch-16 -> origin/malfet-patch-16 2025-07-17T06:36:49.0694221Z * [new branch] malfet-patch-2 -> origin/malfet-patch-2 2025-07-17T06:36:49.0694680Z * [new branch] malfet-patch-21 -> origin/malfet-patch-21 2025-07-17T06:36:49.0695146Z * [new branch] malfet-patch-23 -> origin/malfet-patch-23 2025-07-17T06:36:49.0695611Z * [new branch] malfet-patch-3 -> origin/malfet-patch-3 2025-07-17T06:36:49.0696059Z * [new branch] malfet-patch-4 -> origin/malfet-patch-4 2025-07-17T06:36:49.0696516Z * [new branch] malfet-patch-5 -> origin/malfet-patch-5 2025-07-17T06:36:49.0696971Z * [new branch] malfet-patch-6 -> origin/malfet-patch-6 2025-07-17T06:36:49.0697431Z * [new branch] malfet-patch-7 -> origin/malfet-patch-7 2025-07-17T06:36:49.0697885Z * [new branch] malfet-patch-8 -> origin/malfet-patch-8 2025-07-17T06:36:49.0698342Z * [new branch] malfet-patch-9 -> origin/malfet-patch-9 2025-07-17T06:36:49.0698866Z * [new branch] malfet/delete-upsteam-cuda -> origin/malfet/delete-upsteam-cuda 2025-07-17T06:36:49.0699468Z * [new branch] malfet/mps-implement-col2im -> origin/malfet/mps-implement-col2im 2025-07-17T06:36:49.0700035Z * [new branch] manuel/bench-scan-metal -> origin/manuel/bench-scan-metal 2025-07-17T06:36:49.0700652Z * [new branch] manuel/fix_multidim_boolean_indexing -> origin/manuel/fix_multidim_boolean_indexing 2025-07-17T06:36:49.0701253Z * [new branch] manuel/np_empty_ellipsis -> origin/manuel/np_empty_ellipsis 2025-07-17T06:36:49.0701890Z * [new branch] manuel/scan-metal -> origin/manuel/scan-metal 2025-07-17T06:36:49.0702392Z * [new branch] metascroy-patch-1 -> origin/metascroy-patch-1 2025-07-17T06:36:49.0702884Z * [new branch] mlazos/S429861-debug -> origin/mlazos/S429861-debug 2025-07-17T06:36:49.0703351Z * [new branch] mlazos/aa -> origin/mlazos/aa 2025-07-17T06:36:49.0703838Z * [new branch] mlazos/backup-test-branch -> origin/mlazos/backup-test-branch 2025-07-17T06:36:49.0704404Z * [new branch] mlazos/bad-cudagraphs -> origin/mlazos/bad-cudagraphs 2025-07-17T06:36:49.0704911Z * [new branch] mlazos/baseline -> origin/mlazos/baseline 2025-07-17T06:36:49.0705452Z * [new branch] mlazos/baseline-graph-breaks -> origin/mlazos/baseline-graph-breaks 2025-07-17T06:36:49.0706005Z * [new branch] mlazos/beta-tensor -> origin/mlazos/beta-tensor 2025-07-17T06:36:49.0706474Z * [new branch] mlazos/buf-fix -> origin/mlazos/buf-fix 2025-07-17T06:36:49.0707022Z * [new branch] mlazos/buffers -> origin/mlazos/buffers 2025-07-17T06:36:49.0707480Z * [new branch] mlazos/buffers2 -> origin/mlazos/buffers2 2025-07-17T06:36:49.0707946Z * [new branch] mlazos/buffers3 -> origin/mlazos/buffers3 2025-07-17T06:36:49.0708390Z * [new branch] mlazos/ck2 -> origin/mlazos/ck2 2025-07-17T06:36:49.0708861Z * [new branch] mlazos/combokernels -> origin/mlazos/combokernels 2025-07-17T06:36:49.2752632Z * [new branch] mlazos/ctx-cleanup -> origin/mlazos/ctx-cleanup 2025-07-17T06:36:49.2753231Z * [new branch] mlazos/cudagraph-tests -> origin/mlazos/cudagraph-tests 2025-07-17T06:36:49.2753827Z * [new branch] mlazos/cudagraphs-measurement -> origin/mlazos/cudagraphs-measurement 2025-07-17T06:36:49.2754455Z * [new branch] mlazos/cutlass-test -> origin/mlazos/cutlass-test 2025-07-17T06:36:49.2754980Z * [new branch] mlazos/cutlass-topo-bug -> origin/mlazos/cutlass-topo-bug 2025-07-17T06:36:49.2755595Z * [new branch] mlazos/data-gather -> origin/mlazos/data-gather 2025-07-17T06:36:49.2756086Z * [new branch] mlazos/data-ptrs2 -> origin/mlazos/data-ptrs2 2025-07-17T06:36:49.2756579Z * [new branch] mlazos/data-ptrs3 -> origin/mlazos/data-ptrs3 2025-07-17T06:36:49.2757098Z * [new branch] mlazos/dataclass-proxy -> origin/mlazos/dataclass-proxy 2025-07-17T06:36:49.2757635Z * [new branch] mlazos/disable-closures -> origin/mlazos/disable-closures 2025-07-17T06:36:49.2758154Z * [new branch] mlazos/disable-tf -> origin/mlazos/disable-tf 2025-07-17T06:36:49.2758652Z * [new branch] mlazos/disabled-opt -> origin/mlazos/disabled-opt 2025-07-17T06:36:49.2759154Z * [new branch] mlazos/dyn-batch -> origin/mlazos/dyn-batch 2025-07-17T06:36:49.2759612Z * [new branch] mlazos/evt -> origin/mlazos/evt 2025-07-17T06:36:49.2760058Z * [new branch] mlazos/exp_disable -> origin/mlazos/exp_disable 2025-07-17T06:36:49.2760539Z * [new branch] mlazos/foreach-op -> origin/mlazos/foreach-op 2025-07-17T06:36:49.2761027Z * [new branch] mlazos/foreach-reds -> origin/mlazos/foreach-reds 2025-07-17T06:36:49.2761488Z * [new branch] mlazos/fp8 -> origin/mlazos/fp8 2025-07-17T06:36:49.2761933Z * [new branch] mlazos/fp8-bias -> origin/mlazos/fp8-bias 2025-07-17T06:36:49.2762423Z * [new branch] mlazos/fp8-bias-fusion -> origin/mlazos/fp8-bias-fusion 2025-07-17T06:36:49.2762919Z * [new branch] mlazos/freezing -> origin/mlazos/freezing 2025-07-17T06:36:49.2763594Z * [new branch] mlazos/gen-foreach -> origin/mlazos/gen-foreach 2025-07-17T06:36:49.2764072Z * [new branch] mlazos/h-comp -> origin/mlazos/h-comp 2025-07-17T06:36:49.2764512Z * [new branch] mlazos/h-comp2 -> origin/mlazos/h-comp2 2025-07-17T06:36:49.2764952Z * [new branch] mlazos/hc -> origin/mlazos/hc 2025-07-17T06:36:49.2765396Z * [new branch] mlazos/hc-cycles -> origin/mlazos/hc-cycles 2025-07-17T06:36:49.2765852Z * [new branch] mlazos/hc-fixes -> origin/mlazos/hc-fixes 2025-07-17T06:36:49.2766314Z * [new branch] mlazos/hc-fixes3 -> origin/mlazos/hc-fixes3 2025-07-17T06:36:49.2766772Z * [new branch] mlazos/hc-fixes4 -> origin/mlazos/hc-fixes4 2025-07-17T06:36:49.2767223Z * [new branch] mlazos/hc-hf -> origin/mlazos/hc-hf 2025-07-17T06:36:49.2767783Z * [new branch] mlazos/hc-mut -> origin/mlazos/hc-mut 2025-07-17T06:36:49.2768218Z * [new branch] mlazos/hc10 -> origin/mlazos/hc10 2025-07-17T06:36:49.2768664Z * [new branch] mlazos/hc11 -> origin/mlazos/hc11 2025-07-17T06:36:49.2769086Z * [new branch] mlazos/hc12 -> origin/mlazos/hc12 2025-07-17T06:36:49.2769525Z * [new branch] mlazos/hc13 -> origin/mlazos/hc13 2025-07-17T06:36:49.2769951Z * [new branch] mlazos/hc14 -> origin/mlazos/hc14 2025-07-17T06:36:49.2770364Z * [new branch] mlazos/hc15 -> origin/mlazos/hc15 2025-07-17T06:36:49.2770788Z * [new branch] mlazos/hc2 -> origin/mlazos/hc2 2025-07-17T06:36:49.2771204Z * [new branch] mlazos/hc4 -> origin/mlazos/hc4 2025-07-17T06:36:49.2771630Z * [new branch] mlazos/hc5 -> origin/mlazos/hc5 2025-07-17T06:36:49.2772043Z * [new branch] mlazos/hc6 -> origin/mlazos/hc6 2025-07-17T06:36:49.2772465Z * [new branch] mlazos/hc7 -> origin/mlazos/hc7 2025-07-17T06:36:49.2772880Z * [new branch] mlazos/hc8 -> origin/mlazos/hc8 2025-07-17T06:36:49.2773290Z * [new branch] mlazos/hc9 -> origin/mlazos/hc9 2025-07-17T06:36:49.2773750Z * [new branch] mlazos/hc_baseline2 -> origin/mlazos/hc_baseline2 2025-07-17T06:36:49.2774225Z * [new branch] mlazos/hop-modes -> origin/mlazos/hop-modes 2025-07-17T06:36:49.2774727Z * [new branch] mlazos/init-per-param -> origin/mlazos/init-per-param 2025-07-17T06:36:49.2775246Z * [new branch] mlazos/init_per_param -> origin/mlazos/init_per_param 2025-07-17T06:36:49.2775747Z * [new branch] mlazos/less-guards -> origin/mlazos/less-guards 2025-07-17T06:36:49.5263169Z * [new branch] mlazos/lr-composibility -> origin/mlazos/lr-composibility 2025-07-17T06:36:49.5263741Z * [new branch] mlazos/main -> origin/mlazos/main 2025-07-17T06:36:49.5264258Z * [new branch] mlazos/main-test-enablement -> origin/mlazos/main-test-enablement 2025-07-17T06:36:49.5264785Z * [new branch] mlazos/main2 -> origin/mlazos/main2 2025-07-17T06:36:49.5265223Z * [new branch] mlazos/mcg -> origin/mlazos/mcg 2025-07-17T06:36:49.5265663Z * [new branch] mlazos/mcg2 -> origin/mlazos/mcg2 2025-07-17T06:36:49.5266124Z * [new branch] mlazos/meta-guards -> origin/mlazos/meta-guards 2025-07-17T06:36:49.5266617Z * [new branch] mlazos/mlazos/ck2 -> origin/mlazos/mlazos/ck2 2025-07-17T06:36:49.5267359Z * [new branch] mlazos/mlazos/foreach-map-adam -> origin/mlazos/mlazos/foreach-map-adam 2025-07-17T06:36:49.5267992Z * [new branch] mlazos/mlazos/tf-mode-backup -> origin/mlazos/mlazos/tf-mode-backup 2025-07-17T06:36:49.5268519Z * [new branch] mlazos/mod-fix -> origin/mlazos/mod-fix 2025-07-17T06:36:49.5268972Z * [new branch] mlazos/mode-fix -> origin/mlazos/mode-fix 2025-07-17T06:36:49.5269460Z * [new branch] mlazos/more-tests -> origin/mlazos/more-tests 2025-07-17T06:36:49.5269954Z * [new branch] mlazos/nested-dc -> origin/mlazos/nested-dc 2025-07-17T06:36:49.5270409Z * [new branch] mlazos/no-cpp -> origin/mlazos/no-cpp 2025-07-17T06:36:49.5270942Z * [new branch] mlazos/no-init-group-handling -> origin/mlazos/no-init-group-handling 2025-07-17T06:36:49.5271519Z * [new branch] mlazos/op-investigation -> origin/mlazos/op-investigation 2025-07-17T06:36:49.5272171Z * [new branch] mlazos/opt-bench-exp2 -> origin/mlazos/opt-bench-exp2 2025-07-17T06:36:49.5272682Z * [new branch] mlazos/opt-bench3 -> origin/mlazos/opt-bench3 2025-07-17T06:36:49.5273148Z * [new branch] mlazos/opt-incr -> origin/mlazos/opt-incr 2025-07-17T06:36:49.5273637Z * [new branch] mlazos/opt-slowdown -> origin/mlazos/opt-slowdown 2025-07-17T06:36:49.5274131Z * [new branch] mlazos/proxy-ctors -> origin/mlazos/proxy-ctors 2025-07-17T06:36:49.5274625Z * [new branch] mlazos/proxy-opt -> origin/mlazos/proxy-opt 2025-07-17T06:36:49.5275159Z * [new branch] mlazos/rm-spam -> origin/mlazos/rm-spam 2025-07-17T06:36:49.5275608Z * [new branch] mlazos/rtp -> origin/mlazos/rtp 2025-07-17T06:36:49.5276076Z * [new branch] mlazos/sdpa-driss -> origin/mlazos/sdpa-driss 2025-07-17T06:36:49.5276587Z * [new branch] mlazos/static-idx-dbg -> origin/mlazos/static-idx-dbg 2025-07-17T06:36:49.5277140Z * [new branch] mlazos/static-inputs-log -> origin/mlazos/static-inputs-log 2025-07-17T06:36:49.5277671Z * [new branch] mlazos/sub-param-fix -> origin/mlazos/sub-param-fix 2025-07-17T06:36:49.5278153Z * [new branch] mlazos/td-fix2 -> origin/mlazos/td-fix2 2025-07-17T06:36:49.5278641Z * [new branch] mlazos/tensor-hasattr2 -> origin/mlazos/tensor-hasattr2 2025-07-17T06:36:49.5279125Z * [new branch] mlazos/test -> origin/mlazos/test 2025-07-17T06:36:49.5279566Z * [new branch] mlazos/tf-mode -> origin/mlazos/tf-mode 2025-07-17T06:36:49.5280043Z * [new branch] mlazos/tf-mode-backup2 -> origin/mlazos/tf-mode-backup2 2025-07-17T06:36:49.5280559Z * [new branch] mlazos/tf-mode-reland -> origin/mlazos/tf-mode-reland 2025-07-17T06:36:49.5281086Z * [new branch] mlazos/tf-mode-reland2 -> origin/mlazos/tf-mode-reland2 2025-07-17T06:36:49.5281590Z * [new branch] mlazos/tf-mode-reland3 -> origin/mlazos/tf-mode-reland3 2025-07-17T06:36:49.5282105Z * [new branch] mlazos/triton-no-epi -> origin/mlazos/triton-no-epi 2025-07-17T06:36:49.5282597Z * [new branch] mlazos/tune-proto -> origin/mlazos/tune-proto 2025-07-17T06:36:49.5283096Z * [new branch] mlazos/tuple-fixes -> origin/mlazos/tuple-fixes 2025-07-17T06:36:49.5283609Z * [new branch] mlazos/tuple-handling -> origin/mlazos/tuple-handling 2025-07-17T06:36:49.5284098Z * [new branch] mlazos/vary-beta -> origin/mlazos/vary-beta 2025-07-17T06:36:49.5284576Z * [new branch] mlazos/vary-beta2 -> origin/mlazos/vary-beta2 2025-07-17T06:36:49.5285166Z * [new branch] mlazos/weird-perf1 -> origin/mlazos/weird-perf1 2025-07-17T06:36:49.5285702Z * [new branch] move-theme-out-docker -> origin/move-theme-out-docker 2025-07-17T06:36:49.5286198Z * [new branch] mps-linear-1d -> origin/mps-linear-1d 2025-07-17T06:36:49.5286641Z * [new branch] msaroufim/acc -> origin/msaroufim/acc 2025-07-17T06:36:49.5287087Z * [new branch] msaroufim/be1 -> origin/msaroufim/be1 2025-07-17T06:36:49.7047170Z * [new branch] msaroufim/ck_custom_op -> origin/msaroufim/ck_custom_op 2025-07-17T06:36:49.7047733Z * [new branch] msaroufim/cn_path -> origin/msaroufim/cn_path 2025-07-17T06:36:49.7048261Z * [new branch] msaroufim/compile_kernel -> origin/msaroufim/compile_kernel 2025-07-17T06:36:49.7048830Z * [new branch] msaroufim/compile_reduction -> origin/msaroufim/compile_reduction 2025-07-17T06:36:49.7049630Z * [new branch] msaroufim/dtensorfusedadam -> origin/msaroufim/dtensorfusedadam 2025-07-17T06:36:49.7050183Z * [new branch] msaroufim/gencode -> origin/msaroufim/gencode 2025-07-17T06:36:49.7050659Z * [new branch] msaroufim/reduce -> origin/msaroufim/reduce 2025-07-17T06:36:49.7051247Z * [new branch] msaroufim/simplify_nvrtc_discovery -> origin/msaroufim/simplify_nvrtc_discovery 2025-07-17T06:36:49.7051827Z * [new branch] mtia/basic-cmake -> origin/mtia/basic-cmake 2025-07-17T06:36:49.7052266Z * [new branch] mul_op -> origin/mul_op 2025-07-17T06:36:49.7052695Z * [new branch] ngimel/cat_perf -> origin/ngimel/cat_perf 2025-07-17T06:36:49.7053220Z * [new branch] ngimel/deterministic_scatter -> origin/ngimel/deterministic_scatter 2025-07-17T06:36:49.7053749Z * [new branch] ngimel/gg_new -> origin/ngimel/gg_new 2025-07-17T06:36:49.7054245Z * [new branch] ngimel/index_None -> origin/ngimel/index_None 2025-07-17T06:36:49.7054813Z * [new branch] ngimel/mempool_emptycache -> origin/ngimel/mempool_emptycache 2025-07-17T06:36:49.7055393Z * [new branch] nightly -> origin/nightly 2025-07-17T06:36:49.7055935Z * [new branch] nmacchioni-be-use-max-autotune -> origin/nmacchioni-be-use-max-autotune 2025-07-17T06:36:49.7056531Z * [new branch] nmacchioni-patch-1 -> origin/nmacchioni-patch-1 2025-07-17T06:36:49.7057057Z * [new branch] nmacchioni-patch-10 -> origin/nmacchioni-patch-10 2025-07-17T06:36:49.7057567Z * [new branch] nmacchioni-patch-3 -> origin/nmacchioni-patch-3 2025-07-17T06:36:49.7058070Z * [new branch] nmacchioni-patch-4 -> origin/nmacchioni-patch-4 2025-07-17T06:36:49.7058568Z * [new branch] nmacchioni-patch-5 -> origin/nmacchioni-patch-5 2025-07-17T06:36:49.7059076Z * [new branch] nmacchioni-patch-6 -> origin/nmacchioni-patch-6 2025-07-17T06:36:49.7059572Z * [new branch] nmacchioni-patch-7 -> origin/nmacchioni-patch-7 2025-07-17T06:36:49.7060069Z * [new branch] nmacchioni-patch-8 -> origin/nmacchioni-patch-8 2025-07-17T06:36:49.7060567Z * [new branch] nmacchioni-patch-9 -> origin/nmacchioni-patch-9 2025-07-17T06:36:49.7061043Z * [new branch] np_indexing_fix -> origin/np_indexing_fix 2025-07-17T06:36:49.7061524Z * [new branch] nullplay_fuse_matmul -> origin/nullplay_fuse_matmul 2025-07-17T06:36:49.7062167Z * [new branch] nweidia/enable-B200-inductor-nightly-ci -> origin/nweidia/enable-B200-inductor-nightly-ci 2025-07-17T06:36:49.7062794Z * [new branch] openblas_gemv -> origin/openblas_gemv 2025-07-17T06:36:49.7063923Z * [new branch] orig/release/1.10 -> origin/orig/release/1.10 2025-07-17T06:36:49.7064402Z * [new branch] orig/release/1.11 -> origin/orig/release/1.11 2025-07-17T06:36:49.7064875Z * [new branch] orig/release/1.12 -> origin/orig/release/1.12 2025-07-17T06:36:49.7065349Z * [new branch] orig/release/1.13 -> origin/orig/release/1.13 2025-07-17T06:36:49.7065818Z * [new branch] orig/release/1.6 -> origin/orig/release/1.6 2025-07-17T06:36:49.7066288Z * [new branch] orig/release/1.7 -> origin/orig/release/1.7 2025-07-17T06:36:49.7066744Z * [new branch] orig/release/1.8 -> origin/orig/release/1.8 2025-07-17T06:36:49.7067202Z * [new branch] orig/release/1.9 -> origin/orig/release/1.9 2025-07-17T06:36:49.7067656Z * [new branch] orig/release/2.0 -> origin/orig/release/2.0 2025-07-17T06:36:49.7068119Z * [new branch] orig/release/2.1 -> origin/orig/release/2.1 2025-07-17T06:36:49.7068681Z * [new branch] orig/release/2.2 -> origin/orig/release/2.2 2025-07-17T06:36:49.7069139Z * [new branch] orig/release/2.3 -> origin/orig/release/2.3 2025-07-17T06:36:49.7069603Z * [new branch] orig/release/2.4 -> origin/orig/release/2.4 2025-07-17T06:36:49.7070052Z * [new branch] orig/release/2.5 -> origin/orig/release/2.5 2025-07-17T06:36:49.7070527Z * [new branch] orig/release/2.6 -> origin/orig/release/2.6 2025-07-17T06:36:49.7071094Z * [new branch] orig/release/2.7 -> origin/orig/release/2.7 2025-07-17T06:36:49.7071603Z * [new branch] orig/release/2.8 -> origin/orig/release/2.8 2025-07-17T06:36:49.8448586Z * [new branch] oulgen/fx_graph -> origin/oulgen/fx_graph 2025-07-17T06:36:49.8449137Z * [new branch] padded-tensor -> origin/padded-tensor 2025-07-17T06:36:49.8449608Z * [new branch] parallel_cat -> origin/parallel_cat 2025-07-17T06:36:49.8451109Z * [new branch] parallel_reduce -> origin/parallel_reduce 2025-07-17T06:36:49.8451556Z * [new branch] pca2 -> origin/pca2 2025-07-17T06:36:49.8451999Z * [new branch] pianpwk-patch-1 -> origin/pianpwk-patch-1 2025-07-17T06:36:49.8452592Z * [new branch] pianpwk/backed_size_oblivious_export -> origin/pianpwk/backed_size_oblivious_export 2025-07-17T06:36:49.8453219Z * [new branch] pianpwk/dde_repeat_cat -> origin/pianpwk/dde_repeat_cat 2025-07-17T06:36:49.8453715Z * [new branch] pianpwk/dim_docs -> origin/pianpwk/dim_docs 2025-07-17T06:36:49.8454270Z * [new branch] pianpwk/draft_export_normalize -> origin/pianpwk/draft_export_normalize 2025-07-17T06:36:49.8454880Z * [new branch] pianpwk/dynamic_source_dim -> origin/pianpwk/dynamic_source_dim 2025-07-17T06:36:49.8455419Z * [new branch] pianpwk/int_in_pgo_state -> origin/pianpwk/int_in_pgo_state 2025-07-17T06:36:49.8455984Z * [new branch] pianpwk/invalidate_fake_memo -> origin/pianpwk/invalidate_fake_memo 2025-07-17T06:36:49.8456570Z * [new branch] pianpwk/lru_cache_bound_sympy -> origin/pianpwk/lru_cache_bound_sympy 2025-07-17T06:36:49.8457116Z * [new branch] pianpwk/max_1_strides -> origin/pianpwk/max_1_strides 2025-07-17T06:36:49.8457623Z * [new branch] pianpwk/nonzero_memo -> origin/pianpwk/nonzero_memo 2025-07-17T06:36:49.8458190Z * [new branch] pianpwk/obl_scatter_gather_index -> origin/pianpwk/obl_scatter_gather_index 2025-07-17T06:36:49.8458797Z * [new branch] pianpwk/oblivious_infer_size -> origin/pianpwk/oblivious_infer_size 2025-07-17T06:36:49.8459593Z * [new branch] pianpwk/oblivious_meta_select -> origin/pianpwk/oblivious_meta_select 2025-07-17T06:36:49.8460239Z * [new branch] pianpwk/oblivious_reshape_view_bad -> origin/pianpwk/oblivious_reshape_view_bad 2025-07-17T06:36:49.8460942Z * [new branch] pianpwk/oblivious_reshape_view_better -> origin/pianpwk/oblivious_reshape_view_better 2025-07-17T06:36:49.8461604Z * [new branch] pianpwk/oblivious_should_swap -> origin/pianpwk/oblivious_should_swap 2025-07-17T06:36:49.8462234Z * [new branch] pianpwk/oblivious_slice_forward -> origin/pianpwk/oblivious_slice_forward 2025-07-17T06:36:49.8462816Z * [new branch] pianpwk/oblivious_where -> origin/pianpwk/oblivious_where 2025-07-17T06:36:49.8463359Z * [new branch] pianpwk/pad_nd_oblivious -> origin/pianpwk/pad_nd_oblivious 2025-07-17T06:36:49.8463916Z * [new branch] pianpwk/pre_forward_hook -> origin/pianpwk/pre_forward_hook 2025-07-17T06:36:49.8464637Z * [new branch] pianpwk/remove_guard_fail_break -> origin/pianpwk/remove_guard_fail_break 2025-07-17T06:36:49.8465213Z * [new branch] pianpwk/single_slice -> origin/pianpwk/single_slice 2025-07-17T06:36:49.8465749Z * [new branch] pianpwk/slice_fresh_symbols -> origin/pianpwk/slice_fresh_symbols 2025-07-17T06:36:49.8466322Z * [new branch] pianpwk/test_slice_fake_impl -> origin/pianpwk/test_slice_fake_impl 2025-07-17T06:36:49.8466929Z * [new branch] pianpwk/unbacked_channels_last -> origin/pianpwk/unbacked_channels_last 2025-07-17T06:36:49.8467531Z * [new branch] pianpwk/unbacked_safe_conv1d -> origin/pianpwk/unbacked_safe_conv1d 2025-07-17T06:36:49.8468116Z * [new branch] pianpwk/unbacked_sdpa_flash -> origin/pianpwk/unbacked_sdpa_flash 2025-07-17T06:36:49.8468691Z * [new branch] pianpwk/unbacked_should_swap -> origin/pianpwk/unbacked_should_swap 2025-07-17T06:36:49.8469308Z * [new branch] pianpwk/unbacked_slice_binding -> origin/pianpwk/unbacked_slice_binding 2025-07-17T06:36:49.8469927Z * [new branch] pianpwk/unbacked_slice_forward -> origin/pianpwk/unbacked_slice_forward 2025-07-17T06:36:49.8470527Z * [new branch] pianpwk/verbose_tensor_guards -> origin/pianpwk/verbose_tensor_guards 2025-07-17T06:36:49.8474041Z * [new branch] pianpwk/wan21_reshape -> origin/pianpwk/wan21_reshape 2025-07-17T06:36:49.8474592Z * [new branch] pianpwk/whitelist_int_float -> origin/pianpwk/whitelist_int_float 2025-07-17T06:36:49.8497548Z * [new branch] pianpwk/whitelist_optimizer -> origin/pianpwk/whitelist_optimizer 2025-07-17T06:36:49.8498318Z * [new branch] pick-torch-standalone-rename-to-release-2.8 -> origin/pick-torch-standalone-rename-to-release-2.8 2025-07-17T06:36:49.8499039Z * [new branch] pin-theme-version -> origin/pin-theme-version 2025-07-17T06:36:49.8499532Z * [new branch] pin-torchao -> origin/pin-torchao 2025-07-17T06:36:49.9405249Z * [new branch] piz/clean_strategy_0627 -> origin/piz/clean_strategy_0627 2025-07-17T06:36:49.9405835Z * [new branch] piz/dtensor_op_coverage -> origin/piz/dtensor_op_coverage 2025-07-17T06:36:49.9406398Z * [new branch] piz/fall_back_missing_0705 -> origin/piz/fall_back_missing_0705 2025-07-17T06:36:49.9406939Z * [new branch] piz/fall_back_missing_0716 -> origin/piz/fall_back_missing_0716 2025-07-17T06:36:49.9407468Z * [new branch] piz/fill_dist_cost_0702 -> origin/piz/fill_dist_cost_0702 2025-07-17T06:36:49.9407983Z * [new branch] piz/fill_dist_cost_0702-2 -> origin/piz/fill_dist_cost_0702-2 2025-07-17T06:36:49.9408475Z * [new branch] piz/fix_einsum -> origin/piz/fix_einsum 2025-07-17T06:36:49.9409137Z * [new branch] piz/fix_index_put_0706 -> origin/piz/fix_index_put_0706 2025-07-17T06:36:49.9409628Z * [new branch] piz/fix_slice -> origin/piz/fix_slice 2025-07-17T06:36:49.9410115Z * [new branch] piz/remove_assert_0709 -> origin/piz/remove_assert_0709 2025-07-17T06:36:49.9410592Z * [new branch] pool-separate -> origin/pool-separate 2025-07-17T06:36:49.9411033Z * [new branch] pr-156087 -> origin/pr-156087 2025-07-17T06:36:49.9411434Z * [new branch] pr/131860 -> origin/pr/131860 2025-07-17T06:36:49.9411847Z * [new branch] pr150241 -> origin/pr150241 2025-07-17T06:36:49.9412267Z * [new branch] pt-opt-cuda3 -> origin/pt-opt-cuda3 2025-07-17T06:36:49.9412760Z * [new branch] python_compiled_autograd -> origin/python_compiled_autograd 2025-07-17T06:36:49.9413304Z * [new branch] qchip/export-D54134695 -> origin/qchip/export-D54134695 2025-07-17T06:36:49.9414376Z * [new branch] randdcefix -> origin/randdcefix 2025-07-17T06:36:49.9414824Z * [new branch] release/1.10 -> origin/release/1.10 2025-07-17T06:36:49.9415254Z * [new branch] release/1.11 -> origin/release/1.11 2025-07-17T06:36:49.9415702Z * [new branch] release/1.12 -> origin/release/1.12 2025-07-17T06:36:49.9416139Z * [new branch] release/1.13 -> origin/release/1.13 2025-07-17T06:36:49.9416568Z * [new branch] release/1.4 -> origin/release/1.4 2025-07-17T06:36:49.9417015Z * [new branch] release/1.4.1 -> origin/release/1.4.1 2025-07-17T06:36:49.9417437Z * [new branch] release/1.5 -> origin/release/1.5 2025-07-17T06:36:49.9417869Z * [new branch] release/1.6 -> origin/release/1.6 2025-07-17T06:36:49.9418304Z * [new branch] release/1.7 -> origin/release/1.7 2025-07-17T06:36:49.9418743Z * [new branch] release/1.8 -> origin/release/1.8 2025-07-17T06:36:49.9419167Z * [new branch] release/1.9 -> origin/release/1.9 2025-07-17T06:36:49.9419590Z * [new branch] release/2.0 -> origin/release/2.0 2025-07-17T06:36:49.9420025Z * [new branch] release/2.1 -> origin/release/2.1 2025-07-17T06:36:49.9420438Z * [new branch] release/2.2 -> origin/release/2.2 2025-07-17T06:36:49.9420861Z * [new branch] release/2.3 -> origin/release/2.3 2025-07-17T06:36:49.9421286Z * [new branch] release/2.4 -> origin/release/2.4 2025-07-17T06:36:49.9421701Z * [new branch] release/2.5 -> origin/release/2.5 2025-07-17T06:36:49.9422137Z * [new branch] release/2.6 -> origin/release/2.6 2025-07-17T06:36:49.9422553Z * [new branch] release/2.7 -> origin/release/2.7 2025-07-17T06:36:49.9422971Z * [new branch] release/2.8 -> origin/release/2.8 2025-07-17T06:36:49.9423396Z * [new branch] release_notes -> origin/release_notes 2025-07-17T06:36:49.9423896Z * [new branch] remove-actionable-label -> origin/remove-actionable-label 2025-07-17T06:36:49.9424410Z * [new branch] remove_ts_docs -> origin/remove_ts_docs 2025-07-17T06:36:49.9425006Z * [new branch] rephrase-export-remove-torchscript -> origin/rephrase-export-remove-torchscript 2025-07-17T06:36:49.9425781Z * [new branch] revert-131069-gh/krzysztofjordan/1/head -> origin/revert-131069-gh/krzysztofjordan/1/head 2025-07-17T06:36:49.9426509Z * [new branch] revert-131469-gh/andrewor14/51/head -> origin/revert-131469-gh/andrewor14/51/head 2025-07-17T06:36:49.9427299Z * [new branch] revert-156870-gh/skarjala/3/head -> origin/revert-156870-gh/skarjala/3/head 2025-07-17T06:36:49.9427933Z * [new branch] revert-156890-triton_34_update -> origin/revert-156890-triton_34_update 2025-07-17T06:36:49.9428737Z * [new branch] revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ -> origin/revert-157914-cherry-pick-157503-by-pytorch_bot_bot_ 2025-07-17T06:36:50.0420886Z * [new branch] rithesh/fsdp_cpu -> origin/rithesh/fsdp_cpu 2025-07-17T06:36:50.0421448Z * [new branch] rocm-monitoring -> origin/rocm-monitoring 2025-07-17T06:36:50.0422173Z * [new branch] ryanguo99/cleanup-dynamo-expected-failures -> origin/ryanguo99/cleanup-dynamo-expected-failures 2025-07-17T06:36:50.0422953Z * [new branch] ryanguo99/fix-closure-var -> origin/ryanguo99/fix-closure-var 2025-07-17T06:36:50.0423523Z * [new branch] rzou/faketensor_bench -> origin/rzou/faketensor_bench 2025-07-17T06:36:50.0424168Z * [new branch] rzou/njt -> origin/rzou/njt 2025-07-17T06:36:50.0424613Z * [new branch] rzou/operator -> origin/rzou/operator 2025-07-17T06:36:50.0425049Z * [new branch] rzou/pca -> origin/rzou/pca 2025-07-17T06:36:50.0425502Z * [new branch] rzou/pipe_split -> origin/rzou/pipe_split 2025-07-17T06:36:50.0425963Z * [new branch] rzou/realprop -> origin/rzou/realprop 2025-07-17T06:36:50.0426425Z * [new branch] rzou/setup_context -> origin/rzou/setup_context 2025-07-17T06:36:50.0427051Z * [new branch] sanchitintel/refactor_aten_int8_woq_gemm -> origin/sanchitintel/refactor_aten_int8_woq_gemm 2025-07-17T06:36:50.0427926Z * [new branch] sanchitintel/weird_thing_with_test_cpu_select_algorithm -> origin/sanchitintel/weird_thing_with_test_cpu_select_algorithm 2025-07-17T06:36:50.0428722Z * [new branch] sapling-pr-archive-SS-JIA -> origin/sapling-pr-archive-SS-JIA 2025-07-17T06:36:50.0429215Z * [new branch] save -> origin/save 2025-07-17T06:36:50.0429631Z * [new branch] sdym/2.5.1 -> origin/sdym/2.5.1 2025-07-17T06:36:50.0430108Z * [new branch] seemethere-patch-1 -> origin/seemethere-patch-1 2025-07-17T06:36:50.0430605Z * [new branch] share_and_pin_fork -> origin/share_and_pin_fork 2025-07-17T06:36:50.0431097Z * [new branch] shengf/fx-xform-perf -> origin/shengf/fx-xform-perf 2025-07-17T06:36:50.0431614Z * [new branch] shikaili_fp8_allgather -> origin/shikaili_fp8_allgather 2025-07-17T06:36:50.0432128Z * [new branch] shoumikhin-patch-12 -> origin/shoumikhin-patch-12 2025-07-17T06:36:50.0432676Z * [new branch] simplify-fq-per-channel -> origin/simplify-fq-per-channel 2025-07-17T06:36:50.0433211Z * [new branch] solve-accuracy-fix -> origin/solve-accuracy-fix 2025-07-17T06:36:50.0433706Z * [new branch] soumith-patch-1 -> origin/soumith-patch-1 2025-07-17T06:36:50.0434196Z * [new branch] sqzhang/flight4 -> origin/sqzhang/flight4 2025-07-17T06:36:50.0434678Z * [new branch] sqzhang/flight4plus -> origin/sqzhang/flight4plus 2025-07-17T06:36:50.0435299Z * [new branch] sraikund/record_funct_test -> origin/sraikund/record_funct_test 2025-07-17T06:36:50.0435818Z * [new branch] sraikund16/test -> origin/sraikund16/test 2025-07-17T06:36:50.0436354Z * [new branch] stablize-compilation-time -> origin/stablize-compilation-time 2025-07-17T06:36:50.0436921Z * [new branch] starterTaskUpdate -> origin/starterTaskUpdate 2025-07-17T06:36:50.0437530Z * [new branch] subgraph_fuse -> origin/subgraph_fuse 2025-07-17T06:36:50.0438027Z * [new branch] support-b200-runners -> origin/support-b200-runners 2025-07-17T06:36:50.0438577Z * [new branch] support-uv-in-collect_env -> origin/support-uv-in-collect_env 2025-07-17T06:36:50.0439109Z * [new branch] support_gqa_cpu -> origin/support_gqa_cpu 2025-07-17T06:36:50.0439622Z * [new branch] suryasub/fix-nccl-hang -> origin/suryasub/fix-nccl-hang 2025-07-17T06:36:50.0440178Z * [new branch] suryasub/nvshmem-get-kernel -> origin/suryasub/nvshmem-get-kernel 2025-07-17T06:36:50.0440757Z * [new branch] suryasub/put-signal-kernel -> origin/suryasub/put-signal-kernel 2025-07-17T06:36:50.0441279Z * [new branch] svekars-patch-1 -> origin/svekars-patch-1 2025-07-17T06:36:50.0441753Z * [new branch] svekars-patch-3 -> origin/svekars-patch-3 2025-07-17T06:36:50.0442329Z * [new branch] switch-bn -> origin/switch-bn 2025-07-17T06:36:50.0442794Z * [new branch] syed-ahmed-patch-1 -> origin/syed-ahmed-patch-1 2025-07-17T06:36:50.0443333Z * [new branch] sympy-bottleneck-repro -> origin/sympy-bottleneck-repro 2025-07-17T06:36:50.0443834Z * [new branch] teja/add_logs -> origin/teja/add_logs 2025-07-17T06:36:50.0444318Z * [new branch] tensordict_integration -> origin/tensordict_integration 2025-07-17T06:36:50.0444826Z * [new branch] test-internal-et -> origin/test-internal-et 2025-07-17T06:36:50.0445330Z * [new branch] test-move-conda-builds -> origin/test-move-conda-builds 2025-07-17T06:36:50.0445817Z * [new branch] test/bmm_heur -> origin/test/bmm_heur 2025-07-17T06:36:50.2773464Z * [new branch] test/inductor -> origin/test/inductor 2025-07-17T06:36:50.2774092Z * [new branch] tidy_performance_cyy -> origin/tidy_performance_cyy 2025-07-17T06:36:50.2774594Z * [new branch] torchtitan_ep -> origin/torchtitan_ep 2025-07-17T06:36:50.2775046Z * [new branch] tp_changes -> origin/tp_changes 2025-07-17T06:36:50.2775539Z * [new branch] trace_fsdp_torchtune_lora -> origin/trace_fsdp_torchtune_lora 2025-07-17T06:36:50.2776073Z * [new branch] traceable_fsdp_unit_tests -> origin/traceable_fsdp_unit_tests 2025-07-17T06:36:50.2776577Z * [new branch] trackMonitor -> origin/trackMonitor 2025-07-17T06:36:50.2777039Z * [new branch] tree_loop_vec_base -> origin/tree_loop_vec_base 2025-07-17T06:36:50.2777484Z * [new branch] tree_vec_base -> origin/tree_vec_base 2025-07-17T06:36:50.2777931Z * [new branch] triton-update -> origin/triton-update 2025-07-17T06:36:50.2778379Z * [new branch] triton_kernel -> origin/triton_kernel 2025-07-17T06:36:50.2778846Z * [new branch] triton_kernel_perf -> origin/triton_kernel_perf 2025-07-17T06:36:50.2779348Z * [new branch] try-runllm -> origin/try-runllm 2025-07-17T06:36:50.2779799Z * [new branch] type_dec -> origin/type_dec 2025-07-17T06:36:50.2780306Z * [new branch] udate-sphinx-dependancies -> origin/udate-sphinx-dependancies 2025-07-17T06:36:50.2781017Z * [new branch] update-audio-commit-hash/15573111403-1620-1 -> origin/update-audio-commit-hash/15573111403-1620-1 2025-07-17T06:36:50.2781836Z * [new branch] update-audio-commit-hash/15720911896-1627-1 -> origin/update-audio-commit-hash/15720911896-1627-1 2025-07-17T06:36:50.2782633Z * [new branch] update-audio-commit-hash/15890021967-1637-1 -> origin/update-audio-commit-hash/15890021967-1637-1 2025-07-17T06:36:50.2783629Z * [new branch] update-audio-commit-hash/16157311175-1652-1 -> origin/update-audio-commit-hash/16157311175-1652-1 2025-07-17T06:36:50.2784440Z * [new branch] update-audio-commit-hash/16307312222-1661-1 -> origin/update-audio-commit-hash/16307312222-1661-1 2025-07-17T06:36:50.2785337Z * [new branch] update-executorch-commit-hash/15694981040-1626-1 -> origin/update-executorch-commit-hash/15694981040-1626-1 2025-07-17T06:36:50.2786251Z * [new branch] update-triton-commit-hash/13663274526-1487-2 -> origin/update-triton-commit-hash/13663274526-1487-2 2025-07-17T06:36:50.2787076Z * [new branch] update-vision-commit-hash/15336342773-1607-1 -> origin/update-vision-commit-hash/15336342773-1607-1 2025-07-17T06:36:50.2787855Z * [new branch] update-xla-commit-hash/15674789457-190-1 -> origin/update-xla-commit-hash/15674789457-190-1 2025-07-17T06:36:50.2788731Z * [new branch] update-xla-commit-hash/15818245712-191-1 -> origin/update-xla-commit-hash/15818245712-191-1 2025-07-17T06:36:50.2789483Z * [new branch] update-xla-commit-hash/16260974441-194-1 -> origin/update-xla-commit-hash/16260974441-194-1 2025-07-17T06:36:50.2790238Z * [new branch] update_docs_torch_multinomial_issue#125388 -> origin/update_docs_torch_multinomial_issue#125388 2025-07-17T06:36:50.2790941Z * [new branch] update_slow_tests_1722488736 -> origin/update_slow_tests_1722488736 2025-07-17T06:36:50.2791528Z * [new branch] update_slow_tests_1722879173 -> origin/update_slow_tests_1722879173 2025-07-17T06:36:50.2792073Z * [new branch] update_slow_tests_1749454889 -> origin/update_slow_tests_1749454889 2025-07-17T06:36:50.2792620Z * [new branch] update_slow_tests_1751874113 -> origin/update_slow_tests_1751874113 2025-07-17T06:36:50.2793158Z * [new branch] update_slow_tests_1752478971 -> origin/update_slow_tests_1752478971 2025-07-17T06:36:50.2793732Z * [new branch] update_submodule_FBGEMM -> origin/update_submodule_FBGEMM 2025-07-17T06:36:50.2794253Z * [new branch] update_submodule_kineto -> origin/update_submodule_kineto 2025-07-17T06:36:50.2794721Z * [new branch] v0.1.2 -> origin/v0.1.2 2025-07-17T06:36:50.2795197Z * [new branch] v1.0.1 -> origin/v1.0.1 2025-07-17T06:36:50.2795587Z * [new branch] v1.0.3 -> origin/v1.0.3 2025-07-17T06:36:50.2795983Z * [new branch] v1.1.0 -> origin/v1.1.0 2025-07-17T06:36:50.2796375Z * [new branch] v1.2.0 -> origin/v1.2.0 2025-07-17T06:36:50.2796812Z * [new branch] v1.3.0 -> origin/v1.3.0 2025-07-17T06:36:50.2797239Z * [new branch] v1.3.1 -> origin/v1.3.1 2025-07-17T06:36:50.2797658Z * [new branch] validate_fn -> origin/validate_fn 2025-07-17T06:36:50.4785013Z * [new branch] validations_2.6 -> origin/validations_2.6 2025-07-17T06:36:50.4785532Z * [new branch] viable/strict -> origin/viable/strict 2025-07-17T06:36:50.4786017Z * [new branch] vkuzo-patch-1 -> origin/vkuzo-patch-1 2025-07-17T06:36:50.4786515Z * [new branch] wdvr/conda_devcontainer -> origin/wdvr/conda_devcontainer 2025-07-17T06:36:50.4787034Z * [new branch] wdvr/fix_logging_test -> origin/wdvr/fix_logging_test 2025-07-17T06:36:50.4787538Z * [new branch] wdvr/iss145259_alt -> origin/wdvr/iss145259_alt 2025-07-17T06:36:50.4787995Z * [new branch] wdvr/iss_145259 -> origin/wdvr/iss_145259 2025-07-17T06:36:50.4788470Z * [new branch] weight_sharing_cpp -> origin/weight_sharing_cpp 2025-07-17T06:36:50.4789125Z * [new branch] whc/flight -> origin/whc/flight 2025-07-17T06:36:50.4789554Z * [new branch] whc/flight4 -> origin/whc/flight4 2025-07-17T06:36:50.4789997Z * [new branch] whc/flight51 -> origin/whc/flight51 2025-07-17T06:36:50.4790431Z * [new branch] whc/flight53 -> origin/whc/flight53 2025-07-17T06:36:50.4790886Z * [new branch] whc/flight_full -> origin/whc/flight_full 2025-07-17T06:36:50.4791337Z * [new branch] whc/p2phang -> origin/whc/p2phang 2025-07-17T06:36:50.4791779Z * [new branch] whc/stage2 -> origin/whc/stage2 2025-07-17T06:36:50.4792198Z * [new branch] whc/uneven -> origin/whc/uneven 2025-07-17T06:36:50.4792643Z * [new branch] whc/uneven-merge -> origin/whc/uneven-merge 2025-07-17T06:36:50.4793098Z * [new branch] win_warnings -> origin/win_warnings 2025-07-17T06:36:50.4793640Z * [new branch] xmfan/ca_0516 -> origin/xmfan/ca_0516 2025-07-17T06:36:50.4794106Z * [new branch] xmfan/ca_1051b93192 -> origin/xmfan/ca_1051b93192 2025-07-17T06:36:50.4794799Z * [new branch] xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 -> origin/xmfan/ca_1a722f62c248391fc4a542e8851a5559aa356ae8 2025-07-17T06:36:50.4795573Z * [new branch] xmfan/ca_5a2be192d1 -> origin/xmfan/ca_5a2be192d1 2025-07-17T06:36:50.4796060Z * [new branch] xmfan/ca_9d59b516e9 -> origin/xmfan/ca_9d59b516e9 2025-07-17T06:36:50.4796513Z * [new branch] xmfan/ca_api -> origin/xmfan/ca_api 2025-07-17T06:36:50.4796957Z * [new branch] xmfan/ca_apr8 -> origin/xmfan/ca_apr8 2025-07-17T06:36:50.4797403Z * [new branch] xmfan/ca_base -> origin/xmfan/ca_base 2025-07-17T06:36:50.4797872Z * [new branch] xmfan/ca_cudagraphs -> origin/xmfan/ca_cudagraphs 2025-07-17T06:36:50.4798350Z * [new branch] xmfan/ca_dynamic -> origin/xmfan/ca_dynamic 2025-07-17T06:36:50.4798808Z * [new branch] xmfan/ca_fix_dyn -> origin/xmfan/ca_fix_dyn 2025-07-17T06:36:50.4799363Z * [new branch] xmfan/ca_fix_lowering -> origin/xmfan/ca_fix_lowering 2025-07-17T06:36:50.4799910Z * [new branch] xmfan/ca_fix_polyfills -> origin/xmfan/ca_fix_polyfills 2025-07-17T06:36:50.4800387Z * [new branch] xmfan/ca_jan3 -> origin/xmfan/ca_jan3 2025-07-17T06:36:50.4800822Z * [new branch] xmfan/ca_jun18 -> origin/xmfan/ca_jun18 2025-07-17T06:36:50.4801251Z * [new branch] xmfan/ca_jun24 -> origin/xmfan/ca_jun24 2025-07-17T06:36:50.4801699Z * [new branch] xmfan/ca_mem_base -> origin/xmfan/ca_mem_base 2025-07-17T06:36:50.4802162Z * [new branch] xmfan/ca_mem_fix -> origin/xmfan/ca_mem_fix 2025-07-17T06:36:50.4802640Z * [new branch] xmfan/ca_memory_fix -> origin/xmfan/ca_memory_fix 2025-07-17T06:36:50.4803155Z * [new branch] xmfan/ca_memory_fix_rebased -> origin/xmfan/ca_memory_fix_rebased 2025-07-17T06:36:50.4803700Z * [new branch] xmfan/ca_memory_fix_rebased2 -> origin/xmfan/ca_memory_fix_rebased2 2025-07-17T06:36:50.4804222Z * [new branch] xmfan/ca_move_to_cuda -> origin/xmfan/ca_move_to_cuda 2025-07-17T06:36:50.4804726Z * [new branch] xmfan/ca_nested -> origin/xmfan/ca_nested 2025-07-17T06:36:50.4805238Z * [new branch] xmfan/ca_overhead -> origin/xmfan/ca_overhead 2025-07-17T06:36:50.4805765Z * [new branch] xmfan/ca_overhead_0eba7e5451 -> origin/xmfan/ca_overhead_0eba7e5451 2025-07-17T06:36:50.4806403Z * [new branch] xmfan/ca_scalar -> origin/xmfan/ca_scalar 2025-07-17T06:36:50.4806913Z * [new branch] xmfan/ca_subclass_mem_fix -> origin/xmfan/ca_subclass_mem_fix 2025-07-17T06:36:50.4807414Z * [new branch] xmfan/ca_warm_mem -> origin/xmfan/ca_warm_mem 2025-07-17T06:36:50.4807899Z * [new branch] xmfan/ca_warm_mem_base -> origin/xmfan/ca_warm_mem_base 2025-07-17T06:36:50.4808369Z * [new branch] xmfan/cacu_jun18 -> origin/xmfan/cacu_jun18 2025-07-17T06:36:50.6979552Z * [new branch] xmfan/cacu_jun19 -> origin/xmfan/cacu_jun19 2025-07-17T06:36:50.6980077Z * [new branch] xmfan/cacu_jun4 -> origin/xmfan/cacu_jun4 2025-07-17T06:36:50.6980558Z * [new branch] xmfan/cacu_may27 -> origin/xmfan/cacu_may27 2025-07-17T06:36:50.6981033Z * [new branch] xmfan/circular_dep -> origin/xmfan/circular_dep 2025-07-17T06:36:50.6981609Z * [new branch] xmfan/compiled_autograd_ddp -> origin/xmfan/compiled_autograd_ddp 2025-07-17T06:36:50.6982431Z * [new branch] xmfan/compiled_autograd_feb_29 -> origin/xmfan/compiled_autograd_feb_29 2025-07-17T06:36:50.6983131Z * [new branch] xmfan/compiled_autograd_graph_breaks -> origin/xmfan/compiled_autograd_graph_breaks 2025-07-17T06:36:50.6983887Z * [new branch] xmfan/compiled_autograd_hypothetical_perf -> origin/xmfan/compiled_autograd_hypothetical_perf 2025-07-17T06:36:50.6984632Z * [new branch] xmfan/compiled_autograd_perf_no_reuse -> origin/xmfan/compiled_autograd_perf_no_reuse 2025-07-17T06:36:50.6985266Z * [new branch] xmfan/disable_duck_shape -> origin/xmfan/disable_duck_shape 2025-07-17T06:36:50.6985850Z * [new branch] xmfan/fca_cpp_node_passthrough -> origin/xmfan/fca_cpp_node_passthrough 2025-07-17T06:36:50.6986441Z * [new branch] xmfan/feb_10_compiled_autograd -> origin/xmfan/feb_10_compiled_autograd 2025-07-17T06:36:50.6987120Z * [new branch] xmfan/feb_10_compiled_autograd_cudagraph -> origin/xmfan/feb_10_compiled_autograd_cudagraph 2025-07-17T06:36:50.6987737Z * [new branch] xmfan/issue_123374 -> origin/xmfan/issue_123374 2025-07-17T06:36:50.6988487Z * [new branch] xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/post_3945954741e2d37023c5d6954f9483008e0892f9 2025-07-17T06:36:50.6989436Z * [new branch] xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 -> origin/xmfan/pre_3945954741e2d37023c5d6954f9483008e0892f9 2025-07-17T06:36:50.6990117Z * [new branch] xmfan/segfault_test -> origin/xmfan/segfault_test 2025-07-17T06:36:50.6990616Z * [new branch] xmfan/single_step -> origin/xmfan/single_step 2025-07-17T06:36:50.6991086Z * [new branch] xmfan/sth_0829 -> origin/xmfan/sth_0829 2025-07-17T06:36:50.6991528Z * [new branch] xmfan/test -> origin/xmfan/test 2025-07-17T06:36:50.6992058Z * [new branch] y-do-we-have-7-build-systems -> origin/y-do-we-have-7-build-systems 2025-07-17T06:36:50.6992634Z * [new branch] yguo/debug-0226-constexpr -> origin/yguo/debug-0226-constexpr 2025-07-17T06:36:50.6993177Z * [new branch] yguo/new_latest_changes -> origin/yguo/new_latest_changes 2025-07-17T06:36:50.6993733Z * [new branch] yguo/patch_constexpr_changes -> origin/yguo/patch_constexpr_changes 2025-07-17T06:36:50.6994327Z * [new branch] yihan_quantization -> origin/yihan_quantization 2025-07-17T06:36:50.6994864Z * [new branch] yiming/bootcamp -> origin/yiming/bootcamp 2025-07-17T06:36:50.6995420Z * [new branch] zainr/canary-test -> origin/zainr/canary-test 2025-07-17T06:36:50.6995964Z * [new branch] zainr/cleanup-gh-runners -> origin/zainr/cleanup-gh-runners 2025-07-17T06:36:50.6996647Z * [new branch] zainr/mypy15-claude -> origin/zainr/mypy15-claude 2025-07-17T06:36:50.6997161Z * [new branch] zainr/pre-push-hooks -> origin/zainr/pre-push-hooks 2025-07-17T06:36:50.6997698Z * [new branch] zainr/pull-migration-c -> origin/zainr/pull-migration-c 2025-07-17T06:36:50.6998214Z * [new branch] zainr/test-workflow -> origin/zainr/test-workflow 2025-07-17T06:36:50.6998693Z * [new branch] zainr/test2 -> origin/zainr/test2 2025-07-17T06:36:50.6999129Z * [new branch] zainr/unstable -> origin/zainr/unstable 2025-07-17T06:36:50.6999611Z * [new branch] zasdfgbnm-patch-3 -> origin/zasdfgbnm-patch-3 2025-07-17T06:36:50.7000102Z * [new branch] zb2p -> origin/zb2p 2025-07-17T06:36:50.7000581Z * [new branch] zdevito-patch-1 -> origin/zdevito-patch-1 2025-07-17T06:36:50.7001212Z * [new branch] zeros-and-scatter-part2 -> origin/zeros-and-scatter-part2 2025-07-17T06:36:50.7001745Z * [new branch] zhxchen17/nativert/0 -> origin/zhxchen17/nativert/0 2025-07-17T06:36:50.7002266Z * [new branch] zhxchen17/scratch/0 -> origin/zhxchen17/scratch/0 2025-07-17T06:36:50.7002770Z * [new branch] zhxhcen17/moodycamel -> origin/zhxhcen17/moodycamel 2025-07-17T06:36:50.7003248Z * [new branch] zxiiro/bazel -> origin/zxiiro/bazel 2025-07-17T06:36:50.7003689Z * [new branch] zxiiro/docs -> origin/zxiiro/docs 2025-07-17T06:36:50.7004143Z * [new branch] zxiiro/linux-build -> origin/zxiiro/linux-build 2025-07-17T06:36:50.8047954Z * [new branch] zxiiro/linux-test -> origin/zxiiro/linux-test 2025-07-17T06:36:50.8048458Z * [new branch] zxiiro/main -> origin/zxiiro/main 2025-07-17T06:36:50.8048965Z * [new branch] zxiiro/test -> origin/zxiiro/test 2025-07-17T06:36:50.8049425Z * [new branch] zxiiro/windows -> origin/zxiiro/windows 2025-07-17T06:36:50.8050235Z * [new tag] bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug -> bc2caa7fdf006894eff7af936babde69ab5a40f8-huydhn-debug 2025-07-17T06:36:50.8050960Z * [new tag] ci/binaries/77164 -> ci/binaries/77164 2025-07-17T06:36:50.8051379Z * [new tag] ciflow/android/149601 -> ciflow/android/149601 2025-07-17T06:36:50.8051807Z * [new tag] ciflow/binaries/143959 -> ciflow/binaries/143959 2025-07-17T06:36:50.8052245Z * [new tag] ciflow/binaries/156049 -> ciflow/binaries/156049 2025-07-17T06:36:50.8052674Z * [new tag] ciflow/binaries/157432 -> ciflow/binaries/157432 2025-07-17T06:36:50.8053117Z * [new tag] ciflow/binaries/157685 -> ciflow/binaries/157685 2025-07-17T06:36:50.8053556Z * [new tag] ciflow/binaries/157689 -> ciflow/binaries/157689 2025-07-17T06:36:50.8053980Z * [new tag] ciflow/binaries/158104 -> ciflow/binaries/158104 2025-07-17T06:36:50.8054419Z * [new tag] ciflow/binaries/158151 -> ciflow/binaries/158151 2025-07-17T06:36:50.8054911Z * [new tag] ciflow/binaries_libtorch/143959 -> ciflow/binaries_libtorch/143959 2025-07-17T06:36:50.8055504Z * [new tag] ciflow/binaries_libtorch/156049 -> ciflow/binaries_libtorch/156049 2025-07-17T06:36:50.8056086Z * [new tag] ciflow/binaries_libtorch/157432 -> ciflow/binaries_libtorch/157432 2025-07-17T06:36:50.8056627Z * [new tag] ciflow/binaries_libtorch/157791 -> ciflow/binaries_libtorch/157791 2025-07-17T06:36:50.8057169Z * [new tag] ciflow/binaries_libtorch/157928 -> ciflow/binaries_libtorch/157928 2025-07-17T06:36:50.8057879Z * [new tag] ciflow/binaries_wheel/143959 -> ciflow/binaries_wheel/143959 2025-07-17T06:36:50.8058378Z * [new tag] ciflow/binaries_wheel/156049 -> ciflow/binaries_wheel/156049 2025-07-17T06:36:50.8058863Z * [new tag] ciflow/binaries_wheel/157432 -> ciflow/binaries_wheel/157432 2025-07-17T06:36:50.8059355Z * [new tag] ciflow/binaries_wheel/157791 -> ciflow/binaries_wheel/157791 2025-07-17T06:36:50.8059849Z * [new tag] ciflow/binaries_wheel/157928 -> ciflow/binaries_wheel/157928 2025-07-17T06:36:50.8060325Z * [new tag] ciflow/binaries_wheel/158408 -> ciflow/binaries_wheel/158408 2025-07-17T06:36:50.8060872Z * [new tag] ciflow/h100-cutlass-backend/156626 -> ciflow/h100-cutlass-backend/156626 2025-07-17T06:36:50.8061482Z * [new tag] ciflow/h100-distributed/144552 -> ciflow/h100-distributed/144552 2025-07-17T06:36:50.8062061Z * [new tag] ciflow/h100-distributed/150312 -> ciflow/h100-distributed/150312 2025-07-17T06:36:50.8062701Z * [new tag] ciflow/h100-distributed/156605 -> ciflow/h100-distributed/156605 2025-07-17T06:36:50.8063225Z * [new tag] ciflow/h100-distributed/156703 -> ciflow/h100-distributed/156703 2025-07-17T06:36:50.8063728Z * [new tag] ciflow/h100-symm-mem/151845 -> ciflow/h100-symm-mem/151845 2025-07-17T06:36:50.8064200Z * [new tag] ciflow/h100-symm-mem/157180 -> ciflow/h100-symm-mem/157180 2025-07-17T06:36:50.8064675Z * [new tag] ciflow/h100-symm-mem/157970 -> ciflow/h100-symm-mem/157970 2025-07-17T06:36:50.8065150Z * [new tag] ciflow/h100-symm-mem/158511 -> ciflow/h100-symm-mem/158511 2025-07-17T06:36:50.8065613Z * [new tag] ciflow/h100-symm-mem/158512 -> ciflow/h100-symm-mem/158512 2025-07-17T06:36:50.8066087Z * [new tag] ciflow/h100-symm-mem/158513 -> ciflow/h100-symm-mem/158513 2025-07-17T06:36:50.8066554Z * [new tag] ciflow/h100-symm-mem/158514 -> ciflow/h100-symm-mem/158514 2025-07-17T06:36:50.8067062Z * [new tag] ciflow/h100-symm-mem/158515 -> ciflow/h100-symm-mem/158515 2025-07-17T06:36:50.8067580Z * [new tag] ciflow/h100-symm-mem/158523 -> ciflow/h100-symm-mem/158523 2025-07-17T06:36:50.8068081Z * [new tag] ciflow/h100/156980 -> ciflow/h100/156980 2025-07-17T06:36:50.8068520Z * [new tag] ciflow/h100/158459 -> ciflow/h100/158459 2025-07-17T06:36:50.8069206Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/151845 -> ciflow/inductor-perf-test-nightly-rocm/151845 2025-07-17T06:36:50.8070109Z * [new tag] ciflow/inductor-perf-test-nightly-rocm/156592 -> ciflow/inductor-perf-test-nightly-rocm/156592 2025-07-17T06:36:50.8070962Z * [new tag] ciflow/inductor-perf-test-nightly/156592 -> ciflow/inductor-perf-test-nightly/156592 2025-07-17T06:36:50.8071648Z * [new tag] ciflow/inductor-rocm/151845 -> ciflow/inductor-rocm/151845 2025-07-17T06:36:50.8521857Z * [new tag] ciflow/inductor-rocm/156192 -> ciflow/inductor-rocm/156192 2025-07-17T06:36:50.8522400Z * [new tag] ciflow/inductor-rocm/157191 -> ciflow/inductor-rocm/157191 2025-07-17T06:36:50.8522900Z * [new tag] ciflow/inductor-rocm/157520 -> ciflow/inductor-rocm/157520 2025-07-17T06:36:50.8523388Z * [new tag] ciflow/inductor-rocm/158074 -> ciflow/inductor-rocm/158074 2025-07-17T06:36:50.8523887Z * [new tag] ciflow/inductor-rocm/158102 -> ciflow/inductor-rocm/158102 2025-07-17T06:36:50.8524378Z * [new tag] ciflow/inductor-rocm/158103 -> ciflow/inductor-rocm/158103 2025-07-17T06:36:50.8524861Z * [new tag] ciflow/inductor-rocm/158459 -> ciflow/inductor-rocm/158459 2025-07-17T06:36:50.8525336Z * [new tag] ciflow/inductor/137400 -> ciflow/inductor/137400 2025-07-17T06:36:50.8526100Z * [new tag] ciflow/inductor/138214 -> ciflow/inductor/138214 2025-07-17T06:36:50.8526531Z * [new tag] ciflow/inductor/139561 -> ciflow/inductor/139561 2025-07-17T06:36:50.8526969Z * [new tag] ciflow/inductor/143712 -> ciflow/inductor/143712 2025-07-17T06:36:50.8527396Z * [new tag] ciflow/inductor/144516 -> ciflow/inductor/144516 2025-07-17T06:36:50.8527828Z * [new tag] ciflow/inductor/144556 -> ciflow/inductor/144556 2025-07-17T06:36:50.8528262Z * [new tag] ciflow/inductor/147470 -> ciflow/inductor/147470 2025-07-17T06:36:50.8528689Z * [new tag] ciflow/inductor/148180 -> ciflow/inductor/148180 2025-07-17T06:36:50.8529123Z * [new tag] ciflow/inductor/148328 -> ciflow/inductor/148328 2025-07-17T06:36:50.8529552Z * [new tag] ciflow/inductor/148484 -> ciflow/inductor/148484 2025-07-17T06:36:50.8530122Z * [new tag] ciflow/inductor/148492 -> ciflow/inductor/148492 2025-07-17T06:36:50.8530560Z * [new tag] ciflow/inductor/148569 -> ciflow/inductor/148569 2025-07-17T06:36:50.8530988Z * [new tag] ciflow/inductor/149003 -> ciflow/inductor/149003 2025-07-17T06:36:50.8531460Z * [new tag] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-07-17T06:36:50.8531888Z * [new tag] ciflow/inductor/150762 -> ciflow/inductor/150762 2025-07-17T06:36:50.8532366Z * [new tag] ciflow/inductor/151777 -> ciflow/inductor/151777 2025-07-17T06:36:50.8532791Z * [new tag] ciflow/inductor/151845 -> ciflow/inductor/151845 2025-07-17T06:36:50.8533229Z * [new tag] ciflow/inductor/152624 -> ciflow/inductor/152624 2025-07-17T06:36:50.8533657Z * [new tag] ciflow/inductor/154149 -> ciflow/inductor/154149 2025-07-17T06:36:50.8534091Z * [new tag] ciflow/inductor/154199 -> ciflow/inductor/154199 2025-07-17T06:36:50.8534525Z * [new tag] ciflow/inductor/154551 -> ciflow/inductor/154551 2025-07-17T06:36:50.8534949Z * [new tag] ciflow/inductor/154694 -> ciflow/inductor/154694 2025-07-17T06:36:50.8535383Z * [new tag] ciflow/inductor/155452 -> ciflow/inductor/155452 2025-07-17T06:36:50.8535816Z * [new tag] ciflow/inductor/155608 -> ciflow/inductor/155608 2025-07-17T06:36:50.8536246Z * [new tag] ciflow/inductor/155877 -> ciflow/inductor/155877 2025-07-17T06:36:50.8536680Z * [new tag] ciflow/inductor/155958 -> ciflow/inductor/155958 2025-07-17T06:36:50.8537110Z * [new tag] ciflow/inductor/156049 -> ciflow/inductor/156049 2025-07-17T06:36:50.8537559Z * [new tag] ciflow/inductor/156118 -> ciflow/inductor/156118 2025-07-17T06:36:50.8538041Z * [new tag] ciflow/inductor/156141 -> ciflow/inductor/156141 2025-07-17T06:36:50.8538515Z * [new tag] ciflow/inductor/156175 -> ciflow/inductor/156175 2025-07-17T06:36:50.8538958Z * [new tag] ciflow/inductor/156192 -> ciflow/inductor/156192 2025-07-17T06:36:50.8539382Z * [new tag] ciflow/inductor/156296 -> ciflow/inductor/156296 2025-07-17T06:36:50.8539816Z * [new tag] ciflow/inductor/156369 -> ciflow/inductor/156369 2025-07-17T06:36:50.8540245Z * [new tag] ciflow/inductor/156370 -> ciflow/inductor/156370 2025-07-17T06:36:50.8540691Z * [new tag] ciflow/inductor/156371 -> ciflow/inductor/156371 2025-07-17T06:36:50.8541122Z * [new tag] ciflow/inductor/156416 -> ciflow/inductor/156416 2025-07-17T06:36:50.8541545Z * [new tag] ciflow/inductor/156460 -> ciflow/inductor/156460 2025-07-17T06:36:50.8542110Z * [new tag] ciflow/inductor/156592 -> ciflow/inductor/156592 2025-07-17T06:36:50.8542538Z * [new tag] ciflow/inductor/156605 -> ciflow/inductor/156605 2025-07-17T06:36:50.8542971Z * [new tag] ciflow/inductor/156626 -> ciflow/inductor/156626 2025-07-17T06:36:50.8543404Z * [new tag] ciflow/inductor/156652 -> ciflow/inductor/156652 2025-07-17T06:36:50.8543881Z * [new tag] ciflow/inductor/156781 -> ciflow/inductor/156781 2025-07-17T06:36:50.9344075Z * [new tag] ciflow/inductor/156851 -> ciflow/inductor/156851 2025-07-17T06:36:50.9344556Z * [new tag] ciflow/inductor/156874 -> ciflow/inductor/156874 2025-07-17T06:36:50.9345010Z * [new tag] ciflow/inductor/156977 -> ciflow/inductor/156977 2025-07-17T06:36:50.9345454Z * [new tag] ciflow/inductor/156980 -> ciflow/inductor/156980 2025-07-17T06:36:50.9346118Z * [new tag] ciflow/inductor/157152 -> ciflow/inductor/157152 2025-07-17T06:36:50.9346560Z * [new tag] ciflow/inductor/157298 -> ciflow/inductor/157298 2025-07-17T06:36:50.9346991Z * [new tag] ciflow/inductor/157520 -> ciflow/inductor/157520 2025-07-17T06:36:50.9347477Z * [new tag] ciflow/inductor/157572 -> ciflow/inductor/157572 2025-07-17T06:36:50.9347949Z * [new tag] ciflow/inductor/157580 -> ciflow/inductor/157580 2025-07-17T06:36:50.9348388Z * [new tag] ciflow/inductor/157594 -> ciflow/inductor/157594 2025-07-17T06:36:50.9348835Z * [new tag] ciflow/inductor/157633 -> ciflow/inductor/157633 2025-07-17T06:36:50.9349266Z * [new tag] ciflow/inductor/157635 -> ciflow/inductor/157635 2025-07-17T06:36:50.9349717Z * [new tag] ciflow/inductor/157685 -> ciflow/inductor/157685 2025-07-17T06:36:50.9350165Z * [new tag] ciflow/inductor/157686 -> ciflow/inductor/157686 2025-07-17T06:36:50.9350590Z * [new tag] ciflow/inductor/157689 -> ciflow/inductor/157689 2025-07-17T06:36:50.9351025Z * [new tag] ciflow/inductor/157699 -> ciflow/inductor/157699 2025-07-17T06:36:50.9351450Z * [new tag] ciflow/inductor/157743 -> ciflow/inductor/157743 2025-07-17T06:36:50.9351880Z * [new tag] ciflow/inductor/157748 -> ciflow/inductor/157748 2025-07-17T06:36:50.9352315Z * [new tag] ciflow/inductor/157804 -> ciflow/inductor/157804 2025-07-17T06:36:50.9352740Z * [new tag] ciflow/inductor/157822 -> ciflow/inductor/157822 2025-07-17T06:36:50.9353210Z * [new tag] ciflow/inductor/157854 -> ciflow/inductor/157854 2025-07-17T06:36:50.9353678Z * [new tag] ciflow/inductor/157887 -> ciflow/inductor/157887 2025-07-17T06:36:50.9354128Z * [new tag] ciflow/inductor/157902 -> ciflow/inductor/157902 2025-07-17T06:36:50.9354571Z * [new tag] ciflow/inductor/157927 -> ciflow/inductor/157927 2025-07-17T06:36:50.9355008Z * [new tag] ciflow/inductor/157944 -> ciflow/inductor/157944 2025-07-17T06:36:50.9355522Z * [new tag] ciflow/inductor/157951 -> ciflow/inductor/157951 2025-07-17T06:36:50.9355951Z * [new tag] ciflow/inductor/157954 -> ciflow/inductor/157954 2025-07-17T06:36:50.9356385Z * [new tag] ciflow/inductor/157967 -> ciflow/inductor/157967 2025-07-17T06:36:50.9356816Z * [new tag] ciflow/inductor/157969 -> ciflow/inductor/157969 2025-07-17T06:36:50.9357266Z * [new tag] ciflow/inductor/157971 -> ciflow/inductor/157971 2025-07-17T06:36:50.9357708Z * [new tag] ciflow/inductor/157979 -> ciflow/inductor/157979 2025-07-17T06:36:50.9358287Z * [new tag] ciflow/inductor/157982 -> ciflow/inductor/157982 2025-07-17T06:36:50.9358737Z * [new tag] ciflow/inductor/157993 -> ciflow/inductor/157993 2025-07-17T06:36:50.9359221Z * [new tag] ciflow/inductor/158004 -> ciflow/inductor/158004 2025-07-17T06:36:50.9359695Z * [new tag] ciflow/inductor/158011 -> ciflow/inductor/158011 2025-07-17T06:36:50.9360133Z * [new tag] ciflow/inductor/158015 -> ciflow/inductor/158015 2025-07-17T06:36:50.9360557Z * [new tag] ciflow/inductor/158046 -> ciflow/inductor/158046 2025-07-17T06:36:50.9360995Z * [new tag] ciflow/inductor/158047 -> ciflow/inductor/158047 2025-07-17T06:36:50.9361424Z * [new tag] ciflow/inductor/158048 -> ciflow/inductor/158048 2025-07-17T06:36:50.9361868Z * [new tag] ciflow/inductor/158049 -> ciflow/inductor/158049 2025-07-17T06:36:50.9362296Z * [new tag] ciflow/inductor/158061 -> ciflow/inductor/158061 2025-07-17T06:36:50.9362835Z * [new tag] ciflow/inductor/158062 -> ciflow/inductor/158062 2025-07-17T06:36:50.9363283Z * [new tag] ciflow/inductor/158072 -> ciflow/inductor/158072 2025-07-17T06:36:50.9363716Z * [new tag] ciflow/inductor/158074 -> ciflow/inductor/158074 2025-07-17T06:36:50.9364155Z * [new tag] ciflow/inductor/158075 -> ciflow/inductor/158075 2025-07-17T06:36:50.9364619Z * [new tag] ciflow/inductor/158084 -> ciflow/inductor/158084 2025-07-17T06:36:50.9365099Z * [new tag] ciflow/inductor/158091 -> ciflow/inductor/158091 2025-07-17T06:36:50.9365560Z * [new tag] ciflow/inductor/158097 -> ciflow/inductor/158097 2025-07-17T06:36:50.9365991Z * [new tag] ciflow/inductor/158098 -> ciflow/inductor/158098 2025-07-17T06:36:51.0136535Z * [new tag] ciflow/inductor/158104 -> ciflow/inductor/158104 2025-07-17T06:36:51.0137250Z * [new tag] ciflow/inductor/158119 -> ciflow/inductor/158119 2025-07-17T06:36:51.0137733Z * [new tag] ciflow/inductor/158156 -> ciflow/inductor/158156 2025-07-17T06:36:51.0138183Z * [new tag] ciflow/inductor/158171 -> ciflow/inductor/158171 2025-07-17T06:36:51.0138612Z * [new tag] ciflow/inductor/158174 -> ciflow/inductor/158174 2025-07-17T06:36:51.0139053Z * [new tag] ciflow/inductor/158188 -> ciflow/inductor/158188 2025-07-17T06:36:51.0139496Z * [new tag] ciflow/inductor/158193 -> ciflow/inductor/158193 2025-07-17T06:36:51.0139921Z * [new tag] ciflow/inductor/158211 -> ciflow/inductor/158211 2025-07-17T06:36:51.0140360Z * [new tag] ciflow/inductor/158223 -> ciflow/inductor/158223 2025-07-17T06:36:51.0140795Z * [new tag] ciflow/inductor/158237 -> ciflow/inductor/158237 2025-07-17T06:36:51.0141231Z * [new tag] ciflow/inductor/158259 -> ciflow/inductor/158259 2025-07-17T06:36:51.0141671Z * [new tag] ciflow/inductor/158284 -> ciflow/inductor/158284 2025-07-17T06:36:51.0142144Z * [new tag] ciflow/inductor/158289 -> ciflow/inductor/158289 2025-07-17T06:36:51.0142622Z * [new tag] ciflow/inductor/158311 -> ciflow/inductor/158311 2025-07-17T06:36:51.0143090Z * [new tag] ciflow/inductor/158312 -> ciflow/inductor/158312 2025-07-17T06:36:51.0143521Z * [new tag] ciflow/inductor/158318 -> ciflow/inductor/158318 2025-07-17T06:36:51.0143956Z * [new tag] ciflow/inductor/158321 -> ciflow/inductor/158321 2025-07-17T06:36:51.0144379Z * [new tag] ciflow/inductor/158338 -> ciflow/inductor/158338 2025-07-17T06:36:51.0145033Z * [new tag] ciflow/inductor/158349 -> ciflow/inductor/158349 2025-07-17T06:36:51.0145467Z * [new tag] ciflow/inductor/158350 -> ciflow/inductor/158350 2025-07-17T06:36:51.0145906Z * [new tag] ciflow/inductor/158351 -> ciflow/inductor/158351 2025-07-17T06:36:51.0146333Z * [new tag] ciflow/inductor/158360 -> ciflow/inductor/158360 2025-07-17T06:36:51.0146765Z * [new tag] ciflow/inductor/158361 -> ciflow/inductor/158361 2025-07-17T06:36:51.0147206Z * [new tag] ciflow/inductor/158363 -> ciflow/inductor/158363 2025-07-17T06:36:51.0147631Z * [new tag] ciflow/inductor/158368 -> ciflow/inductor/158368 2025-07-17T06:36:51.0148079Z * [new tag] ciflow/inductor/158377 -> ciflow/inductor/158377 2025-07-17T06:36:51.0148504Z * [new tag] ciflow/inductor/158379 -> ciflow/inductor/158379 2025-07-17T06:36:51.0148936Z * [new tag] ciflow/inductor/158381 -> ciflow/inductor/158381 2025-07-17T06:36:51.0149500Z * [new tag] ciflow/inductor/158391 -> ciflow/inductor/158391 2025-07-17T06:36:51.0149927Z * [new tag] ciflow/inductor/158394 -> ciflow/inductor/158394 2025-07-17T06:36:51.0150360Z * [new tag] ciflow/inductor/158397 -> ciflow/inductor/158397 2025-07-17T06:36:51.0150785Z * [new tag] ciflow/inductor/158400 -> ciflow/inductor/158400 2025-07-17T06:36:51.0151232Z * [new tag] ciflow/inductor/158404 -> ciflow/inductor/158404 2025-07-17T06:36:51.0151658Z * [new tag] ciflow/inductor/158406 -> ciflow/inductor/158406 2025-07-17T06:36:51.0152107Z * [new tag] ciflow/inductor/158410 -> ciflow/inductor/158410 2025-07-17T06:36:51.0152545Z * [new tag] ciflow/inductor/158418 -> ciflow/inductor/158418 2025-07-17T06:36:51.0153019Z * [new tag] ciflow/inductor/158424 -> ciflow/inductor/158424 2025-07-17T06:36:51.0153510Z * [new tag] ciflow/inductor/158426 -> ciflow/inductor/158426 2025-07-17T06:36:51.0153986Z * [new tag] ciflow/inductor/158427 -> ciflow/inductor/158427 2025-07-17T06:36:51.0154427Z * [new tag] ciflow/inductor/158430 -> ciflow/inductor/158430 2025-07-17T06:36:51.0154866Z * [new tag] ciflow/inductor/158435 -> ciflow/inductor/158435 2025-07-17T06:36:51.0155386Z * [new tag] ciflow/inductor/158442 -> ciflow/inductor/158442 2025-07-17T06:36:51.0155829Z * [new tag] ciflow/inductor/158449 -> ciflow/inductor/158449 2025-07-17T06:36:51.0156254Z * [new tag] ciflow/inductor/158456 -> ciflow/inductor/158456 2025-07-17T06:36:51.0156686Z * [new tag] ciflow/inductor/158458 -> ciflow/inductor/158458 2025-07-17T06:36:51.0157123Z * [new tag] ciflow/inductor/158459 -> ciflow/inductor/158459 2025-07-17T06:36:51.0157562Z * [new tag] ciflow/inductor/158460 -> ciflow/inductor/158460 2025-07-17T06:36:51.0157997Z * [new tag] ciflow/inductor/158462 -> ciflow/inductor/158462 2025-07-17T06:36:51.0158426Z * [new tag] ciflow/inductor/158467 -> ciflow/inductor/158467 2025-07-17T06:36:51.0158866Z * [new tag] ciflow/inductor/158468 -> ciflow/inductor/158468 2025-07-17T06:36:51.1511516Z * [new tag] ciflow/inductor/158476 -> ciflow/inductor/158476 2025-07-17T06:36:51.1512016Z * [new tag] ciflow/inductor/158479 -> ciflow/inductor/158479 2025-07-17T06:36:51.1512469Z * [new tag] ciflow/inductor/158480 -> ciflow/inductor/158480 2025-07-17T06:36:51.1512923Z * [new tag] ciflow/inductor/158485 -> ciflow/inductor/158485 2025-07-17T06:36:51.1513364Z * [new tag] ciflow/inductor/158490 -> ciflow/inductor/158490 2025-07-17T06:36:51.1514137Z * [new tag] ciflow/inductor/158492 -> ciflow/inductor/158492 2025-07-17T06:36:51.1514565Z * [new tag] ciflow/inductor/158494 -> ciflow/inductor/158494 2025-07-17T06:36:51.1515000Z * [new tag] ciflow/inductor/158495 -> ciflow/inductor/158495 2025-07-17T06:36:51.1515505Z * [new tag] ciflow/inductor/158498 -> ciflow/inductor/158498 2025-07-17T06:36:51.1515933Z * [new tag] ciflow/inductor/158499 -> ciflow/inductor/158499 2025-07-17T06:36:51.1516364Z * [new tag] ciflow/inductor/158500 -> ciflow/inductor/158500 2025-07-17T06:36:51.1516788Z * [new tag] ciflow/inductor/158501 -> ciflow/inductor/158501 2025-07-17T06:36:51.1517221Z * [new tag] ciflow/inductor/158504 -> ciflow/inductor/158504 2025-07-17T06:36:51.1517656Z * [new tag] ciflow/inductor/158509 -> ciflow/inductor/158509 2025-07-17T06:36:51.1518223Z * [new tag] ciflow/inductor/158520 -> ciflow/inductor/158520 2025-07-17T06:36:51.1518669Z * [new tag] ciflow/inductor/158524 -> ciflow/inductor/158524 2025-07-17T06:36:51.1519098Z * [new tag] ciflow/inductor/158525 -> ciflow/inductor/158525 2025-07-17T06:36:51.1519582Z * [new tag] ciflow/inductor/158526 -> ciflow/inductor/158526 2025-07-17T06:36:51.1520059Z * [new tag] ciflow/inductor/158528 -> ciflow/inductor/158528 2025-07-17T06:36:51.1520502Z * [new tag] ciflow/inductor/158534 -> ciflow/inductor/158534 2025-07-17T06:36:51.1520938Z * [new tag] ciflow/inductor/158535 -> ciflow/inductor/158535 2025-07-17T06:36:51.1521380Z * [new tag] ciflow/inductor/158537 -> ciflow/inductor/158537 2025-07-17T06:36:51.1521821Z * [new tag] ciflow/inductor/158538 -> ciflow/inductor/158538 2025-07-17T06:36:51.1522269Z * [new tag] ciflow/inductor/3b9a386 -> ciflow/inductor/3b9a386 2025-07-17T06:36:51.1522722Z * [new tag] ciflow/inductor/3d4b92b -> ciflow/inductor/3d4b92b 2025-07-17T06:36:51.1523169Z * [new tag] ciflow/inductor/d224ac7 -> ciflow/inductor/d224ac7 2025-07-17T06:36:51.1523631Z * [new tag] ciflow/linux-aarch64/157520 -> ciflow/linux-aarch64/157520 2025-07-17T06:36:51.1524110Z * [new tag] ciflow/linux-aarch64/157782 -> ciflow/linux-aarch64/157782 2025-07-17T06:36:51.1524583Z * [new tag] ciflow/linux-aarch64/157994 -> ciflow/linux-aarch64/157994 2025-07-17T06:36:51.1525059Z * [new tag] ciflow/linux-aarch64/158445 -> ciflow/linux-aarch64/158445 2025-07-17T06:36:51.1525544Z * [new tag] ciflow/mps/155200 -> ciflow/mps/155200 2025-07-17T06:36:51.1525978Z * [new tag] ciflow/mps/157553 -> ciflow/mps/157553 2025-07-17T06:36:51.1526386Z * [new tag] ciflow/mps/157875 -> ciflow/mps/157875 2025-07-17T06:36:51.1526777Z * [new tag] ciflow/mps/157876 -> ciflow/mps/157876 2025-07-17T06:36:51.1527172Z * [new tag] ciflow/mps/158237 -> ciflow/mps/158237 2025-07-17T06:36:51.1527563Z * [new tag] ciflow/mps/158349 -> ciflow/mps/158349 2025-07-17T06:36:51.1527947Z * [new tag] ciflow/mps/158350 -> ciflow/mps/158350 2025-07-17T06:36:51.1528336Z * [new tag] ciflow/mps/158351 -> ciflow/mps/158351 2025-07-17T06:36:51.1528826Z * [new tag] ciflow/periodic-rocm-mi300/156192 -> ciflow/periodic-rocm-mi300/156192 2025-07-17T06:36:51.1529418Z * [new tag] ciflow/periodic-rocm-mi300/157191 -> ciflow/periodic-rocm-mi300/157191 2025-07-17T06:36:51.1529992Z * [new tag] ciflow/periodic-rocm-mi300/158102 -> ciflow/periodic-rocm-mi300/158102 2025-07-17T06:36:51.1530695Z * [new tag] ciflow/periodic-rocm-mi300/158103 -> ciflow/periodic-rocm-mi300/158103 2025-07-17T06:36:51.1531260Z * [new tag] ciflow/periodic/054a2fd -> ciflow/periodic/054a2fd 2025-07-17T06:36:51.1531749Z * [new tag] ciflow/periodic/143959 -> ciflow/periodic/143959 2025-07-17T06:36:51.1532202Z * [new tag] ciflow/periodic/156559 -> ciflow/periodic/156559 2025-07-17T06:36:51.1532637Z * [new tag] ciflow/periodic/156900 -> ciflow/periodic/156900 2025-07-17T06:36:51.1533078Z * [new tag] ciflow/periodic/157748 -> ciflow/periodic/157748 2025-07-17T06:36:51.1533517Z * [new tag] ciflow/periodic/157939 -> ciflow/periodic/157939 2025-07-17T06:36:51.1944559Z * [new tag] ciflow/periodic/158145 -> ciflow/periodic/158145 2025-07-17T06:36:51.1945112Z * [new tag] ciflow/periodic/2a6d37d -> ciflow/periodic/2a6d37d 2025-07-17T06:36:51.1945852Z * [new tag] ciflow/periodic/317eeb8 -> ciflow/periodic/317eeb8 2025-07-17T06:36:51.1946328Z * [new tag] ciflow/periodic/3c32 -> ciflow/periodic/3c32 2025-07-17T06:36:51.1946783Z * [new tag] ciflow/periodic/3e98831 -> ciflow/periodic/3e98831 2025-07-17T06:36:51.1947246Z * [new tag] ciflow/periodic/94512-point -> ciflow/periodic/94512-point 2025-07-17T06:36:51.1947769Z * [new tag] ciflow/periodic/csl/test87519 -> ciflow/periodic/csl/test87519 2025-07-17T06:36:51.1948291Z * [new tag] ciflow/periodic/csltest88275 -> ciflow/periodic/csltest88275 2025-07-17T06:36:51.1948805Z * [new tag] ciflow/periodic/csltest88761 -> ciflow/periodic/csltest88761 2025-07-17T06:36:51.1949311Z * [new tag] ciflow/periodic/release_1.12 -> ciflow/periodic/release_1.12 2025-07-17T06:36:51.1949873Z * [new tag] ciflow/periodic/release_1.12.0 -> ciflow/periodic/release_1.12.0 2025-07-17T06:36:51.1950437Z * [new tag] ciflow/periodic/sha-ec5b83 -> ciflow/periodic/sha-ec5b83 2025-07-17T06:36:51.1950897Z * [new tag] ciflow/rocm-mi300/156192 -> ciflow/rocm-mi300/156192 2025-07-17T06:36:51.1951345Z * [new tag] ciflow/rocm-mi300/157191 -> ciflow/rocm-mi300/157191 2025-07-17T06:36:51.1951781Z * [new tag] ciflow/rocm-mi300/157520 -> ciflow/rocm-mi300/157520 2025-07-17T06:36:51.1952208Z * [new tag] ciflow/rocm-mi300/158102 -> ciflow/rocm-mi300/158102 2025-07-17T06:36:51.1952646Z * [new tag] ciflow/rocm-mi300/158103 -> ciflow/rocm-mi300/158103 2025-07-17T06:36:51.1953074Z * [new tag] ciflow/rocm-mi300/158221 -> ciflow/rocm-mi300/158221 2025-07-17T06:36:51.1953507Z * [new tag] ciflow/rocm-mi300/158459 -> ciflow/rocm-mi300/158459 2025-07-17T06:36:51.1953931Z * [new tag] ciflow/rocm/148492 -> ciflow/rocm/148492 2025-07-17T06:36:51.1954328Z * [new tag] ciflow/rocm/149601 -> ciflow/rocm/149601 2025-07-17T06:36:51.1954719Z * [new tag] ciflow/rocm/150312 -> ciflow/rocm/150312 2025-07-17T06:36:51.1955170Z * [new tag] ciflow/rocm/151845 -> ciflow/rocm/151845 2025-07-17T06:36:51.1955610Z * [new tag] ciflow/rocm/155200 -> ciflow/rocm/155200 2025-07-17T06:36:51.1956011Z * [new tag] ciflow/rocm/155877 -> ciflow/rocm/155877 2025-07-17T06:36:51.1956433Z * [new tag] ciflow/rocm/156165 -> ciflow/rocm/156165 2025-07-17T06:36:51.1956833Z * [new tag] ciflow/rocm/156192 -> ciflow/rocm/156192 2025-07-17T06:36:51.1957238Z * [new tag] ciflow/rocm/156592 -> ciflow/rocm/156592 2025-07-17T06:36:51.1958352Z * [new tag] ciflow/rocm/157520 -> ciflow/rocm/157520 2025-07-17T06:36:51.1958755Z * [new tag] ciflow/rocm/157964 -> ciflow/rocm/157964 2025-07-17T06:36:51.1959170Z * [new tag] ciflow/rocm/158037 -> ciflow/rocm/158037 2025-07-17T06:36:51.1959574Z * [new tag] ciflow/rocm/158074 -> ciflow/rocm/158074 2025-07-17T06:36:51.1959972Z * [new tag] ciflow/rocm/158219 -> ciflow/rocm/158219 2025-07-17T06:36:51.1960374Z * [new tag] ciflow/rocm/158220 -> ciflow/rocm/158220 2025-07-17T06:36:51.1960763Z * [new tag] ciflow/rocm/158224 -> ciflow/rocm/158224 2025-07-17T06:36:51.1961165Z * [new tag] ciflow/rocm/158271 -> ciflow/rocm/158271 2025-07-17T06:36:51.1961603Z * [new tag] ciflow/rocm/158408 -> ciflow/rocm/158408 2025-07-17T06:36:51.1962030Z * [new tag] ciflow/rocm/158459 -> ciflow/rocm/158459 2025-07-17T06:36:51.1962544Z * [new tag] ciflow/s390/143959 -> ciflow/s390/143959 2025-07-17T06:36:51.1962933Z * [new tag] ciflow/s390/151447 -> ciflow/s390/151447 2025-07-17T06:36:51.1963340Z * [new tag] ciflow/slow/01c7106 -> ciflow/slow/01c7106 2025-07-17T06:36:51.1963749Z * [new tag] ciflow/slow/0577043 -> ciflow/slow/0577043 2025-07-17T06:36:51.1964514Z * [new tag] ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym -> ciflow/slow/0d5b74da0cab798fbfdb9caa53fad816999c8386-sdym 2025-07-17T06:36:51.1965252Z * [new tag] ciflow/slow/0e81104 -> ciflow/slow/0e81104 2025-07-17T06:36:51.1965658Z * [new tag] ciflow/slow/157385 -> ciflow/slow/157385 2025-07-17T06:36:51.1966057Z * [new tag] ciflow/slow/157748 -> ciflow/slow/157748 2025-07-17T06:36:51.1966453Z * [new tag] ciflow/slow/158222 -> ciflow/slow/158222 2025-07-17T06:36:51.1966853Z * [new tag] ciflow/slow/158312 -> ciflow/slow/158312 2025-07-17T06:36:51.1967288Z * [new tag] ciflow/slow/158424 -> ciflow/slow/158424 2025-07-17T06:36:51.1967689Z * [new tag] ciflow/slow/1732077 -> ciflow/slow/1732077 2025-07-17T06:36:51.2287377Z * [new tag] ciflow/slow/187eb7c -> ciflow/slow/187eb7c 2025-07-17T06:36:51.2287841Z * [new tag] ciflow/slow/1faef89 -> ciflow/slow/1faef89 2025-07-17T06:36:51.2288275Z * [new tag] ciflow/slow/3920ec1 -> ciflow/slow/3920ec1 2025-07-17T06:36:51.2288689Z * [new tag] ciflow/slow/3b7c6b2 -> ciflow/slow/3b7c6b2 2025-07-17T06:36:51.2289089Z * [new tag] ciflow/slow/59a3759 -> ciflow/slow/59a3759 2025-07-17T06:36:51.2289498Z * [new tag] ciflow/slow/70ef0bb -> ciflow/slow/70ef0bb 2025-07-17T06:36:51.2289939Z * [new tag] ciflow/slow/788ff06 -> ciflow/slow/788ff06 2025-07-17T06:36:51.2290644Z * [new tag] ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym -> ciflow/slow/8751002215790a3a88750faa8f4366933e296693-sdym 2025-07-17T06:36:51.2291355Z * [new tag] ciflow/slow/9d85864 -> ciflow/slow/9d85864 2025-07-17T06:36:51.2291762Z * [new tag] ciflow/slow/9ffad5b -> ciflow/slow/9ffad5b 2025-07-17T06:36:51.2292173Z * [new tag] ciflow/slow/a206e8b -> ciflow/slow/a206e8b 2025-07-17T06:36:51.2292576Z * [new tag] ciflow/slow/a837609 -> ciflow/slow/a837609 2025-07-17T06:36:51.2292987Z * [new tag] ciflow/slow/af841f3 -> ciflow/slow/af841f3 2025-07-17T06:36:51.2293726Z * [new tag] ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym -> ciflow/slow/da3aba1e46157c4df504b067477cdf2b3c96b194-sdym 2025-07-17T06:36:51.2294684Z * [new tag] ciflow/triton_binaries/158408 -> ciflow/triton_binaries/158408 2025-07-17T06:36:51.2295206Z * [new tag] ciflow/triton_binaries/158459 -> ciflow/triton_binaries/158459 2025-07-17T06:36:51.2295663Z * [new tag] ciflow/trunk/113258 -> ciflow/trunk/113258 2025-07-17T06:36:51.2296084Z * [new tag] ciflow/trunk/137400 -> ciflow/trunk/137400 2025-07-17T06:36:51.2296501Z * [new tag] ciflow/trunk/139971 -> ciflow/trunk/139971 2025-07-17T06:36:51.2296900Z * [new tag] ciflow/trunk/143712 -> ciflow/trunk/143712 2025-07-17T06:36:51.2297305Z * [new tag] ciflow/trunk/144557 -> ciflow/trunk/144557 2025-07-17T06:36:51.2297710Z * [new tag] ciflow/trunk/147470 -> ciflow/trunk/147470 2025-07-17T06:36:51.2298111Z * [new tag] ciflow/trunk/148180 -> ciflow/trunk/148180 2025-07-17T06:36:51.2298524Z * [new tag] ciflow/trunk/148328 -> ciflow/trunk/148328 2025-07-17T06:36:51.2299033Z * [new tag] ciflow/trunk/148492 -> ciflow/trunk/148492 2025-07-17T06:36:51.2299447Z * [new tag] ciflow/trunk/149003 -> ciflow/trunk/149003 2025-07-17T06:36:51.2299844Z * [new tag] ciflow/trunk/149601 -> ciflow/trunk/149601 2025-07-17T06:36:51.2300266Z * [new tag] ciflow/trunk/149961 -> ciflow/trunk/149961 2025-07-17T06:36:51.2300668Z * [new tag] ciflow/trunk/150312 -> ciflow/trunk/150312 2025-07-17T06:36:51.2301081Z * [new tag] ciflow/trunk/150691 -> ciflow/trunk/150691 2025-07-17T06:36:51.2301492Z * [new tag] ciflow/trunk/150762 -> ciflow/trunk/150762 2025-07-17T06:36:51.2301889Z * [new tag] ciflow/trunk/151777 -> ciflow/trunk/151777 2025-07-17T06:36:51.2302301Z * [new tag] ciflow/trunk/151845 -> ciflow/trunk/151845 2025-07-17T06:36:51.2302699Z * [new tag] ciflow/trunk/152624 -> ciflow/trunk/152624 2025-07-17T06:36:51.2303102Z * [new tag] ciflow/trunk/153666 -> ciflow/trunk/153666 2025-07-17T06:36:51.2303523Z * [new tag] ciflow/trunk/154149 -> ciflow/trunk/154149 2025-07-17T06:36:51.2303918Z * [new tag] ciflow/trunk/154199 -> ciflow/trunk/154199 2025-07-17T06:36:51.2304332Z * [new tag] ciflow/trunk/154694 -> ciflow/trunk/154694 2025-07-17T06:36:51.2304738Z * [new tag] ciflow/trunk/154983 -> ciflow/trunk/154983 2025-07-17T06:36:51.2305134Z * [new tag] ciflow/trunk/155489 -> ciflow/trunk/155489 2025-07-17T06:36:51.2305535Z * [new tag] ciflow/trunk/155958 -> ciflow/trunk/155958 2025-07-17T06:36:51.2305927Z * [new tag] ciflow/trunk/156049 -> ciflow/trunk/156049 2025-07-17T06:36:51.2306347Z * [new tag] ciflow/trunk/156097 -> ciflow/trunk/156097 2025-07-17T06:36:51.2306749Z * [new tag] ciflow/trunk/156141 -> ciflow/trunk/156141 2025-07-17T06:36:51.2307228Z * [new tag] ciflow/trunk/156165 -> ciflow/trunk/156165 2025-07-17T06:36:51.2307690Z * [new tag] ciflow/trunk/156175 -> ciflow/trunk/156175 2025-07-17T06:36:51.2308087Z * [new tag] ciflow/trunk/156192 -> ciflow/trunk/156192 2025-07-17T06:36:51.2308489Z * [new tag] ciflow/trunk/156296 -> ciflow/trunk/156296 2025-07-17T06:36:51.2308889Z * [new tag] ciflow/trunk/156370 -> ciflow/trunk/156370 2025-07-17T06:36:51.3151423Z * [new tag] ciflow/trunk/156559 -> ciflow/trunk/156559 2025-07-17T06:36:51.3152231Z * [new tag] ciflow/trunk/156605 -> ciflow/trunk/156605 2025-07-17T06:36:51.3153263Z * [new tag] ciflow/trunk/156626 -> ciflow/trunk/156626 2025-07-17T06:36:51.3153831Z * [new tag] ciflow/trunk/156666 -> ciflow/trunk/156666 2025-07-17T06:36:51.3154242Z * [new tag] ciflow/trunk/156753 -> ciflow/trunk/156753 2025-07-17T06:36:51.3154640Z * [new tag] ciflow/trunk/156781 -> ciflow/trunk/156781 2025-07-17T06:36:51.3155223Z * [new tag] ciflow/trunk/156874 -> ciflow/trunk/156874 2025-07-17T06:36:51.3155623Z * [new tag] ciflow/trunk/157199 -> ciflow/trunk/157199 2025-07-17T06:36:51.3156026Z * [new tag] ciflow/trunk/157432 -> ciflow/trunk/157432 2025-07-17T06:36:51.3156433Z * [new tag] ciflow/trunk/157520 -> ciflow/trunk/157520 2025-07-17T06:36:51.3156826Z * [new tag] ciflow/trunk/157550 -> ciflow/trunk/157550 2025-07-17T06:36:51.3157246Z * [new tag] ciflow/trunk/157552 -> ciflow/trunk/157552 2025-07-17T06:36:51.3158332Z * [new tag] ciflow/trunk/157580 -> ciflow/trunk/157580 2025-07-17T06:36:51.3158756Z * [new tag] ciflow/trunk/157685 -> ciflow/trunk/157685 2025-07-17T06:36:51.3159161Z * [new tag] ciflow/trunk/157689 -> ciflow/trunk/157689 2025-07-17T06:36:51.3159569Z * [new tag] ciflow/trunk/157699 -> ciflow/trunk/157699 2025-07-17T06:36:51.3159977Z * [new tag] ciflow/trunk/157748 -> ciflow/trunk/157748 2025-07-17T06:36:51.3160382Z * [new tag] ciflow/trunk/157791 -> ciflow/trunk/157791 2025-07-17T06:36:51.3160788Z * [new tag] ciflow/trunk/157804 -> ciflow/trunk/157804 2025-07-17T06:36:51.3161183Z * [new tag] ciflow/trunk/157887 -> ciflow/trunk/157887 2025-07-17T06:36:51.3161595Z * [new tag] ciflow/trunk/157908 -> ciflow/trunk/157908 2025-07-17T06:36:51.3162010Z * [new tag] ciflow/trunk/157910 -> ciflow/trunk/157910 2025-07-17T06:36:51.3162414Z * [new tag] ciflow/trunk/157935 -> ciflow/trunk/157935 2025-07-17T06:36:51.3162820Z * [new tag] ciflow/trunk/157963 -> ciflow/trunk/157963 2025-07-17T06:36:51.3163215Z * [new tag] ciflow/trunk/157994 -> ciflow/trunk/157994 2025-07-17T06:36:51.3163615Z * [new tag] ciflow/trunk/158015 -> ciflow/trunk/158015 2025-07-17T06:36:51.3164009Z * [new tag] ciflow/trunk/158037 -> ciflow/trunk/158037 2025-07-17T06:36:51.3164413Z * [new tag] ciflow/trunk/158062 -> ciflow/trunk/158062 2025-07-17T06:36:51.3164816Z * [new tag] ciflow/trunk/158072 -> ciflow/trunk/158072 2025-07-17T06:36:51.3165214Z * [new tag] ciflow/trunk/158091 -> ciflow/trunk/158091 2025-07-17T06:36:51.3165628Z * [new tag] ciflow/trunk/158104 -> ciflow/trunk/158104 2025-07-17T06:36:51.3166021Z * [new tag] ciflow/trunk/158119 -> ciflow/trunk/158119 2025-07-17T06:36:51.3166418Z * [new tag] ciflow/trunk/158148 -> ciflow/trunk/158148 2025-07-17T06:36:51.3166821Z * [new tag] ciflow/trunk/158185 -> ciflow/trunk/158185 2025-07-17T06:36:51.3167216Z * [new tag] ciflow/trunk/158203 -> ciflow/trunk/158203 2025-07-17T06:36:51.3167620Z * [new tag] ciflow/trunk/158219 -> ciflow/trunk/158219 2025-07-17T06:36:51.3168017Z * [new tag] ciflow/trunk/158220 -> ciflow/trunk/158220 2025-07-17T06:36:51.3168417Z * [new tag] ciflow/trunk/158222 -> ciflow/trunk/158222 2025-07-17T06:36:51.3168824Z * [new tag] ciflow/trunk/158223 -> ciflow/trunk/158223 2025-07-17T06:36:51.3169335Z * [new tag] ciflow/trunk/158224 -> ciflow/trunk/158224 2025-07-17T06:36:51.3169746Z * [new tag] ciflow/trunk/158229 -> ciflow/trunk/158229 2025-07-17T06:36:51.3170143Z * [new tag] ciflow/trunk/158249 -> ciflow/trunk/158249 2025-07-17T06:36:51.3170561Z * [new tag] ciflow/trunk/158259 -> ciflow/trunk/158259 2025-07-17T06:36:51.3170954Z * [new tag] ciflow/trunk/158289 -> ciflow/trunk/158289 2025-07-17T06:36:51.3171351Z * [new tag] ciflow/trunk/158312 -> ciflow/trunk/158312 2025-07-17T06:36:51.3171749Z * [new tag] ciflow/trunk/158323 -> ciflow/trunk/158323 2025-07-17T06:36:51.3172140Z * [new tag] ciflow/trunk/158356 -> ciflow/trunk/158356 2025-07-17T06:36:51.3172543Z * [new tag] ciflow/trunk/158363 -> ciflow/trunk/158363 2025-07-17T06:36:51.3172946Z * [new tag] ciflow/trunk/158368 -> ciflow/trunk/158368 2025-07-17T06:36:51.3173442Z * [new tag] ciflow/trunk/158373 -> ciflow/trunk/158373 2025-07-17T06:36:51.3173852Z * [new tag] ciflow/trunk/158377 -> ciflow/trunk/158377 2025-07-17T06:36:51.3742762Z * [new tag] ciflow/trunk/158380 -> ciflow/trunk/158380 2025-07-17T06:36:51.3743244Z * [new tag] ciflow/trunk/158400 -> ciflow/trunk/158400 2025-07-17T06:36:51.3743687Z * [new tag] ciflow/trunk/158416 -> ciflow/trunk/158416 2025-07-17T06:36:51.3744099Z * [new tag] ciflow/trunk/158418 -> ciflow/trunk/158418 2025-07-17T06:36:51.3744509Z * [new tag] ciflow/trunk/158424 -> ciflow/trunk/158424 2025-07-17T06:36:51.3744911Z * [new tag] ciflow/trunk/158430 -> ciflow/trunk/158430 2025-07-17T06:36:51.3745320Z * [new tag] ciflow/trunk/158442 -> ciflow/trunk/158442 2025-07-17T06:36:51.3745764Z * [new tag] ciflow/trunk/158453 -> ciflow/trunk/158453 2025-07-17T06:36:51.3746172Z * [new tag] ciflow/trunk/158458 -> ciflow/trunk/158458 2025-07-17T06:36:51.3746580Z * [new tag] ciflow/trunk/158459 -> ciflow/trunk/158459 2025-07-17T06:36:51.3747044Z * [new tag] ciflow/trunk/158473 -> ciflow/trunk/158473 2025-07-17T06:36:51.3747500Z * [new tag] ciflow/trunk/158479 -> ciflow/trunk/158479 2025-07-17T06:36:51.3747902Z * [new tag] ciflow/trunk/158485 -> ciflow/trunk/158485 2025-07-17T06:36:51.3748313Z * [new tag] ciflow/trunk/158489 -> ciflow/trunk/158489 2025-07-17T06:36:51.3748715Z * [new tag] ciflow/trunk/158492 -> ciflow/trunk/158492 2025-07-17T06:36:51.3749123Z * [new tag] ciflow/trunk/158524 -> ciflow/trunk/158524 2025-07-17T06:36:51.3749531Z * [new tag] ciflow/trunk/158532 -> ciflow/trunk/158532 2025-07-17T06:36:51.3749937Z * [new tag] ciflow/unstable/123 -> ciflow/unstable/123 2025-07-17T06:36:51.3750366Z * [new tag] ciflow/win-arm64/157935 -> ciflow/win-arm64/157935 2025-07-17T06:36:51.3750785Z * [new tag] ciflow/xpu/139971 -> ciflow/xpu/139971 2025-07-17T06:36:51.3751185Z * [new tag] ciflow/xpu/150218 -> ciflow/xpu/150218 2025-07-17T06:36:51.3751591Z * [new tag] ciflow/xpu/155200 -> ciflow/xpu/155200 2025-07-17T06:36:51.3751983Z * [new tag] ciflow/xpu/156812 -> ciflow/xpu/156812 2025-07-17T06:36:51.3752382Z * [new tag] ciflow/xpu/157699 -> ciflow/xpu/157699 2025-07-17T06:36:51.3752817Z * [new tag] ciflow/xpu/157954 -> ciflow/xpu/157954 2025-07-17T06:36:51.3753432Z * [new tag] ciflow/xpu/158336 -> ciflow/xpu/158336 2025-07-17T06:36:51.3753844Z * [new tag] ciflow/xpu/158337 -> ciflow/xpu/158337 2025-07-17T06:36:51.3754251Z * [new tag] ciflow/xpu/158340 -> ciflow/xpu/158340 2025-07-17T06:36:51.3754665Z * [new tag] ciflow/xpu/158533 -> ciflow/xpu/158533 2025-07-17T06:36:51.3755162Z * [new tag] ciflow/xpu/158542 -> ciflow/xpu/158542 2025-07-17T06:36:51.3755554Z * [new tag] cslpull75 -> cslpull75 2025-07-17T06:36:51.3755927Z * [new tag] cslpull76 -> cslpull76 2025-07-17T06:36:51.3756294Z * [new tag] cslpull77 -> cslpull77 2025-07-17T06:36:51.3756655Z * [new tag] cslpull78 -> cslpull78 2025-07-17T06:36:51.3757005Z * [new tag] cslpull79 -> cslpull79 2025-07-17T06:36:51.3757370Z * [new tag] cslpull80 -> cslpull80 2025-07-17T06:36:51.3757850Z * [new tag] cslpull81 -> cslpull81 2025-07-17T06:36:51.3758214Z * [new tag] cslpull82 -> cslpull82 2025-07-17T06:36:51.3758564Z * [new tag] cslpull83 -> cslpull83 2025-07-17T06:36:51.3758922Z * [new tag] cslpull84 -> cslpull84 2025-07-17T06:36:51.3759277Z * [new tag] cslpull85 -> cslpull85 2025-07-17T06:36:51.3759628Z * [new tag] cslpull86 -> cslpull86 2025-07-17T06:36:51.3759988Z * [new tag] cslpull87 -> cslpull87 2025-07-17T06:36:51.3760336Z * [new tag] cslpull88 -> cslpull88 2025-07-17T06:36:51.3760691Z * [new tag] cslpull89 -> cslpull89 2025-07-17T06:36:51.3761038Z * [new tag] cslpull90 -> cslpull90 2025-07-17T06:36:51.3761407Z * [new tag] cslpull91 -> cslpull91 2025-07-17T06:36:51.3761767Z * [new tag] cslpull92 -> cslpull92 2025-07-17T06:36:51.3762118Z * [new tag] flight_5 -> flight_5 2025-07-17T06:36:51.3762476Z * [new tag] flight_5.1 -> flight_5.1 2025-07-17T06:36:51.3762828Z * [new tag] flight_5.2 -> flight_5.2 2025-07-17T06:36:51.3763189Z * [new tag] flight_5.3 -> flight_5.3 2025-07-17T06:36:51.3763544Z * [new tag] forpull1 -> forpull1 2025-07-17T06:36:51.3763921Z * [new tag] malfet/tag-2ef5611 -> malfet/tag-2ef5611 2025-07-17T06:36:51.4545533Z * [new tag] malfet/tag-317b1a0 -> malfet/tag-317b1a0 2025-07-17T06:36:51.4546028Z * [new tag] malfet/tag-ec6f767 -> malfet/tag-ec6f767 2025-07-17T06:36:51.4546481Z * [new tag] nightly-binary -> nightly-binary 2025-07-17T06:36:51.4546903Z * [new tag] sqzhang_flight4_plus -> sqzhang_flight4_plus 2025-07-17T06:36:51.4547363Z * [new tag] sqzhang_flight_3 -> sqzhang_flight_3 2025-07-17T06:36:51.4548006Z * [new tag] trunk/0083032e7559dc8f02483ba60373adfcdaf9dae6 -> trunk/0083032e7559dc8f02483ba60373adfcdaf9dae6 2025-07-17T06:36:51.4548806Z * [new tag] trunk/008345be9d0c32f67459bcf3e6705be43d496f74 -> trunk/008345be9d0c32f67459bcf3e6705be43d496f74 2025-07-17T06:36:51.4549611Z * [new tag] trunk/00ae620b9f72cc751672c2fd92a04fc86704a87a -> trunk/00ae620b9f72cc751672c2fd92a04fc86704a87a 2025-07-17T06:36:51.4550424Z * [new tag] trunk/0105cd89ab508ec56126c1de85c8f5b5acc446b5 -> trunk/0105cd89ab508ec56126c1de85c8f5b5acc446b5 2025-07-17T06:36:51.4551406Z * [new tag] trunk/011026205a9d4c38458130f8ca242028f6184bf0 -> trunk/011026205a9d4c38458130f8ca242028f6184bf0 2025-07-17T06:36:51.4552223Z * [new tag] trunk/013cf1e3302d27de36588cf7a7130d76a5686bad -> trunk/013cf1e3302d27de36588cf7a7130d76a5686bad 2025-07-17T06:36:51.4553061Z * [new tag] trunk/013dfeabb405274546f19637c04f8a5f75923316 -> trunk/013dfeabb405274546f19637c04f8a5f75923316 2025-07-17T06:36:51.4553904Z * [new tag] trunk/018e9826a2ed09cfcf7424e0b3215bef5ad6499e -> trunk/018e9826a2ed09cfcf7424e0b3215bef5ad6499e 2025-07-17T06:36:51.4554748Z * [new tag] trunk/019e30e3b80d091d64253df4cdd149713e3e910e -> trunk/019e30e3b80d091d64253df4cdd149713e3e910e 2025-07-17T06:36:51.4555665Z * [new tag] trunk/01b0f09931d47bd2716398a0c335b2807dc3074d -> trunk/01b0f09931d47bd2716398a0c335b2807dc3074d 2025-07-17T06:36:51.4556508Z * [new tag] trunk/01b8f5e685fdb34aa50b73a84a55fc285e6b904a -> trunk/01b8f5e685fdb34aa50b73a84a55fc285e6b904a 2025-07-17T06:36:51.4557456Z * [new tag] trunk/02080c2cd94b37ad92e3d8803bc773f6abd2ae2f -> trunk/02080c2cd94b37ad92e3d8803bc773f6abd2ae2f 2025-07-17T06:36:51.4558261Z * [new tag] trunk/020da744370f6ee23e377357e9acc330b5610a67 -> trunk/020da744370f6ee23e377357e9acc330b5610a67 2025-07-17T06:36:51.4559146Z * [new tag] trunk/023887fc5af5a7273d7eb0388fdf1f0e87eafb28 -> trunk/023887fc5af5a7273d7eb0388fdf1f0e87eafb28 2025-07-17T06:36:51.4559957Z * [new tag] trunk/02608e560a1d7b669ad450a89542f7e9ba068658 -> trunk/02608e560a1d7b669ad450a89542f7e9ba068658 2025-07-17T06:36:51.4560746Z * [new tag] trunk/02715d0876bc66f46b9c7b4f277bedf8e251cc82 -> trunk/02715d0876bc66f46b9c7b4f277bedf8e251cc82 2025-07-17T06:36:51.4561548Z * [new tag] trunk/02724b5f649b93ef7960962bdde7a667c0893d21 -> trunk/02724b5f649b93ef7960962bdde7a667c0893d21 2025-07-17T06:36:51.4562337Z * [new tag] trunk/029e2b05c225588098d3eba445fd04189691f77d -> trunk/029e2b05c225588098d3eba445fd04189691f77d 2025-07-17T06:36:51.4563177Z * [new tag] trunk/02a9d9095f397f56fe64ef07ced8e7ffed6dcba1 -> trunk/02a9d9095f397f56fe64ef07ced8e7ffed6dcba1 2025-07-17T06:36:51.4563993Z * [new tag] trunk/02c7ab2f9baac05bd199392b70bc016d55f99b13 -> trunk/02c7ab2f9baac05bd199392b70bc016d55f99b13 2025-07-17T06:36:51.4564856Z * [new tag] trunk/03023f178c611249d41c62369ba95fe54316fe90 -> trunk/03023f178c611249d41c62369ba95fe54316fe90 2025-07-17T06:36:51.4565648Z * [new tag] trunk/03488d820c292b8ec4bfd9a4e25d5f28068c9375 -> trunk/03488d820c292b8ec4bfd9a4e25d5f28068c9375 2025-07-17T06:36:51.4566445Z * [new tag] trunk/034a7f6437bec853a938dbc19b549b9319b67f69 -> trunk/034a7f6437bec853a938dbc19b549b9319b67f69 2025-07-17T06:36:51.4567271Z * [new tag] trunk/0364db7cd14ffa67b48ef8c27fefbb3eed2b065d -> trunk/0364db7cd14ffa67b48ef8c27fefbb3eed2b065d 2025-07-17T06:36:51.4568092Z * [new tag] trunk/03852ddc22350eb8b6ed6b61777639ce6080f3dc -> trunk/03852ddc22350eb8b6ed6b61777639ce6080f3dc 2025-07-17T06:36:51.4568897Z * [new tag] trunk/039a1ce0ebbeb0adacbf9537c4085d977dba150a -> trunk/039a1ce0ebbeb0adacbf9537c4085d977dba150a 2025-07-17T06:36:51.4569755Z * [new tag] trunk/03b307575a98dc1d953c9d3521a9489e0e61e70c -> trunk/03b307575a98dc1d953c9d3521a9489e0e61e70c 2025-07-17T06:36:51.4570616Z * [new tag] trunk/04178d347c6baec5613f8063a2c77cf6f9657ee2 -> trunk/04178d347c6baec5613f8063a2c77cf6f9657ee2 2025-07-17T06:36:51.4571424Z * [new tag] trunk/049dc48d1edf49c26d493fdb271fe5e5adc9c985 -> trunk/049dc48d1edf49c26d493fdb271fe5e5adc9c985 2025-07-17T06:36:51.5313784Z * [new tag] trunk/04b91a9e43518fcd34a474a832bac05d4583fcc3 -> trunk/04b91a9e43518fcd34a474a832bac05d4583fcc3 2025-07-17T06:36:51.5314647Z * [new tag] trunk/04bd7e6850e8efec77994963ffee87549555b9c3 -> trunk/04bd7e6850e8efec77994963ffee87549555b9c3 2025-07-17T06:36:51.5315838Z * [new tag] trunk/04cf2c9d24b7d9e7f7cdd4cf98c8bd0908c38110 -> trunk/04cf2c9d24b7d9e7f7cdd4cf98c8bd0908c38110 2025-07-17T06:36:51.5316668Z * [new tag] trunk/0504480f37714a289b2ba32c9cf32a5e50e86d38 -> trunk/0504480f37714a289b2ba32c9cf32a5e50e86d38 2025-07-17T06:36:51.5317453Z * [new tag] trunk/054cd4ca28d17507df46054fe355c697f6a07ce8 -> trunk/054cd4ca28d17507df46054fe355c697f6a07ce8 2025-07-17T06:36:51.5318276Z * [new tag] trunk/058fb1790f2c474cd4ecb5ec625eef896c554544 -> trunk/058fb1790f2c474cd4ecb5ec625eef896c554544 2025-07-17T06:36:51.5319081Z * [new tag] trunk/0596323c35d245099a4f4d3172b0efa20a639c84 -> trunk/0596323c35d245099a4f4d3172b0efa20a639c84 2025-07-17T06:36:51.5319860Z * [new tag] trunk/05d7288e316ae5c9c661c4529f9f130a46263e5b -> trunk/05d7288e316ae5c9c661c4529f9f130a46263e5b 2025-07-17T06:36:51.5320781Z * [new tag] trunk/05dd638ee98b36254c84095894c36fd0e7d95544 -> trunk/05dd638ee98b36254c84095894c36fd0e7d95544 2025-07-17T06:36:51.5321601Z * [new tag] trunk/05dfd312cfbfdecc6cb1e7d1d0bb4ee18370ae7e -> trunk/05dfd312cfbfdecc6cb1e7d1d0bb4ee18370ae7e 2025-07-17T06:36:51.5322470Z * [new tag] trunk/05faba40287cf7d8734da96cb2e904f39710bf29 -> trunk/05faba40287cf7d8734da96cb2e904f39710bf29 2025-07-17T06:36:51.5323273Z * [new tag] trunk/060838c2312ad207c7afe2c86f8a484afea5f328 -> trunk/060838c2312ad207c7afe2c86f8a484afea5f328 2025-07-17T06:36:51.5324057Z * [new tag] trunk/0629dfb860b00a10550d91dd395968f663f45fdd -> trunk/0629dfb860b00a10550d91dd395968f663f45fdd 2025-07-17T06:36:51.5324858Z * [new tag] trunk/06408dae49d06b6146fdd9d7a37eb5dde4f5e78d -> trunk/06408dae49d06b6146fdd9d7a37eb5dde4f5e78d 2025-07-17T06:36:51.5325670Z * [new tag] trunk/0640cfa38c1426a41ab4a0b3e3dab7c730cdc2ad -> trunk/0640cfa38c1426a41ab4a0b3e3dab7c730cdc2ad 2025-07-17T06:36:51.5326477Z * [new tag] trunk/064288cbab94c9931ca2296a2b9723e864f9050a -> trunk/064288cbab94c9931ca2296a2b9723e864f9050a 2025-07-17T06:36:51.5327286Z * [new tag] trunk/064a7db7fc3b06eb8e14d6c7d767f87fcf396ab6 -> trunk/064a7db7fc3b06eb8e14d6c7d767f87fcf396ab6 2025-07-17T06:36:51.5328100Z * [new tag] trunk/067fd0b3abd28f1b7dae883ffec5bc7459d35970 -> trunk/067fd0b3abd28f1b7dae883ffec5bc7459d35970 2025-07-17T06:36:51.5328948Z * [new tag] trunk/06930706a195144cd6172a5f2eb505cec56e9ec3 -> trunk/06930706a195144cd6172a5f2eb505cec56e9ec3 2025-07-17T06:36:51.5329746Z * [new tag] trunk/06a40b685056f60c4fbdc10d09a85b9fc3fca34f -> trunk/06a40b685056f60c4fbdc10d09a85b9fc3fca34f 2025-07-17T06:36:51.5330542Z * [new tag] trunk/06a67a8948dac9d02f22b3e2591a43b60981cdb4 -> trunk/06a67a8948dac9d02f22b3e2591a43b60981cdb4 2025-07-17T06:36:51.5331357Z * [new tag] trunk/06b3265cb1a27ea3090dc1fc86a6ce17518f989c -> trunk/06b3265cb1a27ea3090dc1fc86a6ce17518f989c 2025-07-17T06:36:51.5332169Z * [new tag] trunk/06f39a71b6cd14e0844b5eb1e0e085f7ae78d221 -> trunk/06f39a71b6cd14e0844b5eb1e0e085f7ae78d221 2025-07-17T06:36:51.5332964Z * [new tag] trunk/070aa59e491aa6987459cd1941ef647f2ad13858 -> trunk/070aa59e491aa6987459cd1941ef647f2ad13858 2025-07-17T06:36:51.5333761Z * [new tag] trunk/070e580d301efd626e327d1f88e0921b476d0f30 -> trunk/070e580d301efd626e327d1f88e0921b476d0f30 2025-07-17T06:36:51.5334550Z * [new tag] trunk/0756ebcd4890b19072e586fb2cbd2b25a80f91f4 -> trunk/0756ebcd4890b19072e586fb2cbd2b25a80f91f4 2025-07-17T06:36:51.5335393Z * [new tag] trunk/0797b2b6a80cf70a7accc3d5413186e7693d4451 -> trunk/0797b2b6a80cf70a7accc3d5413186e7693d4451 2025-07-17T06:36:51.5336192Z * [new tag] trunk/07bb097698223fe42d54b019638dd026c75f09a9 -> trunk/07bb097698223fe42d54b019638dd026c75f09a9 2025-07-17T06:36:51.5337096Z * [new tag] trunk/07da8a469bdd69966e1f832e3d09d991798f854c -> trunk/07da8a469bdd69966e1f832e3d09d991798f854c 2025-07-17T06:36:51.5337925Z * [new tag] trunk/07e340e29ccbe18ef59e8f60ec3f03ccc44e5e9c -> trunk/07e340e29ccbe18ef59e8f60ec3f03ccc44e5e9c 2025-07-17T06:36:51.5338751Z * [new tag] trunk/07eb374e7eefaa84a997d0adaaeecb4706d60e74 -> trunk/07eb374e7eefaa84a997d0adaaeecb4706d60e74 2025-07-17T06:36:51.5339565Z * [new tag] trunk/08274640028f68418d8f889d01af577b90ac2ec1 -> trunk/08274640028f68418d8f889d01af577b90ac2ec1 2025-07-17T06:36:51.5340352Z * [new tag] trunk/085f270a00b4452bbb005d6b3d448e9d0b9d6fa0 -> trunk/085f270a00b4452bbb005d6b3d448e9d0b9d6fa0 2025-07-17T06:36:52.3004729Z * [new tag] trunk/0860606729d16b9855157404da9b0d4654f3c626 -> trunk/0860606729d16b9855157404da9b0d4654f3c626 2025-07-17T06:36:52.3005595Z * [new tag] trunk/08799217aeb17128d89d675ce5b537761286417a -> trunk/08799217aeb17128d89d675ce5b537761286417a 2025-07-17T06:36:52.3006597Z * [new tag] trunk/08d15d3ec15b9b3fce81713cde20901806ecef42 -> trunk/08d15d3ec15b9b3fce81713cde20901806ecef42 2025-07-17T06:36:52.3007424Z * [new tag] trunk/08dae945ae380d80efbaf140a95abfc5d96e5100 -> trunk/08dae945ae380d80efbaf140a95abfc5d96e5100 2025-07-17T06:36:52.3008262Z * [new tag] trunk/08e9dd280f497fc820e35c458c843dc44f0282c6 -> trunk/08e9dd280f497fc820e35c458c843dc44f0282c6 2025-07-17T06:36:52.3009054Z * [new tag] trunk/092aed1b18c31042d7772a6f9ec1959df4bf5c3c -> trunk/092aed1b18c31042d7772a6f9ec1959df4bf5c3c 2025-07-17T06:36:52.3009858Z * [new tag] trunk/09328eb02f5412d2211b5fd638ce82d0e03b9c1f -> trunk/09328eb02f5412d2211b5fd638ce82d0e03b9c1f 2025-07-17T06:36:52.3010652Z * [new tag] trunk/0935a97d959918727700ae2c1ebeadc5b12a2b6c -> trunk/0935a97d959918727700ae2c1ebeadc5b12a2b6c 2025-07-17T06:36:52.3011462Z * [new tag] trunk/093aaccae254355b3637ef8760e762a3f9c3783c -> trunk/093aaccae254355b3637ef8760e762a3f9c3783c 2025-07-17T06:36:52.3012271Z * [new tag] trunk/093fd47dbef4f08691210de6c08cf269f28e4de5 -> trunk/093fd47dbef4f08691210de6c08cf269f28e4de5 2025-07-17T06:36:52.3013073Z * [new tag] trunk/099d0d6121125062ebc05771c8330cb7cd8d053a -> trunk/099d0d6121125062ebc05771c8330cb7cd8d053a 2025-07-17T06:36:52.3013881Z * [new tag] trunk/09ffba3cf79eeedf48a0fb39a26dcc0294872480 -> trunk/09ffba3cf79eeedf48a0fb39a26dcc0294872480 2025-07-17T06:36:52.3014687Z * [new tag] trunk/0a0023d9840570938a10472418eaac85098ec41b -> trunk/0a0023d9840570938a10472418eaac85098ec41b 2025-07-17T06:36:52.3015483Z * [new tag] trunk/0a092c7de67767eed3adb7abc0d49dfd3d26d0cd -> trunk/0a092c7de67767eed3adb7abc0d49dfd3d26d0cd 2025-07-17T06:36:52.3016302Z * [new tag] trunk/0a16818d5b3fdf0fb8148dd6b849687251a56376 -> trunk/0a16818d5b3fdf0fb8148dd6b849687251a56376 2025-07-17T06:36:52.3017117Z * [new tag] trunk/0a2ec7681d2af973d8daaf7905431a088739dc90 -> trunk/0a2ec7681d2af973d8daaf7905431a088739dc90 2025-07-17T06:36:52.3017909Z * [new tag] trunk/0a624c2dc5675e35917976467a8c533baf2a98a0 -> trunk/0a624c2dc5675e35917976467a8c533baf2a98a0 2025-07-17T06:36:52.3018721Z * [new tag] trunk/0a63053fe90405cc6ee5e42fa007e32ed1e2cbac -> trunk/0a63053fe90405cc6ee5e42fa007e32ed1e2cbac 2025-07-17T06:36:52.3019545Z * [new tag] trunk/0a6b66c881cba3f6a6c1a3cb8ddf698846d99822 -> trunk/0a6b66c881cba3f6a6c1a3cb8ddf698846d99822 2025-07-17T06:36:52.3020349Z * [new tag] trunk/0a99b026d6bd0f67dc2c0a20fe3228ddc4144854 -> trunk/0a99b026d6bd0f67dc2c0a20fe3228ddc4144854 2025-07-17T06:36:52.3021161Z * [new tag] trunk/0a9d450168ce58b2bb7f2cedc27a61012123564f -> trunk/0a9d450168ce58b2bb7f2cedc27a61012123564f 2025-07-17T06:36:52.3022100Z * [new tag] trunk/0ab075a69e4577a60c4dcbff7bcc2ecd0a15ce46 -> trunk/0ab075a69e4577a60c4dcbff7bcc2ecd0a15ce46 2025-07-17T06:36:52.3022918Z * [new tag] trunk/0ad88a2224e9f0a2ed4f405e827a745945d505ce -> trunk/0ad88a2224e9f0a2ed4f405e827a745945d505ce 2025-07-17T06:36:52.3023734Z * [new tag] trunk/0aed855b2bde6d9bd045bb20cc24544a9f2fb72b -> trunk/0aed855b2bde6d9bd045bb20cc24544a9f2fb72b 2025-07-17T06:36:52.3024551Z * [new tag] trunk/0b19d463d963a0b2ee5558d2c0bb79b2cbff6e64 -> trunk/0b19d463d963a0b2ee5558d2c0bb79b2cbff6e64 2025-07-17T06:36:52.3025371Z * [new tag] trunk/0b62465b99b23cb4afcd07424676cce34a676041 -> trunk/0b62465b99b23cb4afcd07424676cce34a676041 2025-07-17T06:36:52.3026181Z * [new tag] trunk/0b677560e686d828f9f5ed1cb87b1d7a54ee2781 -> trunk/0b677560e686d828f9f5ed1cb87b1d7a54ee2781 2025-07-17T06:36:52.3026986Z * [new tag] trunk/0b6c0898e6c352c8ea93daec854e704b41485375 -> trunk/0b6c0898e6c352c8ea93daec854e704b41485375 2025-07-17T06:36:52.3027870Z * [new tag] trunk/0bb733ba230051301b3fb3fa49d1d6662744b395 -> trunk/0bb733ba230051301b3fb3fa49d1d6662744b395 2025-07-17T06:36:52.3028672Z * [new tag] trunk/0bce39026917d10995ff47352c3da9fff0ec31ff -> trunk/0bce39026917d10995ff47352c3da9fff0ec31ff 2025-07-17T06:36:52.3029501Z * [new tag] trunk/0c58bdd8fb5f269aef100af8e2c43cfcf5f1f9dd -> trunk/0c58bdd8fb5f269aef100af8e2c43cfcf5f1f9dd 2025-07-17T06:36:52.3030345Z * [new tag] trunk/0ca2a79f5b80c1ec8be95e6f7de4182dd90f3502 -> trunk/0ca2a79f5b80c1ec8be95e6f7de4182dd90f3502 2025-07-17T06:36:52.3506155Z * [new tag] trunk/0cb36e2d62c811fcddea4c6d28b1c65246cdd160 -> trunk/0cb36e2d62c811fcddea4c6d28b1c65246cdd160 2025-07-17T06:36:52.3507026Z * [new tag] trunk/0cb85c188f3665c23766cda25c8169f1a436d36b -> trunk/0cb85c188f3665c23766cda25c8169f1a436d36b 2025-07-17T06:36:52.3507894Z * [new tag] trunk/0d01bafc34fc99a0b3e46cbf1ecfd8f97563efa6 -> trunk/0d01bafc34fc99a0b3e46cbf1ecfd8f97563efa6 2025-07-17T06:36:52.3508716Z * [new tag] trunk/0d17029fea3d96bb88b19912946648b47f8e003d -> trunk/0d17029fea3d96bb88b19912946648b47f8e003d 2025-07-17T06:36:52.3509517Z * [new tag] trunk/0d3d84d866040fad1b21a618c44802951a3cb15e -> trunk/0d3d84d866040fad1b21a618c44802951a3cb15e 2025-07-17T06:36:52.3510327Z * [new tag] trunk/0d77364ee3ff6435aa93df3b0303db66b5fc3254 -> trunk/0d77364ee3ff6435aa93df3b0303db66b5fc3254 2025-07-17T06:36:52.3511247Z * [new tag] trunk/0d8c029584b61da059b6225537764eadd2fa1223 -> trunk/0d8c029584b61da059b6225537764eadd2fa1223 2025-07-17T06:36:52.3512048Z * [new tag] trunk/0d8e4e2327137b370d91bd23931cd7691a95cc33 -> trunk/0d8e4e2327137b370d91bd23931cd7691a95cc33 2025-07-17T06:36:52.3512839Z * [new tag] trunk/0db3e0cf29604dae1007a678603e4dffd1c57562 -> trunk/0db3e0cf29604dae1007a678603e4dffd1c57562 2025-07-17T06:36:52.3513698Z * [new tag] trunk/0decd966af9cdcb7ab4410cf475d2fc09f2dea0c -> trunk/0decd966af9cdcb7ab4410cf475d2fc09f2dea0c 2025-07-17T06:36:52.3514643Z * [new tag] trunk/0e2013a12da944930012265bd1b75d0a19af4d7c -> trunk/0e2013a12da944930012265bd1b75d0a19af4d7c 2025-07-17T06:36:52.3515521Z * [new tag] trunk/0e47312ae5a687f0aed61db753d03180118cddc4 -> trunk/0e47312ae5a687f0aed61db753d03180118cddc4 2025-07-17T06:36:52.3516319Z * [new tag] trunk/0e9d8032a3431505c8a6a341375af9cb27afd537 -> trunk/0e9d8032a3431505c8a6a341375af9cb27afd537 2025-07-17T06:36:52.3517113Z * [new tag] trunk/0edc1b91f708c7635cf0f286f43724665934dc89 -> trunk/0edc1b91f708c7635cf0f286f43724665934dc89 2025-07-17T06:36:52.3517921Z * [new tag] trunk/0f0c01071476145fca7d70c68d029a88aeefe72c -> trunk/0f0c01071476145fca7d70c68d029a88aeefe72c 2025-07-17T06:36:52.3518908Z * [new tag] trunk/0f21fa84fb605c61482e4218df89f8bb1ef70c14 -> trunk/0f21fa84fb605c61482e4218df89f8bb1ef70c14 2025-07-17T06:36:52.3519712Z * [new tag] trunk/0f31445139d7ffaeeae95a230c536ef97970af5c -> trunk/0f31445139d7ffaeeae95a230c536ef97970af5c 2025-07-17T06:36:52.3520522Z * [new tag] trunk/0f47e76937f092263dd579e71d45e3193fbbc5df -> trunk/0f47e76937f092263dd579e71d45e3193fbbc5df 2025-07-17T06:36:52.3521315Z * [new tag] trunk/0f9c1b374fbb6f3b999855b26ebb869387b33dfb -> trunk/0f9c1b374fbb6f3b999855b26ebb869387b33dfb 2025-07-17T06:36:52.3522241Z * [new tag] trunk/0fa361e4295bbd8ac8b1f1ea74852535326f08f2 -> trunk/0fa361e4295bbd8ac8b1f1ea74852535326f08f2 2025-07-17T06:36:52.3523063Z * [new tag] trunk/0fd711df19a6523c9de6c820640ae53e32de14c6 -> trunk/0fd711df19a6523c9de6c820640ae53e32de14c6 2025-07-17T06:36:52.3523873Z * [new tag] trunk/1036f6d114bc22a9b4cf620cf7f8364ea2fd7a60 -> trunk/1036f6d114bc22a9b4cf620cf7f8364ea2fd7a60 2025-07-17T06:36:52.3524818Z * [new tag] trunk/104493487852f0cc232547ecbf7bebf5c7fe5982 -> trunk/104493487852f0cc232547ecbf7bebf5c7fe5982 2025-07-17T06:36:52.3525639Z * [new tag] trunk/1051b93192710d2e4bdf5fecd8e66c61731b55e1 -> trunk/1051b93192710d2e4bdf5fecd8e66c61731b55e1 2025-07-17T06:36:52.3526439Z * [new tag] trunk/10cd1de5183e4fcd6e316be497904b9c86d4db67 -> trunk/10cd1de5183e4fcd6e316be497904b9c86d4db67 2025-07-17T06:36:52.3527396Z * [new tag] trunk/10cef1e25d39c1ff1ac93036302ce1b008cd4469 -> trunk/10cef1e25d39c1ff1ac93036302ce1b008cd4469 2025-07-17T06:36:52.3528194Z * [new tag] trunk/10d41c7d20747829a4ee5b994bf466071e4c7e32 -> trunk/10d41c7d20747829a4ee5b994bf466071e4c7e32 2025-07-17T06:36:52.3529005Z * [new tag] trunk/10fb98a004e129ea2a2074cc05e5173c056f728c -> trunk/10fb98a004e129ea2a2074cc05e5173c056f728c 2025-07-17T06:36:52.3529815Z * [new tag] trunk/110ae0f4333b289b1ee798ab93447e6ede16300f -> trunk/110ae0f4333b289b1ee798ab93447e6ede16300f 2025-07-17T06:36:52.3530621Z * [new tag] trunk/1155c53e7d8c25dabc618d7f7b324ee97c89f40e -> trunk/1155c53e7d8c25dabc618d7f7b324ee97c89f40e 2025-07-17T06:36:52.3531444Z * [new tag] trunk/117db5601d78cbc746b35eef71fc815e042e903f -> trunk/117db5601d78cbc746b35eef71fc815e042e903f 2025-07-17T06:36:52.3532267Z * [new tag] trunk/11a86ad2fa3be5cf91a7a2b99c4df44017bc92c7 -> trunk/11a86ad2fa3be5cf91a7a2b99c4df44017bc92c7 2025-07-17T06:36:52.3533090Z * [new tag] trunk/11bb1ece50ade57b963afe29b27cab6a0a56ff7d -> trunk/11bb1ece50ade57b963afe29b27cab6a0a56ff7d 2025-07-17T06:36:52.3908655Z * [new tag] trunk/11bc29856d8180571146209cea987ac9397ab444 -> trunk/11bc29856d8180571146209cea987ac9397ab444 2025-07-17T06:36:52.3909504Z * [new tag] trunk/11d6ad8b2e7359e2f654474f31692ba1aec67980 -> trunk/11d6ad8b2e7359e2f654474f31692ba1aec67980 2025-07-17T06:36:52.3910369Z * [new tag] trunk/11f7e2f1459b09b1ece26ea785b6be77daa36923 -> trunk/11f7e2f1459b09b1ece26ea785b6be77daa36923 2025-07-17T06:36:52.3911174Z * [new tag] trunk/12151c96d9202875638ea2c695d5647c38368c46 -> trunk/12151c96d9202875638ea2c695d5647c38368c46 2025-07-17T06:36:52.3911954Z * [new tag] trunk/127695eb5c973f9fdba24c47b465e30a19292582 -> trunk/127695eb5c973f9fdba24c47b465e30a19292582 2025-07-17T06:36:52.3912766Z * [new tag] trunk/12b02137af5cd6743adfe5a0ffe0d9b453cd013e -> trunk/12b02137af5cd6743adfe5a0ffe0d9b453cd013e 2025-07-17T06:36:52.3913676Z * [new tag] trunk/12cb06e574738a15a59ee9384493682fb5bc6d2b -> trunk/12cb06e574738a15a59ee9384493682fb5bc6d2b 2025-07-17T06:36:52.3914471Z * [new tag] trunk/12f9942b107acc9d7acf9591818c826ef972a0f5 -> trunk/12f9942b107acc9d7acf9591818c826ef972a0f5 2025-07-17T06:36:52.3915373Z * [new tag] trunk/130d4973bd036e539e995dd0bc20080c2570b6da -> trunk/130d4973bd036e539e995dd0bc20080c2570b6da 2025-07-17T06:36:52.3916366Z * [new tag] trunk/132babe7e0b668d31e6efdf339687d48b2ccedc7 -> trunk/132babe7e0b668d31e6efdf339687d48b2ccedc7 2025-07-17T06:36:52.3917175Z * [new tag] trunk/1339e88105cf72586d728d4f7e0d71b81e08d933 -> trunk/1339e88105cf72586d728d4f7e0d71b81e08d933 2025-07-17T06:36:52.3917979Z * [new tag] trunk/134dfb3fe64323d7c615e866c43ea346ad987556 -> trunk/134dfb3fe64323d7c615e866c43ea346ad987556 2025-07-17T06:36:52.3918786Z * [new tag] trunk/1393f71e0714d067ed5ec1f57f135431d20619bc -> trunk/1393f71e0714d067ed5ec1f57f135431d20619bc 2025-07-17T06:36:52.3919696Z * [new tag] trunk/13bf2655c1404aff64e05e50dd7b0ce4c8dc0fcf -> trunk/13bf2655c1404aff64e05e50dd7b0ce4c8dc0fcf 2025-07-17T06:36:52.3920517Z * [new tag] trunk/13ea0f2c0a06101d9aab9ce12c30043be7c92d38 -> trunk/13ea0f2c0a06101d9aab9ce12c30043be7c92d38 2025-07-17T06:36:52.3921425Z * [new tag] trunk/13efb2c858c41141776ad42f7c44f1709948de71 -> trunk/13efb2c858c41141776ad42f7c44f1709948de71 2025-07-17T06:36:52.3922227Z * [new tag] trunk/144965ca9af478515736665b0577cded22fa692e -> trunk/144965ca9af478515736665b0577cded22fa692e 2025-07-17T06:36:52.3923024Z * [new tag] trunk/14ecc0336185f2ca5591858bc74cd4aadf2d1161 -> trunk/14ecc0336185f2ca5591858bc74cd4aadf2d1161 2025-07-17T06:36:52.3923825Z * [new tag] trunk/14f3639e09d692e53c9b9714776e3ca48fed7c4c -> trunk/14f3639e09d692e53c9b9714776e3ca48fed7c4c 2025-07-17T06:36:52.3924690Z * [new tag] trunk/154a39bfbd6e0cc6b7e6f3bce708ab0157ce1c50 -> trunk/154a39bfbd6e0cc6b7e6f3bce708ab0157ce1c50 2025-07-17T06:36:52.3925545Z * [new tag] trunk/156a377f4cf9b5b5255575e26d27f745c111a6ae -> trunk/156a377f4cf9b5b5255575e26d27f745c111a6ae 2025-07-17T06:36:52.3926338Z * [new tag] trunk/156b28e62a225214a5685088a848c5efe6a4b95e -> trunk/156b28e62a225214a5685088a848c5efe6a4b95e 2025-07-17T06:36:52.3927141Z * [new tag] trunk/156bc243f0edbf79d4a24d5affb48198551b58dd -> trunk/156bc243f0edbf79d4a24d5affb48198551b58dd 2025-07-17T06:36:52.3927952Z * [new tag] trunk/157683d8623a683a7e05755176f86a41c7bf518a -> trunk/157683d8623a683a7e05755176f86a41c7bf518a 2025-07-17T06:36:52.3936090Z * [new tag] trunk/1586521461c8dc642735466fc143b7d366a858d0 -> trunk/1586521461c8dc642735466fc143b7d366a858d0 2025-07-17T06:36:52.3936979Z * [new tag] trunk/159a39ad344cca84347e7b3be653ec13834cefdc -> trunk/159a39ad344cca84347e7b3be653ec13834cefdc 2025-07-17T06:36:52.3937785Z * [new tag] trunk/162ca185ff06fc7440e9f52d249e0b465976449a -> trunk/162ca185ff06fc7440e9f52d249e0b465976449a 2025-07-17T06:36:52.3938608Z * [new tag] trunk/163f0d8f2ab0a602a16f606db6d873298088e3a7 -> trunk/163f0d8f2ab0a602a16f606db6d873298088e3a7 2025-07-17T06:36:52.3939454Z * [new tag] trunk/16c3b4143b6fdabbee45ea5a64bb922a5969145a -> trunk/16c3b4143b6fdabbee45ea5a64bb922a5969145a 2025-07-17T06:36:52.3940263Z * [new tag] trunk/172853547ac842bb5ed8bf6e07702c76ff2cf043 -> trunk/172853547ac842bb5ed8bf6e07702c76ff2cf043 2025-07-17T06:36:52.3941058Z * [new tag] trunk/178fe7aa98987111a73534375099f4ad255e8b59 -> trunk/178fe7aa98987111a73534375099f4ad255e8b59 2025-07-17T06:36:52.3941914Z * [new tag] trunk/179dcc10e4e0c742fb7d93b832021d0c177798bf -> trunk/179dcc10e4e0c742fb7d93b832021d0c177798bf 2025-07-17T06:36:52.4332044Z * [new tag] trunk/17b38b850e5362c2f5d7cd75e6552e3d149232f2 -> trunk/17b38b850e5362c2f5d7cd75e6552e3d149232f2 2025-07-17T06:36:52.4332887Z * [new tag] trunk/17eb649d5596c52bae65a069e03b4550155ad57f -> trunk/17eb649d5596c52bae65a069e03b4550155ad57f 2025-07-17T06:36:52.4333696Z * [new tag] trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 -> trunk/1839e8d04b81ee6eda0cff6fbfc218a7a600f6f7 2025-07-17T06:36:52.4334753Z * [new tag] trunk/1851f50866a11e7ddede5d07c583e2c5407e7708 -> trunk/1851f50866a11e7ddede5d07c583e2c5407e7708 2025-07-17T06:36:52.4335570Z * [new tag] trunk/187828dcb4145cdfda916ff670207bfb17abdef8 -> trunk/187828dcb4145cdfda916ff670207bfb17abdef8 2025-07-17T06:36:52.4336386Z * [new tag] trunk/18b01afa9ed1dbc696a06de1b69bf5c021c18c10 -> trunk/18b01afa9ed1dbc696a06de1b69bf5c021c18c10 2025-07-17T06:36:52.4337207Z * [new tag] trunk/18bf6addc4741852953ac0b8d555411c347e67aa -> trunk/18bf6addc4741852953ac0b8d555411c347e67aa 2025-07-17T06:36:52.4338037Z * [new tag] trunk/18e4c461fb4e2bbdef889c3b1a2cdb29c0fb31cd -> trunk/18e4c461fb4e2bbdef889c3b1a2cdb29c0fb31cd 2025-07-17T06:36:52.4338844Z * [new tag] trunk/190f76fa313410df8dbb4111c586a516bf55515c -> trunk/190f76fa313410df8dbb4111c586a516bf55515c 2025-07-17T06:36:52.4339655Z * [new tag] trunk/1913c915e0d2b08e7af00889dc50e78d0a9b9198 -> trunk/1913c915e0d2b08e7af00889dc50e78d0a9b9198 2025-07-17T06:36:52.4340580Z * [new tag] trunk/191693ac854de1bb5fcf4280b7a93ab29cc12b5c -> trunk/191693ac854de1bb5fcf4280b7a93ab29cc12b5c 2025-07-17T06:36:52.4341400Z * [new tag] trunk/194539e9c33dc793fe67fbb68c7cee12f399e276 -> trunk/194539e9c33dc793fe67fbb68c7cee12f399e276 2025-07-17T06:36:52.4342222Z * [new tag] trunk/194c221e0abc9daf178e14ca2608c5d6804a3eb7 -> trunk/194c221e0abc9daf178e14ca2608c5d6804a3eb7 2025-07-17T06:36:52.4343028Z * [new tag] trunk/195ef1bce8f17419139fb81406b91f476eba7257 -> trunk/195ef1bce8f17419139fb81406b91f476eba7257 2025-07-17T06:36:52.4343827Z * [new tag] trunk/19625daf889f0a6192a76e200205817e3ee27f26 -> trunk/19625daf889f0a6192a76e200205817e3ee27f26 2025-07-17T06:36:52.4344627Z * [new tag] trunk/196c95d463367f15999c0cddc9eb89031e9988ab -> trunk/196c95d463367f15999c0cddc9eb89031e9988ab 2025-07-17T06:36:52.4345425Z * [new tag] trunk/197c1869f5467b4cfa1e197bbe394be82ba40554 -> trunk/197c1869f5467b4cfa1e197bbe394be82ba40554 2025-07-17T06:36:52.4346227Z * [new tag] trunk/1982ec2d22c5145e4ffeec08064c5ca17e969c25 -> trunk/1982ec2d22c5145e4ffeec08064c5ca17e969c25 2025-07-17T06:36:52.4347036Z * [new tag] trunk/19a01382bc623cf30cdfa7215e47a6b69d8598ff -> trunk/19a01382bc623cf30cdfa7215e47a6b69d8598ff 2025-07-17T06:36:52.4347847Z * [new tag] trunk/19ae5afdaa3a59135e6adbaea197b7a2456f1865 -> trunk/19ae5afdaa3a59135e6adbaea197b7a2456f1865 2025-07-17T06:36:52.4348665Z * [new tag] trunk/19f851ce10b16f0ed11d18d937ca7b32746153b0 -> trunk/19f851ce10b16f0ed11d18d937ca7b32746153b0 2025-07-17T06:36:52.4349467Z * [new tag] trunk/19ffb5e6f7606436249742b0f3efc0bab244dc55 -> trunk/19ffb5e6f7606436249742b0f3efc0bab244dc55 2025-07-17T06:36:52.4350301Z * [new tag] trunk/19ffdf4ea053bc5befe7eaa737fd1fafaaeb34a2 -> trunk/19ffdf4ea053bc5befe7eaa737fd1fafaaeb34a2 2025-07-17T06:36:52.4351139Z * [new tag] trunk/1a195bf7d6155b027f7ca81a97d71a3af34ce11e -> trunk/1a195bf7d6155b027f7ca81a97d71a3af34ce11e 2025-07-17T06:36:52.4351943Z * [new tag] trunk/1a568f4e5d1c0e2e8994d64f01e1e8a3104a1a48 -> trunk/1a568f4e5d1c0e2e8994d64f01e1e8a3104a1a48 2025-07-17T06:36:52.4352741Z * [new tag] trunk/1b032384b186154bb140c7368e2e700cb1419b86 -> trunk/1b032384b186154bb140c7368e2e700cb1419b86 2025-07-17T06:36:52.4353529Z * [new tag] trunk/1b389025ba0cc640e07991314bfba8b6ca385bd2 -> trunk/1b389025ba0cc640e07991314bfba8b6ca385bd2 2025-07-17T06:36:52.4354331Z * [new tag] trunk/1b3d69b59f92383633731aada8383ab88da3ed60 -> trunk/1b3d69b59f92383633731aada8383ab88da3ed60 2025-07-17T06:36:52.4355204Z * [new tag] trunk/1b50c12584909bda00009f4f0fd0d38ec792d019 -> trunk/1b50c12584909bda00009f4f0fd0d38ec792d019 2025-07-17T06:36:52.4356128Z * [new tag] trunk/1b58e7adab91fe20bbfb1568403d72869317e75c -> trunk/1b58e7adab91fe20bbfb1568403d72869317e75c 2025-07-17T06:36:52.4356943Z * [new tag] trunk/1b6772a90f5c334cab7b9d055a7f819ce4c3478c -> trunk/1b6772a90f5c334cab7b9d055a7f819ce4c3478c 2025-07-17T06:36:52.4357763Z * [new tag] trunk/1bb9b1858b84ee07ff1bc33157d4ea7a980bb6b5 -> trunk/1bb9b1858b84ee07ff1bc33157d4ea7a980bb6b5 2025-07-17T06:36:52.4358564Z * [new tag] trunk/1c6057fd179b0373686a790b0a0b7fc68fe7f27d -> trunk/1c6057fd179b0373686a790b0a0b7fc68fe7f27d 2025-07-17T06:36:52.4540926Z * [new tag] trunk/1c8844d9e7b2d72fb80b67ed51df4f6a1295b3b5 -> trunk/1c8844d9e7b2d72fb80b67ed51df4f6a1295b3b5 2025-07-17T06:36:52.4541753Z * [new tag] trunk/1c960c5638b6f20f7a1cbe1e9036c14a4845a195 -> trunk/1c960c5638b6f20f7a1cbe1e9036c14a4845a195 2025-07-17T06:36:52.4542575Z * [new tag] trunk/1cb0597a890bc50b8ed3937d6bdf5a734691bd91 -> trunk/1cb0597a890bc50b8ed3937d6bdf5a734691bd91 2025-07-17T06:36:52.4543532Z * [new tag] trunk/1cc62c2cb91e56ae50494f88f369cd6ec466a118 -> trunk/1cc62c2cb91e56ae50494f88f369cd6ec466a118 2025-07-17T06:36:52.4544332Z * [new tag] trunk/1ccc57e4288e231210c9b2c29943b2752259bf44 -> trunk/1ccc57e4288e231210c9b2c29943b2752259bf44 2025-07-17T06:36:52.4545235Z * [new tag] trunk/1cce73b5f4806f266fbbcf3383057af5f2e3a0aa -> trunk/1cce73b5f4806f266fbbcf3383057af5f2e3a0aa 2025-07-17T06:36:52.4546078Z * [new tag] trunk/1cfdcb975a3b0c685c34c6ae0e378b9bc92e0050 -> trunk/1cfdcb975a3b0c685c34c6ae0e378b9bc92e0050 2025-07-17T06:36:52.4546880Z * [new tag] trunk/1d0f45d5d15389b83312b6942ac2017c8d7ebedc -> trunk/1d0f45d5d15389b83312b6942ac2017c8d7ebedc 2025-07-17T06:36:52.4547690Z * [new tag] trunk/1d584761622ff6e5519c5e3dbbb62a21b89ffe8a -> trunk/1d584761622ff6e5519c5e3dbbb62a21b89ffe8a 2025-07-17T06:36:52.4548491Z * [new tag] trunk/1d993fa3092e4f0b5745f2470024b35cac96da14 -> trunk/1d993fa3092e4f0b5745f2470024b35cac96da14 2025-07-17T06:36:52.4549305Z * [new tag] trunk/1dc1eedd4369f6e6bb79d5315e3ffc1bdc59b709 -> trunk/1dc1eedd4369f6e6bb79d5315e3ffc1bdc59b709 2025-07-17T06:36:52.4550121Z * [new tag] trunk/1dd0b1d12ba48d7879a57391cab6213742dcadb6 -> trunk/1dd0b1d12ba48d7879a57391cab6213742dcadb6 2025-07-17T06:36:52.4551029Z * [new tag] trunk/1e373d02d57ff65c70febc4ec427bf6d1708483e -> trunk/1e373d02d57ff65c70febc4ec427bf6d1708483e 2025-07-17T06:36:52.4551860Z * [new tag] trunk/1e474cc9c8ddab22ed314ad8be641002b0161498 -> trunk/1e474cc9c8ddab22ed314ad8be641002b0161498 2025-07-17T06:36:52.4552693Z * [new tag] trunk/1e4c5b666afe6434cbe3b830aaf70864074d40f5 -> trunk/1e4c5b666afe6434cbe3b830aaf70864074d40f5 2025-07-17T06:36:52.4553505Z * [new tag] trunk/1e4d8b5a4a67220473bf0027c58baaa08a036714 -> trunk/1e4d8b5a4a67220473bf0027c58baaa08a036714 2025-07-17T06:36:52.4554330Z * [new tag] trunk/1e690b6c41677bf1fe3147e3fc011eb9805365f5 -> trunk/1e690b6c41677bf1fe3147e3fc011eb9805365f5 2025-07-17T06:36:52.4555199Z * [new tag] trunk/1e6a653234c299ccecf702233a1eeb7455b1ce77 -> trunk/1e6a653234c299ccecf702233a1eeb7455b1ce77 2025-07-17T06:36:52.4556025Z * [new tag] trunk/1e7e21ec5dd6ea28b27c57fe92bcf31ea5983913 -> trunk/1e7e21ec5dd6ea28b27c57fe92bcf31ea5983913 2025-07-17T06:36:52.4556963Z * [new tag] trunk/1e8e9f745e43fa38bbfc7b67b30bc66c0e7ebbd6 -> trunk/1e8e9f745e43fa38bbfc7b67b30bc66c0e7ebbd6 2025-07-17T06:36:52.4557792Z * [new tag] trunk/1ea9cde598ead20194dbb6c5cb26e74e36e6ad55 -> trunk/1ea9cde598ead20194dbb6c5cb26e74e36e6ad55 2025-07-17T06:36:52.4558625Z * [new tag] trunk/1ed243f01c8efb329055c6124ba0aa5f48747cfe -> trunk/1ed243f01c8efb329055c6124ba0aa5f48747cfe 2025-07-17T06:36:52.4559566Z * [new tag] trunk/1eea2c4fe35ffbdcbfccbeb7ac6c3ec02137385d -> trunk/1eea2c4fe35ffbdcbfccbeb7ac6c3ec02137385d 2025-07-17T06:36:52.4560399Z * [new tag] trunk/1f0eb79e3e91f09f99b53aa4d331eb47a1f66101 -> trunk/1f0eb79e3e91f09f99b53aa4d331eb47a1f66101 2025-07-17T06:36:52.4561227Z * [new tag] trunk/1f1f22991dcca01ed27fad44c21f0827d47bdd6b -> trunk/1f1f22991dcca01ed27fad44c21f0827d47bdd6b 2025-07-17T06:36:52.4562083Z * [new tag] trunk/1f3cc4875cb9d9b579a41b6699f97820c16c3868 -> trunk/1f3cc4875cb9d9b579a41b6699f97820c16c3868 2025-07-17T06:36:52.4562943Z * [new tag] trunk/1f57e0e04da9d334e238cec346f7ae3667bed9d1 -> trunk/1f57e0e04da9d334e238cec346f7ae3667bed9d1 2025-07-17T06:36:52.4563759Z * [new tag] trunk/1fff6356d9f99ec2980052c498dc0b70d513bc6d -> trunk/1fff6356d9f99ec2980052c498dc0b70d513bc6d 2025-07-17T06:36:52.4564559Z * [new tag] trunk/2002e3a311968d18afd0fa5d195943676f134fa2 -> trunk/2002e3a311968d18afd0fa5d195943676f134fa2 2025-07-17T06:36:52.4565466Z * [new tag] trunk/2022588295295fa1fdee7a500adad3bd0c28b9d6 -> trunk/2022588295295fa1fdee7a500adad3bd0c28b9d6 2025-07-17T06:36:52.4566274Z * [new tag] trunk/202d2ae53a493700da813ed7d6055c0b62c7fc6c -> trunk/202d2ae53a493700da813ed7d6055c0b62c7fc6c 2025-07-17T06:36:52.4567079Z * [new tag] trunk/204db27a0c4478c36dbb15fa2d4caed783a90265 -> trunk/204db27a0c4478c36dbb15fa2d4caed783a90265 2025-07-17T06:36:52.4807145Z * [new tag] trunk/205241a0d5149d05e44dc113dc0273e8eceff9f0 -> trunk/205241a0d5149d05e44dc113dc0273e8eceff9f0 2025-07-17T06:36:52.4807994Z * [new tag] trunk/208ec60e72a63f366c757a5bc895089ceb323fcc -> trunk/208ec60e72a63f366c757a5bc895089ceb323fcc 2025-07-17T06:36:52.4808798Z * [new tag] trunk/20a74c370b8427cce369b1abf0c470344d01dc8e -> trunk/20a74c370b8427cce369b1abf0c470344d01dc8e 2025-07-17T06:36:52.4809597Z * [new tag] trunk/20e40492b046b9287726d3ec656117e4dc38f0e2 -> trunk/20e40492b046b9287726d3ec656117e4dc38f0e2 2025-07-17T06:36:52.4810418Z * [new tag] trunk/210632fae1aa2cd994645a70836ff6c602e1beb9 -> trunk/210632fae1aa2cd994645a70836ff6c602e1beb9 2025-07-17T06:36:52.4811224Z * [new tag] trunk/212575f994abbc362da2517510c49f7a34e0a838 -> trunk/212575f994abbc362da2517510c49f7a34e0a838 2025-07-17T06:36:52.4812030Z * [new tag] trunk/214e2959dcdbf91a999d5c0a5d40c91e4442e8c5 -> trunk/214e2959dcdbf91a999d5c0a5d40c91e4442e8c5 2025-07-17T06:36:52.4812940Z * [new tag] trunk/2161be849702330509b452fefc2e103d3be54cd4 -> trunk/2161be849702330509b452fefc2e103d3be54cd4 2025-07-17T06:36:52.4813736Z * [new tag] trunk/216bd6091ec52865052282eced7e6d5d2a4b4fb4 -> trunk/216bd6091ec52865052282eced7e6d5d2a4b4fb4 2025-07-17T06:36:52.4814539Z * [new tag] trunk/2179afd7149c117dace9e552419082094b10a386 -> trunk/2179afd7149c117dace9e552419082094b10a386 2025-07-17T06:36:52.4815347Z * [new tag] trunk/21990fbad97acec769f737b450033774c7be8737 -> trunk/21990fbad97acec769f737b450033774c7be8737 2025-07-17T06:36:52.4816172Z * [new tag] trunk/21b5dc7a6aadb5da6c3f5be61f6204719dae00ca -> trunk/21b5dc7a6aadb5da6c3f5be61f6204719dae00ca 2025-07-17T06:36:52.4817009Z * [new tag] trunk/22edb457c9bf13e0d66631dff4f4ace5c38e0f3b -> trunk/22edb457c9bf13e0d66631dff4f4ace5c38e0f3b 2025-07-17T06:36:52.4817813Z * [new tag] trunk/22f3347fd9482bdf1006c9aa92353b739b7e868b -> trunk/22f3347fd9482bdf1006c9aa92353b739b7e868b 2025-07-17T06:36:52.4818607Z * [new tag] trunk/231eb9902ba78a4ef70203243058f3c7c0ced15d -> trunk/231eb9902ba78a4ef70203243058f3c7c0ced15d 2025-07-17T06:36:52.4819411Z * [new tag] trunk/23491519d288dedb2a54cfad5fef7fcb2ad8eade -> trunk/23491519d288dedb2a54cfad5fef7fcb2ad8eade 2025-07-17T06:36:52.4820227Z * [new tag] trunk/2380115f9738f97cf706affefd647d2cb6dfbb3f -> trunk/2380115f9738f97cf706affefd647d2cb6dfbb3f 2025-07-17T06:36:52.4821218Z * [new tag] trunk/24063ad10994e728087b3958cae9cc27dd376630 -> trunk/24063ad10994e728087b3958cae9cc27dd376630 2025-07-17T06:36:52.4822005Z * [new tag] trunk/242eb19c8383b4b197963a8a564475d52c85ac66 -> trunk/242eb19c8383b4b197963a8a564475d52c85ac66 2025-07-17T06:36:52.4822805Z * [new tag] trunk/243b12e5657a516d6e7b1a0a3f55851ce99bd4cb -> trunk/243b12e5657a516d6e7b1a0a3f55851ce99bd4cb 2025-07-17T06:36:52.4823611Z * [new tag] trunk/247113e03e3fc3e933138b52f856f33a8be33071 -> trunk/247113e03e3fc3e933138b52f856f33a8be33071 2025-07-17T06:36:52.4824389Z * [new tag] trunk/2471cc33550fc00164e2759b1d9928960e9cfaf6 -> trunk/2471cc33550fc00164e2759b1d9928960e9cfaf6 2025-07-17T06:36:52.4825193Z * [new tag] trunk/247f83e0a475bc7eea97c76719f8b5ffa87edced -> trunk/247f83e0a475bc7eea97c76719f8b5ffa87edced 2025-07-17T06:36:52.4826106Z * [new tag] trunk/2481c4b2ea5db7a6d6f60f5d27426000c2779dc8 -> trunk/2481c4b2ea5db7a6d6f60f5d27426000c2779dc8 2025-07-17T06:36:52.4826932Z * [new tag] trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 -> trunk/24b49b98810bb77f3cfa4c15baa9a15c9be3db61 2025-07-17T06:36:52.4827745Z * [new tag] trunk/250ae2531c55dcc50f558ec739941324e3f9a4d4 -> trunk/250ae2531c55dcc50f558ec739941324e3f9a4d4 2025-07-17T06:36:52.4828600Z * [new tag] trunk/25717da8c869a06befed60bc1a0e3dcdac7fd7d9 -> trunk/25717da8c869a06befed60bc1a0e3dcdac7fd7d9 2025-07-17T06:36:52.4829451Z * [new tag] trunk/2578796e235d1d878272084253bee3e2cc02a5b1 -> trunk/2578796e235d1d878272084253bee3e2cc02a5b1 2025-07-17T06:36:52.4830220Z * [new tag] trunk/2585960b47d6429a119665216123cb00435efde9 -> trunk/2585960b47d6429a119665216123cb00435efde9 2025-07-17T06:36:52.4830996Z * [new tag] trunk/2596e3d0617852469241be8777cf46db5c83928c -> trunk/2596e3d0617852469241be8777cf46db5c83928c 2025-07-17T06:36:52.4831782Z * [new tag] trunk/2620361d19f9c4bf37a71c8477823d605191c93a -> trunk/2620361d19f9c4bf37a71c8477823d605191c93a 2025-07-17T06:36:52.4832583Z * [new tag] trunk/2625c70aecc6eced1dbe108279feab7509733bef -> trunk/2625c70aecc6eced1dbe108279feab7509733bef 2025-07-17T06:36:52.4833395Z * [new tag] trunk/262654ee518eb314678f53baf4e133e4767eca3d -> trunk/262654ee518eb314678f53baf4e133e4767eca3d 2025-07-17T06:36:52.5020398Z * [new tag] trunk/26807dcf277feb2d99ab88d7b6da526488baea93 -> trunk/26807dcf277feb2d99ab88d7b6da526488baea93 2025-07-17T06:36:52.5021267Z * [new tag] trunk/26f066bb614c2ee5c0eff598c97855b1df011ef8 -> trunk/26f066bb614c2ee5c0eff598c97855b1df011ef8 2025-07-17T06:36:52.5022100Z * [new tag] trunk/26f7ca39724ff43b7b1e22190feeea67d2212f2d -> trunk/26f7ca39724ff43b7b1e22190feeea67d2212f2d 2025-07-17T06:36:52.5022960Z * [new tag] trunk/271ca679a8a0e40f1ecca49db76b5f8d6a9713d6 -> trunk/271ca679a8a0e40f1ecca49db76b5f8d6a9713d6 2025-07-17T06:36:52.5023762Z * [new tag] trunk/276c790010b015b79a7ca110e28f8e2111cfdb79 -> trunk/276c790010b015b79a7ca110e28f8e2111cfdb79 2025-07-17T06:36:52.5024552Z * [new tag] trunk/2796f31b5e3c90268365e961e2374df3ea93ff53 -> trunk/2796f31b5e3c90268365e961e2374df3ea93ff53 2025-07-17T06:36:52.5025349Z * [new tag] trunk/279cae52e750d5b4e0b49f3f1abca6c2027dd063 -> trunk/279cae52e750d5b4e0b49f3f1abca6c2027dd063 2025-07-17T06:36:52.5026158Z * [new tag] trunk/27c50799c1ca156166bf49ce72a5e97097a44d7d -> trunk/27c50799c1ca156166bf49ce72a5e97097a44d7d 2025-07-17T06:36:52.5026969Z * [new tag] trunk/27df0c56b7c6b75a5f77f5714aeef2ef8f1faa2c -> trunk/27df0c56b7c6b75a5f77f5714aeef2ef8f1faa2c 2025-07-17T06:36:52.5027774Z * [new tag] trunk/2815ade9a80e1f557370e86500b21cbc465a8ffe -> trunk/2815ade9a80e1f557370e86500b21cbc465a8ffe 2025-07-17T06:36:52.5028747Z * [new tag] trunk/2815eea0d0e02eaa0243fa8d1b9d8935b13b3aa5 -> trunk/2815eea0d0e02eaa0243fa8d1b9d8935b13b3aa5 2025-07-17T06:36:52.5029565Z * [new tag] trunk/2860f5c4f5328224ab7998bc90b9fb395b5b068b -> trunk/2860f5c4f5328224ab7998bc90b9fb395b5b068b 2025-07-17T06:36:52.5030454Z * [new tag] trunk/28796f71d04302029290f473a286efc2aba339c2 -> trunk/28796f71d04302029290f473a286efc2aba339c2 2025-07-17T06:36:52.5031303Z * [new tag] trunk/28aae93f24556c6aa8c972c0479b01b908b67fbe -> trunk/28aae93f24556c6aa8c972c0479b01b908b67fbe 2025-07-17T06:36:52.5032109Z * [new tag] trunk/2903e5ad3c4304b90daa6e5ed44a379225571b3a -> trunk/2903e5ad3c4304b90daa6e5ed44a379225571b3a 2025-07-17T06:36:52.5032915Z * [new tag] trunk/2908c10259bac21b00e9b36318e364801e0ae910 -> trunk/2908c10259bac21b00e9b36318e364801e0ae910 2025-07-17T06:36:52.5033712Z * [new tag] trunk/29391c7cf927857123108fa5e9dae6ed3db489f1 -> trunk/29391c7cf927857123108fa5e9dae6ed3db489f1 2025-07-17T06:36:52.5034612Z * [new tag] trunk/297805fd8f59b76a28048a79e8bced2616ed8713 -> trunk/297805fd8f59b76a28048a79e8bced2616ed8713 2025-07-17T06:36:52.5035482Z * [new tag] trunk/297daa1d30c80826b939d8f2dcd07422dec72642 -> trunk/297daa1d30c80826b939d8f2dcd07422dec72642 2025-07-17T06:36:52.5036328Z * [new tag] trunk/29867b211ab74355a0e03bdc9e204d89668c291a -> trunk/29867b211ab74355a0e03bdc9e204d89668c291a 2025-07-17T06:36:52.5037181Z * [new tag] trunk/29e6033ff38f0deb8dde1146a1612e64ed00e3b7 -> trunk/29e6033ff38f0deb8dde1146a1612e64ed00e3b7 2025-07-17T06:36:52.5038006Z * [new tag] trunk/29f76ec0f3eccf619a0aee03e3abbd4914a1b4b2 -> trunk/29f76ec0f3eccf619a0aee03e3abbd4914a1b4b2 2025-07-17T06:36:52.5038826Z * [new tag] trunk/2a3b41cbd077b229bbdd59f6f068c9b643a78b0b -> trunk/2a3b41cbd077b229bbdd59f6f068c9b643a78b0b 2025-07-17T06:36:52.5039658Z * [new tag] trunk/2a4e357192a2b01c9acaeb2168349e5396c9192a -> trunk/2a4e357192a2b01c9acaeb2168349e5396c9192a 2025-07-17T06:36:52.5040466Z * [new tag] trunk/2a8795a981c02f57a57f8699d0e85e42c53b6117 -> trunk/2a8795a981c02f57a57f8699d0e85e42c53b6117 2025-07-17T06:36:52.5041277Z * [new tag] trunk/2aade5ee9fafe52aef4e60624e6c950bc25f8a3e -> trunk/2aade5ee9fafe52aef4e60624e6c950bc25f8a3e 2025-07-17T06:36:52.5042144Z * [new tag] trunk/2ad5c25cfc603c3656e6699d6137419dbb009495 -> trunk/2ad5c25cfc603c3656e6699d6137419dbb009495 2025-07-17T06:36:52.5043000Z * [new tag] trunk/2af7c67e48cad59d648a3e85501f74eade5a3268 -> trunk/2af7c67e48cad59d648a3e85501f74eade5a3268 2025-07-17T06:36:52.5043804Z * [new tag] trunk/2b0f9b1f6172a0d5817c7ac7406200897311da5f -> trunk/2b0f9b1f6172a0d5817c7ac7406200897311da5f 2025-07-17T06:36:52.5044622Z * [new tag] trunk/2b19d85d70ecf1b7121e6d35f2adff06e1eb2e06 -> trunk/2b19d85d70ecf1b7121e6d35f2adff06e1eb2e06 2025-07-17T06:36:52.5045429Z * [new tag] trunk/2b9d638e3333e6e9ae324e1486774e83292e1883 -> trunk/2b9d638e3333e6e9ae324e1486774e83292e1883 2025-07-17T06:36:52.5046224Z * [new tag] trunk/2ba930d4ce04f417195f3061e55479a1a8b16b9d -> trunk/2ba930d4ce04f417195f3061e55479a1a8b16b9d 2025-07-17T06:36:52.5047029Z * [new tag] trunk/2bb33e7a08c4710024b3cb249a13cd2f5d0f6473 -> trunk/2bb33e7a08c4710024b3cb249a13cd2f5d0f6473 2025-07-17T06:36:52.5239725Z * [new tag] trunk/2c0d94a7debe83e96a821548a6e0cb18a0f5cfc3 -> trunk/2c0d94a7debe83e96a821548a6e0cb18a0f5cfc3 2025-07-17T06:36:52.5240585Z * [new tag] trunk/2c1a93a0ae7ebd7963a5931d7b34c885d57844d9 -> trunk/2c1a93a0ae7ebd7963a5931d7b34c885d57844d9 2025-07-17T06:36:52.5241516Z * [new tag] trunk/2c6324a1ebf3e3f6a12be6d18fc0bcdbe00f2a0a -> trunk/2c6324a1ebf3e3f6a12be6d18fc0bcdbe00f2a0a 2025-07-17T06:36:52.5243220Z * [new tag] trunk/2c68c3e8d5e9a235f5861be6486de4959f80c840 -> trunk/2c68c3e8d5e9a235f5861be6486de4959f80c840 2025-07-17T06:36:52.5244015Z * [new tag] trunk/2c76f31221e117b217b8a6a96a5405f626d2218a -> trunk/2c76f31221e117b217b8a6a96a5405f626d2218a 2025-07-17T06:36:52.5244800Z * [new tag] trunk/2cdcd16e836a144f36996104b1340b03041eb07a -> trunk/2cdcd16e836a144f36996104b1340b03041eb07a 2025-07-17T06:36:52.5245589Z * [new tag] trunk/2d3615f577894c7a117a55e85bb8371bb598ec50 -> trunk/2d3615f577894c7a117a55e85bb8371bb598ec50 2025-07-17T06:36:52.5246377Z * [new tag] trunk/2d39a48d524021995269411bd49fe792e59d9f94 -> trunk/2d39a48d524021995269411bd49fe792e59d9f94 2025-07-17T06:36:52.5247151Z * [new tag] trunk/2d7e6c6241971106a56073d7a53c7d1336b11a51 -> trunk/2d7e6c6241971106a56073d7a53c7d1336b11a51 2025-07-17T06:36:52.5247958Z * [new tag] trunk/2d832c9587fd99db295b62d0c9b459d509c19d06 -> trunk/2d832c9587fd99db295b62d0c9b459d509c19d06 2025-07-17T06:36:52.5248859Z * [new tag] trunk/2db1a54465b6121993ad7827f1327ed319c81d70 -> trunk/2db1a54465b6121993ad7827f1327ed319c81d70 2025-07-17T06:36:52.5249677Z * [new tag] trunk/2dc16274519841dc2778cba6962cb0357d1ee8dc -> trunk/2dc16274519841dc2778cba6962cb0357d1ee8dc 2025-07-17T06:36:52.5250492Z * [new tag] trunk/2e0e08588e7cb04f49ee5bbc000b18b72864dfa1 -> trunk/2e0e08588e7cb04f49ee5bbc000b18b72864dfa1 2025-07-17T06:36:52.5251294Z * [new tag] trunk/2e14069081172faf9a51bd34c1e0b85dbf39cb4b -> trunk/2e14069081172faf9a51bd34c1e0b85dbf39cb4b 2025-07-17T06:36:52.5252126Z * [new tag] trunk/2e2ea7290a1cf2da3c3efd6e6ad4836bb94beaeb -> trunk/2e2ea7290a1cf2da3c3efd6e6ad4836bb94beaeb 2025-07-17T06:36:52.5252962Z * [new tag] trunk/2e64e45b0b260e2efc2bde641ec2b3b8ed910194 -> trunk/2e64e45b0b260e2efc2bde641ec2b3b8ed910194 2025-07-17T06:36:52.5253778Z * [new tag] trunk/2e9bd03f6075b9b93b070c3770bf58f60be5508e -> trunk/2e9bd03f6075b9b93b070c3770bf58f60be5508e 2025-07-17T06:36:52.5254586Z * [new tag] trunk/2eb744c08d600e84b167dbda7daa792243a2c235 -> trunk/2eb744c08d600e84b167dbda7daa792243a2c235 2025-07-17T06:36:52.5255387Z * [new tag] trunk/2ee23175d96aa022a9c94209c14bbb7f8e064760 -> trunk/2ee23175d96aa022a9c94209c14bbb7f8e064760 2025-07-17T06:36:52.5256197Z * [new tag] trunk/2efa5eaa652f9a6505635d96178e3f119b20adf7 -> trunk/2efa5eaa652f9a6505635d96178e3f119b20adf7 2025-07-17T06:36:52.5257008Z * [new tag] trunk/2eff14c4455de22628ea599a0d4ba047a7eba6ae -> trunk/2eff14c4455de22628ea599a0d4ba047a7eba6ae 2025-07-17T06:36:52.5257816Z * [new tag] trunk/2f1c5c4131047d25f822ac278bac8c13deff4079 -> trunk/2f1c5c4131047d25f822ac278bac8c13deff4079 2025-07-17T06:36:52.5258624Z * [new tag] trunk/2f94f69b7c83370ef0cc65e3ab96bb5bf11a7b1a -> trunk/2f94f69b7c83370ef0cc65e3ab96bb5bf11a7b1a 2025-07-17T06:36:52.5259444Z * [new tag] trunk/2fde2090d001a9ae63ef41413f11897761eb4de9 -> trunk/2fde2090d001a9ae63ef41413f11897761eb4de9 2025-07-17T06:36:52.5260244Z * [new tag] trunk/2ff3280c77c705e11c5211d4be8fef9853cd0559 -> trunk/2ff3280c77c705e11c5211d4be8fef9853cd0559 2025-07-17T06:36:52.5261047Z * [new tag] trunk/3003c681ef1f8efbfa83470173c62930d195364b -> trunk/3003c681ef1f8efbfa83470173c62930d195364b 2025-07-17T06:36:52.5261839Z * [new tag] trunk/30293b8b5edca86cfc80f24874b0968620a8e72d -> trunk/30293b8b5edca86cfc80f24874b0968620a8e72d 2025-07-17T06:36:52.5262646Z * [new tag] trunk/30387ab2e485384ab2e67084a1e2c5569190ba92 -> trunk/30387ab2e485384ab2e67084a1e2c5569190ba92 2025-07-17T06:36:52.5263446Z * [new tag] trunk/3040ca6d0f8558e39919b14eebeacc34ddf980f5 -> trunk/3040ca6d0f8558e39919b14eebeacc34ddf980f5 2025-07-17T06:36:52.5264327Z * [new tag] trunk/30587195d314eb5eb02ce63f39a9be4c943629ef -> trunk/30587195d314eb5eb02ce63f39a9be4c943629ef 2025-07-17T06:36:52.5265143Z * [new tag] trunk/306dd19216b656467143483395ef582feb5d7d07 -> trunk/306dd19216b656467143483395ef582feb5d7d07 2025-07-17T06:36:52.5265933Z * [new tag] trunk/30a1cc11a47e63c4612ac862f1f2d984ab4dbf24 -> trunk/30a1cc11a47e63c4612ac862f1f2d984ab4dbf24 2025-07-17T06:36:52.5530271Z * [new tag] trunk/30d2648a4ae1585e70189e6fdca6dc9ac3d074ec -> trunk/30d2648a4ae1585e70189e6fdca6dc9ac3d074ec 2025-07-17T06:36:52.5531150Z * [new tag] trunk/30d3cf62fb813819364007e26b3eda84f7cddf3b -> trunk/30d3cf62fb813819364007e26b3eda84f7cddf3b 2025-07-17T06:36:52.5532003Z * [new tag] trunk/3106a33e410db9d1c2b0e47f9e329611d344a827 -> trunk/3106a33e410db9d1c2b0e47f9e329611d344a827 2025-07-17T06:36:52.5532839Z * [new tag] trunk/310e8361c565ca1602e719e4c812dc3931ec84d7 -> trunk/310e8361c565ca1602e719e4c812dc3931ec84d7 2025-07-17T06:36:52.5533839Z * [new tag] trunk/31326a9ad7db53e5bf4e03f8e52b75da944d0298 -> trunk/31326a9ad7db53e5bf4e03f8e52b75da944d0298 2025-07-17T06:36:52.5534647Z * [new tag] trunk/313a6a8ef94d689331b2bd8161f95c23d42eb22d -> trunk/313a6a8ef94d689331b2bd8161f95c23d42eb22d 2025-07-17T06:36:52.5535457Z * [new tag] trunk/3159ee2ad3e586573edb977c4c1745a26d9f1007 -> trunk/3159ee2ad3e586573edb977c4c1745a26d9f1007 2025-07-17T06:36:52.5536266Z * [new tag] trunk/31659964a5b546a84a4c18bb9a0828a0f63b8ccb -> trunk/31659964a5b546a84a4c18bb9a0828a0f63b8ccb 2025-07-17T06:36:52.5537048Z * [new tag] trunk/3173616532ecf0d5c0b78595d6054f1b4bd2bd75 -> trunk/3173616532ecf0d5c0b78595d6054f1b4bd2bd75 2025-07-17T06:36:52.5537907Z * [new tag] trunk/317520bf6ed5c1f2ef324f841e8ec0d8d80cb58a -> trunk/317520bf6ed5c1f2ef324f841e8ec0d8d80cb58a 2025-07-17T06:36:52.5538758Z * [new tag] trunk/317af4c87b7b8b03b8a08a4ead84d4065dd920e0 -> trunk/317af4c87b7b8b03b8a08a4ead84d4065dd920e0 2025-07-17T06:36:52.5539561Z * [new tag] trunk/31e127459789f9d97b3b35001c50e76f1b580cd5 -> trunk/31e127459789f9d97b3b35001c50e76f1b580cd5 2025-07-17T06:36:52.5540358Z * [new tag] trunk/3232b57cd87fbd15c990fbf87d181716a1993a55 -> trunk/3232b57cd87fbd15c990fbf87d181716a1993a55 2025-07-17T06:36:52.5541161Z * [new tag] trunk/326e751d07b92f788bece086227da9288206a27a -> trunk/326e751d07b92f788bece086227da9288206a27a 2025-07-17T06:36:52.5541961Z * [new tag] trunk/32983ea698842a2ca331eabb06acce9c99acb082 -> trunk/32983ea698842a2ca331eabb06acce9c99acb082 2025-07-17T06:36:52.5542745Z * [new tag] trunk/32c1611263ecc8832a8d7494480654ad851911c0 -> trunk/32c1611263ecc8832a8d7494480654ad851911c0 2025-07-17T06:36:52.5543544Z * [new tag] trunk/32eee8ed225d9f10fbbcb38c24b8b44c24c0c97c -> trunk/32eee8ed225d9f10fbbcb38c24b8b44c24c0c97c 2025-07-17T06:36:52.5544453Z * [new tag] trunk/3321acc92e24859dbe2ac6499067d1afde5622c3 -> trunk/3321acc92e24859dbe2ac6499067d1afde5622c3 2025-07-17T06:36:52.5545260Z * [new tag] trunk/333e0e61472c71cb2ad51a59cc5c56f6a47bc747 -> trunk/333e0e61472c71cb2ad51a59cc5c56f6a47bc747 2025-07-17T06:36:52.5546049Z * [new tag] trunk/3341c131b767a4036c152624c1e43baaf24cadf9 -> trunk/3341c131b767a4036c152624c1e43baaf24cadf9 2025-07-17T06:36:52.5546850Z * [new tag] trunk/336bff6d58ceb50b12d9d67764fd9f238bc0adb5 -> trunk/336bff6d58ceb50b12d9d67764fd9f238bc0adb5 2025-07-17T06:36:52.5547640Z * [new tag] trunk/336f1e2d35dfc63925754e884543491cc3f98f8c -> trunk/336f1e2d35dfc63925754e884543491cc3f98f8c 2025-07-17T06:36:52.5548449Z * [new tag] trunk/338a8c7853ab9b3e67dbcb402d30fec066bdd856 -> trunk/338a8c7853ab9b3e67dbcb402d30fec066bdd856 2025-07-17T06:36:52.5549254Z * [new tag] trunk/3404c1f0cfe4c8fd41d718d38316c24a3c0474b0 -> trunk/3404c1f0cfe4c8fd41d718d38316c24a3c0474b0 2025-07-17T06:36:52.5550239Z * [new tag] trunk/344731fb257440ab04f2d634929821be9be3fa80 -> trunk/344731fb257440ab04f2d634929821be9be3fa80 2025-07-17T06:36:52.5551044Z * [new tag] trunk/347ace4c7ac2dbb14799089c30bd01a9ac312791 -> trunk/347ace4c7ac2dbb14799089c30bd01a9ac312791 2025-07-17T06:36:52.5551868Z * [new tag] trunk/348e2a76dfe9c8a1995ab6ce4902dbeba935c984 -> trunk/348e2a76dfe9c8a1995ab6ce4902dbeba935c984 2025-07-17T06:36:52.5552665Z * [new tag] trunk/348fd45065620f20080299774f37f45233ef8f6b -> trunk/348fd45065620f20080299774f37f45233ef8f6b 2025-07-17T06:36:52.5553446Z * [new tag] trunk/3490a4f906aeaa867a390c2e97b357f17b01fcf2 -> trunk/3490a4f906aeaa867a390c2e97b357f17b01fcf2 2025-07-17T06:36:52.5554236Z * [new tag] trunk/34c8033fd3dea404db1706e264761912d095f723 -> trunk/34c8033fd3dea404db1706e264761912d095f723 2025-07-17T06:36:52.5555849Z * [new tag] trunk/34d8e64ef64d88324092a2028884c54c13e086b3 -> trunk/34d8e64ef64d88324092a2028884c54c13e086b3 2025-07-17T06:36:52.5556682Z * [new tag] trunk/35321b2ad6e86a58ca5d5be90ad8edce5945e16c -> trunk/35321b2ad6e86a58ca5d5be90ad8edce5945e16c 2025-07-17T06:36:52.5557493Z * [new tag] trunk/3580b8dde44d8bf4f229537ae9897ddd5e70f5db -> trunk/3580b8dde44d8bf4f229537ae9897ddd5e70f5db 2025-07-17T06:36:52.5743910Z * [new tag] trunk/3584e84c2434a2681b7288bcbd3bdb163c793df5 -> trunk/3584e84c2434a2681b7288bcbd3bdb163c793df5 2025-07-17T06:36:52.5744751Z * [new tag] trunk/3596c0c77f28c74e6cfb50769402ed52dbe10c67 -> trunk/3596c0c77f28c74e6cfb50769402ed52dbe10c67 2025-07-17T06:36:52.5745569Z * [new tag] trunk/359e8f5d691cdbbc54beafea25c06fc0ce321ad6 -> trunk/359e8f5d691cdbbc54beafea25c06fc0ce321ad6 2025-07-17T06:36:52.5746391Z * [new tag] trunk/35d03398e511fa0921c9db928c661dc9531ff2fc -> trunk/35d03398e511fa0921c9db928c661dc9531ff2fc 2025-07-17T06:36:52.5747214Z * [new tag] trunk/35e44067c4d9cc9be2652c0b9098885c5a321029 -> trunk/35e44067c4d9cc9be2652c0b9098885c5a321029 2025-07-17T06:36:52.5748008Z * [new tag] trunk/35e8f2593cdb72036c88a4b8d01487747204ba03 -> trunk/35e8f2593cdb72036c88a4b8d01487747204ba03 2025-07-17T06:36:52.5748815Z * [new tag] trunk/35ecd7c2d44a4e370e21ddab76b6c28266188846 -> trunk/35ecd7c2d44a4e370e21ddab76b6c28266188846 2025-07-17T06:36:52.5749622Z * [new tag] trunk/3608737347bcbb1ec1e23d85a29811abfd75c7a1 -> trunk/3608737347bcbb1ec1e23d85a29811abfd75c7a1 2025-07-17T06:36:52.5750431Z * [new tag] trunk/3644b41a7ccda62c066d525d956a08c9eac686c0 -> trunk/3644b41a7ccda62c066d525d956a08c9eac686c0 2025-07-17T06:36:52.5751229Z * [new tag] trunk/365ce465f393a6426b4ab3148da9a92445bf61d3 -> trunk/365ce465f393a6426b4ab3148da9a92445bf61d3 2025-07-17T06:36:52.5752039Z * [new tag] trunk/3684be056d9af667400ba071a116be8b1112bba8 -> trunk/3684be056d9af667400ba071a116be8b1112bba8 2025-07-17T06:36:52.5752849Z * [new tag] trunk/36a722e20d081c1a5a6df417d0f8333f6c082476 -> trunk/36a722e20d081c1a5a6df417d0f8333f6c082476 2025-07-17T06:36:52.5753639Z * [new tag] trunk/36bf81e36396c5f08eb8cab7f7858555282ca6c2 -> trunk/36bf81e36396c5f08eb8cab7f7858555282ca6c2 2025-07-17T06:36:52.5754445Z * [new tag] trunk/36dd598bdac5c665e46f05d00a38d6863a99615f -> trunk/36dd598bdac5c665e46f05d00a38d6863a99615f 2025-07-17T06:36:52.5755313Z * [new tag] trunk/36f7a027b595083f3a3761b407120b3f1f4e8634 -> trunk/36f7a027b595083f3a3761b407120b3f1f4e8634 2025-07-17T06:36:52.5756107Z * [new tag] trunk/36fd1ac9324429c095f8fbc5f6d2bd4b71f18d61 -> trunk/36fd1ac9324429c095f8fbc5f6d2bd4b71f18d61 2025-07-17T06:36:52.5756916Z * [new tag] trunk/370fc49dde9e8635957d9a910d43154085264225 -> trunk/370fc49dde9e8635957d9a910d43154085264225 2025-07-17T06:36:52.5757895Z * [new tag] trunk/376c16703c7f55a7eab9d5751bfc0e91af26a735 -> trunk/376c16703c7f55a7eab9d5751bfc0e91af26a735 2025-07-17T06:36:52.5758690Z * [new tag] trunk/378c121d5e1c8d2c24124f0c0b6cf08a1341e9d9 -> trunk/378c121d5e1c8d2c24124f0c0b6cf08a1341e9d9 2025-07-17T06:36:52.5759510Z * [new tag] trunk/37ccc532f75d8537c5b5d74b1c92a7f20df96353 -> trunk/37ccc532f75d8537c5b5d74b1c92a7f20df96353 2025-07-17T06:36:52.5760306Z * [new tag] trunk/380e30a723c1fb3530cad12ac44706412df7aa71 -> trunk/380e30a723c1fb3530cad12ac44706412df7aa71 2025-07-17T06:36:52.5761101Z * [new tag] trunk/3819584f12e2a46463a9799612ace1f59d76b9cd -> trunk/3819584f12e2a46463a9799612ace1f59d76b9cd 2025-07-17T06:36:52.5761907Z * [new tag] trunk/382598ef872b2afb9a03f8d88277a6c2edeb507f -> trunk/382598ef872b2afb9a03f8d88277a6c2edeb507f 2025-07-17T06:36:52.5762699Z * [new tag] trunk/382c6190c1329e96e71eef21a19737a3eda0040b -> trunk/382c6190c1329e96e71eef21a19737a3eda0040b 2025-07-17T06:36:52.5763573Z * [new tag] trunk/38371f693b07a485705119407da2e5dc64cec4eb -> trunk/38371f693b07a485705119407da2e5dc64cec4eb 2025-07-17T06:36:52.5764380Z * [new tag] trunk/38410cf9b57079f3360c1e79601973a01cb2588c -> trunk/38410cf9b57079f3360c1e79601973a01cb2588c 2025-07-17T06:36:52.5765169Z * [new tag] trunk/3863bbb55b38985c7d64c8a0be7beb2005a9cc07 -> trunk/3863bbb55b38985c7d64c8a0be7beb2005a9cc07 2025-07-17T06:36:52.5765983Z * [new tag] trunk/386aa7200324519ea9a8eff5eb1b3c0517756d24 -> trunk/386aa7200324519ea9a8eff5eb1b3c0517756d24 2025-07-17T06:36:52.5766789Z * [new tag] trunk/386bc9e2e990a6ac29bb90ba97b71c5b85e11080 -> trunk/386bc9e2e990a6ac29bb90ba97b71c5b85e11080 2025-07-17T06:36:52.5767603Z * [new tag] trunk/38757d94f1b3d65295b5ca2d7527ea0d582a5d3b -> trunk/38757d94f1b3d65295b5ca2d7527ea0d582a5d3b 2025-07-17T06:36:52.5768492Z * [new tag] trunk/38bfd462b8fb035de08a8c0d2b7b13eba78ee870 -> trunk/38bfd462b8fb035de08a8c0d2b7b13eba78ee870 2025-07-17T06:36:52.5769358Z * [new tag] trunk/38c4d05535f4e031a2ad5f39a4a415cc3a919cfb -> trunk/38c4d05535f4e031a2ad5f39a4a415cc3a919cfb 2025-07-17T06:36:52.5958834Z * [new tag] trunk/38e1e5d54ce42d42f8920ff46d9102800b94482d -> trunk/38e1e5d54ce42d42f8920ff46d9102800b94482d 2025-07-17T06:36:52.5959693Z * [new tag] trunk/38e5e81e55fc5d85d6cf8a83c96c88578995e3fe -> trunk/38e5e81e55fc5d85d6cf8a83c96c88578995e3fe 2025-07-17T06:36:52.5960615Z * [new tag] trunk/391473cca0b0fa9667ad54c972e7b63bc589cd6d -> trunk/391473cca0b0fa9667ad54c972e7b63bc589cd6d 2025-07-17T06:36:52.5961421Z * [new tag] trunk/39270430c9e4dc7010a9754f522774d17ae9d578 -> trunk/39270430c9e4dc7010a9754f522774d17ae9d578 2025-07-17T06:36:52.5962217Z * [new tag] trunk/39456edbbad97a09e6507792e1df3ee1f2a16f98 -> trunk/39456edbbad97a09e6507792e1df3ee1f2a16f98 2025-07-17T06:36:52.5963066Z * [new tag] trunk/398fca9dcfcb9f90eae9258d728fab71f5b59db2 -> trunk/398fca9dcfcb9f90eae9258d728fab71f5b59db2 2025-07-17T06:36:52.5963880Z * [new tag] trunk/39a8f66d5939e892bcb07ef97462af47d3201491 -> trunk/39a8f66d5939e892bcb07ef97462af47d3201491 2025-07-17T06:36:52.5964698Z * [new tag] trunk/39b71d11fc2dd9b4da6d23a34eb29aefbb1df672 -> trunk/39b71d11fc2dd9b4da6d23a34eb29aefbb1df672 2025-07-17T06:36:52.5965524Z * [new tag] trunk/39c605e8b3c13e7f6b5b1bbbe3f4060e24b2a3e4 -> trunk/39c605e8b3c13e7f6b5b1bbbe3f4060e24b2a3e4 2025-07-17T06:36:52.5966438Z * [new tag] trunk/3a43dba21ff5d01bb8b259af3839c90e447c6ec0 -> trunk/3a43dba21ff5d01bb8b259af3839c90e447c6ec0 2025-07-17T06:36:52.5967242Z * [new tag] trunk/3a5677a380c79810cc370dce6ef79b0871ddcf8c -> trunk/3a5677a380c79810cc370dce6ef79b0871ddcf8c 2025-07-17T06:36:52.5968236Z * [new tag] trunk/3a7ff829c597ef26a271d52ae2a3c8354b2f447e -> trunk/3a7ff829c597ef26a271d52ae2a3c8354b2f447e 2025-07-17T06:36:52.5969048Z * [new tag] trunk/3b4b5f8d474a9c664f622012c6a61414ea7799a9 -> trunk/3b4b5f8d474a9c664f622012c6a61414ea7799a9 2025-07-17T06:36:52.5969866Z * [new tag] trunk/3b6569b1ef4b9ff25f5b75fe0a216d6d084d573f -> trunk/3b6569b1ef4b9ff25f5b75fe0a216d6d084d573f 2025-07-17T06:36:52.5970698Z * [new tag] trunk/3b7c5e6fa5c0be64ddde3a8edc5bcdc10390f1e3 -> trunk/3b7c5e6fa5c0be64ddde3a8edc5bcdc10390f1e3 2025-07-17T06:36:52.5971518Z * [new tag] trunk/3bc6bdc8660c052d932f550d5734da6f801c2630 -> trunk/3bc6bdc8660c052d932f550d5734da6f801c2630 2025-07-17T06:36:52.5972431Z * [new tag] trunk/3bdd5ae334b85a114a2b62fa17dcf204413eda32 -> trunk/3bdd5ae334b85a114a2b62fa17dcf204413eda32 2025-07-17T06:36:52.5973257Z * [new tag] trunk/3beb915004f4e26b1e7c5e7692e6e8ca9b75de46 -> trunk/3beb915004f4e26b1e7c5e7692e6e8ca9b75de46 2025-07-17T06:36:52.5974175Z * [new tag] trunk/3bec588bf5c4eda9a4d42ae4c25e6f87af7f078c -> trunk/3bec588bf5c4eda9a4d42ae4c25e6f87af7f078c 2025-07-17T06:36:52.5975012Z * [new tag] trunk/3c2324c64ac6b7497d630788a66c82705bbb044e -> trunk/3c2324c64ac6b7497d630788a66c82705bbb044e 2025-07-17T06:36:52.5975805Z * [new tag] trunk/3c7079959c8e61d7acb4f704a0ecf74c61425c2e -> trunk/3c7079959c8e61d7acb4f704a0ecf74c61425c2e 2025-07-17T06:36:52.5976629Z * [new tag] trunk/3c72b9fd8feed4588a040bc681ffe83cc7acd26d -> trunk/3c72b9fd8feed4588a040bc681ffe83cc7acd26d 2025-07-17T06:36:52.5977505Z * [new tag] trunk/3cb11877aa30c04be7ffa9b4ca1722f1270a5828 -> trunk/3cb11877aa30c04be7ffa9b4ca1722f1270a5828 2025-07-17T06:36:52.5978378Z * [new tag] trunk/3cbae6dde8f2a9c3b4a3e4e079e97307c3aa52d8 -> trunk/3cbae6dde8f2a9c3b4a3e4e079e97307c3aa52d8 2025-07-17T06:36:52.5979218Z * [new tag] trunk/3d06ff82a84a118f0ed246864d4fc01ac4726328 -> trunk/3d06ff82a84a118f0ed246864d4fc01ac4726328 2025-07-17T06:36:52.5980018Z * [new tag] trunk/3d595fd5595f38bb5ed3d390dc50e1715e173ad6 -> trunk/3d595fd5595f38bb5ed3d390dc50e1715e173ad6 2025-07-17T06:36:52.5980832Z * [new tag] trunk/3d82a1dfb59fa5e248f7499a7ecdf784d4f61c0e -> trunk/3d82a1dfb59fa5e248f7499a7ecdf784d4f61c0e 2025-07-17T06:36:52.5981656Z * [new tag] trunk/3dabc351bb5581f69825eee6b24fbac9f9260241 -> trunk/3dabc351bb5581f69825eee6b24fbac9f9260241 2025-07-17T06:36:52.5982459Z * [new tag] trunk/3dd872e6d53560933d8d7fc11357617746d37168 -> trunk/3dd872e6d53560933d8d7fc11357617746d37168 2025-07-17T06:36:52.5983306Z * [new tag] trunk/3dda80e990121eaf156014fffe6e2a4602c8b195 -> trunk/3dda80e990121eaf156014fffe6e2a4602c8b195 2025-07-17T06:36:52.5984179Z * [new tag] trunk/3df6360e8c956edd25453b21f6b7f56e0366dcb4 -> trunk/3df6360e8c956edd25453b21f6b7f56e0366dcb4 2025-07-17T06:36:52.5984980Z * [new tag] trunk/3e131f7779af03b462f0598afb2569092b57c840 -> trunk/3e131f7779af03b462f0598afb2569092b57c840 2025-07-17T06:36:52.5985793Z * [new tag] trunk/3e38feb05fffdf5b181a1f4c7a6f43b00ef1c526 -> trunk/3e38feb05fffdf5b181a1f4c7a6f43b00ef1c526 2025-07-17T06:36:52.6174531Z * [new tag] trunk/3e56a9cdfb98a9b06568ee54e3157c800d98a17e -> trunk/3e56a9cdfb98a9b06568ee54e3157c800d98a17e 2025-07-17T06:36:52.6175488Z * [new tag] trunk/3eb7084f7a3657f4ba6626aca63721a0020f1bd7 -> trunk/3eb7084f7a3657f4ba6626aca63721a0020f1bd7 2025-07-17T06:36:52.6176340Z * [new tag] trunk/3ed4384f5b4bb7ae7d12298632a258385a51446e -> trunk/3ed4384f5b4bb7ae7d12298632a258385a51446e 2025-07-17T06:36:52.6177153Z * [new tag] trunk/3ee75b7eacef6758db602e87287ef9574609b327 -> trunk/3ee75b7eacef6758db602e87287ef9574609b327 2025-07-17T06:36:52.6178149Z * [new tag] trunk/3ee8828c87ce6186607c3d3ab3852518fca49228 -> trunk/3ee8828c87ce6186607c3d3ab3852518fca49228 2025-07-17T06:36:52.6178963Z * [new tag] trunk/3efb22e09111b92bedb01b2a8385c789fe69090a -> trunk/3efb22e09111b92bedb01b2a8385c789fe69090a 2025-07-17T06:36:52.6179779Z * [new tag] trunk/3effe0c293219b00a0eae7e139fe2d9aed84bc03 -> trunk/3effe0c293219b00a0eae7e139fe2d9aed84bc03 2025-07-17T06:36:52.6180587Z * [new tag] trunk/3f29642ecf039129032cc61c986d7b62807163c0 -> trunk/3f29642ecf039129032cc61c986d7b62807163c0 2025-07-17T06:36:52.6181448Z * [new tag] trunk/3f569f9af77d51d0328f16434e64252756681daa -> trunk/3f569f9af77d51d0328f16434e64252756681daa 2025-07-17T06:36:52.6182280Z * [new tag] trunk/3f65e38b73cb8f0d0b4fb2e9a6671085d371ec40 -> trunk/3f65e38b73cb8f0d0b4fb2e9a6671085d371ec40 2025-07-17T06:36:52.6183111Z * [new tag] trunk/3f69e3b3a07efd5e9aa86d37773bf2a24dc0ea70 -> trunk/3f69e3b3a07efd5e9aa86d37773bf2a24dc0ea70 2025-07-17T06:36:52.6184034Z * [new tag] trunk/3f83e3eeca0645f4b2cd16fa7d5a591e9cf810d4 -> trunk/3f83e3eeca0645f4b2cd16fa7d5a591e9cf810d4 2025-07-17T06:36:52.6184854Z * [new tag] trunk/3f920f3d8f5bd15d2222758f21f9a5d36e4dad1f -> trunk/3f920f3d8f5bd15d2222758f21f9a5d36e4dad1f 2025-07-17T06:36:52.6185662Z * [new tag] trunk/3fd84a8592a2a87d04f0e3f236a92605e2be12df -> trunk/3fd84a8592a2a87d04f0e3f236a92605e2be12df 2025-07-17T06:36:52.6186451Z * [new tag] trunk/400f439670ff8859c17a870eb83dc5cae5a9c2e4 -> trunk/400f439670ff8859c17a870eb83dc5cae5a9c2e4 2025-07-17T06:36:52.6187326Z * [new tag] trunk/402ae09e41005ebff686e97e2f120a6b79e2afb7 -> trunk/402ae09e41005ebff686e97e2f120a6b79e2afb7 2025-07-17T06:36:52.6188171Z * [new tag] trunk/404008e3efdabeaf5b140a3aff77131461c33a0a -> trunk/404008e3efdabeaf5b140a3aff77131461c33a0a 2025-07-17T06:36:52.6188982Z * [new tag] trunk/4048a144abf82041f9b6653d9d4aa600a6a5409a -> trunk/4048a144abf82041f9b6653d9d4aa600a6a5409a 2025-07-17T06:36:52.6189786Z * [new tag] trunk/408d9884b07cf7268961bae7138a6436916d4a43 -> trunk/408d9884b07cf7268961bae7138a6436916d4a43 2025-07-17T06:36:52.6190584Z * [new tag] trunk/40a785103cf94a1dbc3e0e43d1ed6c41fb60bedb -> trunk/40a785103cf94a1dbc3e0e43d1ed6c41fb60bedb 2025-07-17T06:36:52.6191407Z * [new tag] trunk/40d02eb481670325ba80dcb42b40c3ebb347f1c7 -> trunk/40d02eb481670325ba80dcb42b40c3ebb347f1c7 2025-07-17T06:36:52.6192216Z * [new tag] trunk/40e39ae21f15f200828ab32826bed1a4b62532ba -> trunk/40e39ae21f15f200828ab32826bed1a4b62532ba 2025-07-17T06:36:52.6193052Z * [new tag] trunk/40fefe2871a5561b67ec268bab19db60e733f2d4 -> trunk/40fefe2871a5561b67ec268bab19db60e733f2d4 2025-07-17T06:36:52.6193935Z * [new tag] trunk/414ad470450c654d97e73bef704a7b596b5b4cbc -> trunk/414ad470450c654d97e73bef704a7b596b5b4cbc 2025-07-17T06:36:52.6194748Z * [new tag] trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e -> trunk/415dfabe9b569b71098a2f874f3fc67ad2a4fc2e 2025-07-17T06:36:52.6195623Z * [new tag] trunk/4162c0f70297818abd70f2fe7424dcd3cc9b2543 -> trunk/4162c0f70297818abd70f2fe7424dcd3cc9b2543 2025-07-17T06:36:52.6196441Z * [new tag] trunk/41910d7a94d2f3ffe06f7c0c30971c71b9c3b09e -> trunk/41910d7a94d2f3ffe06f7c0c30971c71b9c3b09e 2025-07-17T06:36:52.6197227Z * [new tag] trunk/41971335c98b0881e0784085096eceace575d563 -> trunk/41971335c98b0881e0784085096eceace575d563 2025-07-17T06:36:52.6198031Z * [new tag] trunk/41e8b826d07bbf707bc2c64a78b4dc15e8f3c358 -> trunk/41e8b826d07bbf707bc2c64a78b4dc15e8f3c358 2025-07-17T06:36:52.6198838Z * [new tag] trunk/41f6acef83d280a18909d58f8442e145c9e7ea6f -> trunk/41f6acef83d280a18909d58f8442e145c9e7ea6f 2025-07-17T06:36:52.6199719Z * [new tag] trunk/42015db6a9602f40250f9afc18a3fbad4ca4ef39 -> trunk/42015db6a9602f40250f9afc18a3fbad4ca4ef39 2025-07-17T06:36:52.6200679Z * [new tag] trunk/4237ee3c33b0edb01db96d8c1ecf8f5d2cf184bc -> trunk/4237ee3c33b0edb01db96d8c1ecf8f5d2cf184bc 2025-07-17T06:36:52.6536851Z * [new tag] trunk/4283d96bcdf9aaa4289985267186d74ba6534ee5 -> trunk/4283d96bcdf9aaa4289985267186d74ba6534ee5 2025-07-17T06:36:52.6537803Z * [new tag] trunk/42b48ee67229286127390000f103a11dfc8901f5 -> trunk/42b48ee67229286127390000f103a11dfc8901f5 2025-07-17T06:36:52.6538610Z * [new tag] trunk/42ff6a4a5c4e0d77bd18fcc5426622f1b8f20add -> trunk/42ff6a4a5c4e0d77bd18fcc5426622f1b8f20add 2025-07-17T06:36:52.6539417Z * [new tag] trunk/430cc1c636380a7d50652df646274f7008a76747 -> trunk/430cc1c636380a7d50652df646274f7008a76747 2025-07-17T06:36:52.6540222Z * [new tag] trunk/4311aea5e7568c9956a9f0d694f1980c387b6a37 -> trunk/4311aea5e7568c9956a9f0d694f1980c387b6a37 2025-07-17T06:36:52.6541193Z * [new tag] trunk/433a2471023f77a4e62e880ef59f22caf939c227 -> trunk/433a2471023f77a4e62e880ef59f22caf939c227 2025-07-17T06:36:52.6541994Z * [new tag] trunk/43523bf1682c2926a84a1f65f00fabd3d34db4f2 -> trunk/43523bf1682c2926a84a1f65f00fabd3d34db4f2 2025-07-17T06:36:52.6542805Z * [new tag] trunk/43a09189c68fe02bd9d8433c4a144ffc9bbf895c -> trunk/43a09189c68fe02bd9d8433c4a144ffc9bbf895c 2025-07-17T06:36:52.6543687Z * [new tag] trunk/43f72163275ce1503b1de1480642c61d20e6158d -> trunk/43f72163275ce1503b1de1480642c61d20e6158d 2025-07-17T06:36:52.6544486Z * [new tag] trunk/442aca44d603ae6c2b7d2aa2190cc91f970c4202 -> trunk/442aca44d603ae6c2b7d2aa2190cc91f970c4202 2025-07-17T06:36:52.6545316Z * [new tag] trunk/44303caabfa0bdc5688d693d491ba7c3fdb40f3a -> trunk/44303caabfa0bdc5688d693d491ba7c3fdb40f3a 2025-07-17T06:36:52.6546132Z * [new tag] trunk/443b5b43c3d40b89bbb5db70f3f05a44b2a4ec66 -> trunk/443b5b43c3d40b89bbb5db70f3f05a44b2a4ec66 2025-07-17T06:36:52.6546955Z * [new tag] trunk/4486a6dbfd65ef490cfe73e0630929e85f61ee16 -> trunk/4486a6dbfd65ef490cfe73e0630929e85f61ee16 2025-07-17T06:36:52.6547762Z * [new tag] trunk/4491326fb0c0e67eca1598ae33c41cdfced2cd33 -> trunk/4491326fb0c0e67eca1598ae33c41cdfced2cd33 2025-07-17T06:36:52.6548565Z * [new tag] trunk/44a5f93462bd4aa4f36ae2573685ed7ba458c4c9 -> trunk/44a5f93462bd4aa4f36ae2573685ed7ba458c4c9 2025-07-17T06:36:52.6549473Z * [new tag] trunk/44d0800d60e78fef8ab332e307c3134e3c276ba4 -> trunk/44d0800d60e78fef8ab332e307c3134e3c276ba4 2025-07-17T06:36:52.6550278Z * [new tag] trunk/44df7cf28dd37a4d900eb6b2f78dabf72b209d9b -> trunk/44df7cf28dd37a4d900eb6b2f78dabf72b209d9b 2025-07-17T06:36:52.6551075Z * [new tag] trunk/44f5b9312290866584088e2e42228c484f669faf -> trunk/44f5b9312290866584088e2e42228c484f669faf 2025-07-17T06:36:52.6551867Z * [new tag] trunk/4500a4aa50141ed30e093ef8491b30d1d1287348 -> trunk/4500a4aa50141ed30e093ef8491b30d1d1287348 2025-07-17T06:36:52.6552662Z * [new tag] trunk/451b525bf0cb8840adbde1b6280c7b199f733ced -> trunk/451b525bf0cb8840adbde1b6280c7b199f733ced 2025-07-17T06:36:52.6553468Z * [new tag] trunk/45382b284d03015f3e6eb83a959f0e54a3ebd688 -> trunk/45382b284d03015f3e6eb83a959f0e54a3ebd688 2025-07-17T06:36:52.6554270Z * [new tag] trunk/453bc9fbdfb97fef925477cbbf4948e93fd22756 -> trunk/453bc9fbdfb97fef925477cbbf4948e93fd22756 2025-07-17T06:36:52.6555247Z * [new tag] trunk/45596ec58f5bc5489911ee932c2a55a7ff40d0a0 -> trunk/45596ec58f5bc5489911ee932c2a55a7ff40d0a0 2025-07-17T06:36:52.6556044Z * [new tag] trunk/455dfd258980294f0745bd90aee12a323e37224d -> trunk/455dfd258980294f0745bd90aee12a323e37224d 2025-07-17T06:36:52.6556821Z * [new tag] trunk/456b7451c78096fd512c60e26cc618386a251bc7 -> trunk/456b7451c78096fd512c60e26cc618386a251bc7 2025-07-17T06:36:52.6557717Z * [new tag] trunk/456f40cb09c6e5e0cd268d1601b89fc5ac1987ea -> trunk/456f40cb09c6e5e0cd268d1601b89fc5ac1987ea 2025-07-17T06:36:52.6558531Z * [new tag] trunk/4574b39aa45f0250cba04aa3cb053a686c4888b2 -> trunk/4574b39aa45f0250cba04aa3cb053a686c4888b2 2025-07-17T06:36:52.6559338Z * [new tag] trunk/457dd79927db6ae7f1c53f36768b7ac93b61e507 -> trunk/457dd79927db6ae7f1c53f36768b7ac93b61e507 2025-07-17T06:36:52.6560134Z * [new tag] trunk/4585c33e74079af8e9067bf39970b93c3f13629f -> trunk/4585c33e74079af8e9067bf39970b93c3f13629f 2025-07-17T06:36:52.6561016Z * [new tag] trunk/458cc7213baf01ab742a2250c7a31f7796fcb1ef -> trunk/458cc7213baf01ab742a2250c7a31f7796fcb1ef 2025-07-17T06:36:52.6561825Z * [new tag] trunk/45c5a232373cac1b1524259f20758bfb56dde5f2 -> trunk/45c5a232373cac1b1524259f20758bfb56dde5f2 2025-07-17T06:36:52.6562626Z * [new tag] trunk/4609699bfd440d1fe603c5ad9a942e45410094c1 -> trunk/4609699bfd440d1fe603c5ad9a942e45410094c1 2025-07-17T06:36:52.6563496Z * [new tag] trunk/4628f1b7a9313df98346d582d9a789661a823e27 -> trunk/4628f1b7a9313df98346d582d9a789661a823e27 2025-07-17T06:36:52.6756614Z * [new tag] trunk/463fe36532bc165b46c12cef4948f039434e0924 -> trunk/463fe36532bc165b46c12cef4948f039434e0924 2025-07-17T06:36:52.6757483Z * [new tag] trunk/4657a84bc55b6ce12f21706de2b90e1d43784f57 -> trunk/4657a84bc55b6ce12f21706de2b90e1d43784f57 2025-07-17T06:36:52.6758284Z * [new tag] trunk/46915b13614dbac90724d0f1802b8e0db037c9e4 -> trunk/46915b13614dbac90724d0f1802b8e0db037c9e4 2025-07-17T06:36:52.6759101Z * [new tag] trunk/473208cb18d543e8f968918a6b3c9defa8a4ae10 -> trunk/473208cb18d543e8f968918a6b3c9defa8a4ae10 2025-07-17T06:36:52.6759919Z * [new tag] trunk/476874b37fff42a46d25dfac720ef4c71ec74fe0 -> trunk/476874b37fff42a46d25dfac720ef4c71ec74fe0 2025-07-17T06:36:52.6760737Z * [new tag] trunk/4781b0ee6057fdf2a82d2f9ed30299f219267a71 -> trunk/4781b0ee6057fdf2a82d2f9ed30299f219267a71 2025-07-17T06:36:52.6761563Z * [new tag] trunk/4781d72faa6b72bf96fde9bedfca06a5285eebfb -> trunk/4781d72faa6b72bf96fde9bedfca06a5285eebfb 2025-07-17T06:36:52.6762359Z * [new tag] trunk/47c8810b5275179833d6b33ca3d70922f485272c -> trunk/47c8810b5275179833d6b33ca3d70922f485272c 2025-07-17T06:36:52.6763150Z * [new tag] trunk/47f10d0ad0dda281c886ff08ac2f938207027316 -> trunk/47f10d0ad0dda281c886ff08ac2f938207027316 2025-07-17T06:36:52.6763954Z * [new tag] trunk/4805a6ead6f1e7f32351056e2602be4e908f69b7 -> trunk/4805a6ead6f1e7f32351056e2602be4e908f69b7 2025-07-17T06:36:52.6764737Z * [new tag] trunk/48315181c75e43cab5957197d42e053d66b3fe1c -> trunk/48315181c75e43cab5957197d42e053d66b3fe1c 2025-07-17T06:36:52.6765521Z * [new tag] trunk/4851863e3f98e1ffba1d5801f3533031ef4f905d -> trunk/4851863e3f98e1ffba1d5801f3533031ef4f905d 2025-07-17T06:36:52.6766374Z * [new tag] trunk/48560eef80e97e855cbb8e2814acefe8f5cc6fbd -> trunk/48560eef80e97e855cbb8e2814acefe8f5cc6fbd 2025-07-17T06:36:52.6767278Z * [new tag] trunk/4886ba64dceb24b8a0444e574abb907a18fdeee9 -> trunk/4886ba64dceb24b8a0444e574abb907a18fdeee9 2025-07-17T06:36:52.6768094Z * [new tag] trunk/48921721d8ed32a2c7f80605b434f9fcb2f948b4 -> trunk/48921721d8ed32a2c7f80605b434f9fcb2f948b4 2025-07-17T06:36:52.6768900Z * [new tag] trunk/48de3da2539cecaee14af8e3841c133c9c0c0f1c -> trunk/48de3da2539cecaee14af8e3841c133c9c0c0f1c 2025-07-17T06:36:52.6769731Z * [new tag] trunk/48e7b62d3abda4a3eac2f538c9f35e56093c4ece -> trunk/48e7b62d3abda4a3eac2f538c9f35e56093c4ece 2025-07-17T06:36:52.6770535Z * [new tag] trunk/4918502d2e685270cea9f1fd733a3414ac1ca5d7 -> trunk/4918502d2e685270cea9f1fd733a3414ac1ca5d7 2025-07-17T06:36:52.6771481Z * [new tag] trunk/493bd625e252dea02e871346beaa49745b4b2663 -> trunk/493bd625e252dea02e871346beaa49745b4b2663 2025-07-17T06:36:52.6772273Z * [new tag] trunk/493f42a5417a8ac33d1070478d1869ea4f207b5b -> trunk/493f42a5417a8ac33d1070478d1869ea4f207b5b 2025-07-17T06:36:52.6773060Z * [new tag] trunk/495c317005ad656dee752b6ad7bd5541b04e388e -> trunk/495c317005ad656dee752b6ad7bd5541b04e388e 2025-07-17T06:36:52.6773857Z * [new tag] trunk/49888e6be0dcc00ba546746425893bb17c287248 -> trunk/49888e6be0dcc00ba546746425893bb17c287248 2025-07-17T06:36:52.6774670Z * [new tag] trunk/49ee1e7106db00778345efd7c70cc12d2ca6a91a -> trunk/49ee1e7106db00778345efd7c70cc12d2ca6a91a 2025-07-17T06:36:52.6775484Z * [new tag] trunk/4a26bb8a12ba5cb437ed5b7f035b5b533e07549e -> trunk/4a26bb8a12ba5cb437ed5b7f035b5b533e07549e 2025-07-17T06:36:52.6776320Z * [new tag] trunk/4a4cac0cefea3661cc69cfdafdba64832ee0841a -> trunk/4a4cac0cefea3661cc69cfdafdba64832ee0841a 2025-07-17T06:36:52.6777251Z * [new tag] trunk/4a80ddfbe70bf6b75acc3177e5d2095b285da841 -> trunk/4a80ddfbe70bf6b75acc3177e5d2095b285da841 2025-07-17T06:36:52.6778066Z * [new tag] trunk/4a8f5e752beb5a6809ba866c83f32dd464a47bfd -> trunk/4a8f5e752beb5a6809ba866c83f32dd464a47bfd 2025-07-17T06:36:52.6778879Z * [new tag] trunk/4a954fc1857ff41be604e8cae68908d41124b419 -> trunk/4a954fc1857ff41be604e8cae68908d41124b419 2025-07-17T06:36:52.6779689Z * [new tag] trunk/4ab4d29cbee1f90daf14444d5ca3a53653c7784d -> trunk/4ab4d29cbee1f90daf14444d5ca3a53653c7784d 2025-07-17T06:36:52.6780518Z * [new tag] trunk/4b11428cb5b3d97f3068a2dc4c55cee6ddd41979 -> trunk/4b11428cb5b3d97f3068a2dc4c55cee6ddd41979 2025-07-17T06:36:52.6781338Z * [new tag] trunk/4b4c2a7b1dfd88313801878c5b4e3855fe5232df -> trunk/4b4c2a7b1dfd88313801878c5b4e3855fe5232df 2025-07-17T06:36:52.6782147Z * [new tag] trunk/4b55871e06d6bad54eac45e45a9af615d758a39f -> trunk/4b55871e06d6bad54eac45e45a9af615d758a39f 2025-07-17T06:36:52.6974612Z * [new tag] trunk/4b6cbf528b8f7b95e02e3a0233945e0bb8b00f44 -> trunk/4b6cbf528b8f7b95e02e3a0233945e0bb8b00f44 2025-07-17T06:36:52.6975462Z * [new tag] trunk/4b9a6f7211123511e856ac8c8524bc332a741241 -> trunk/4b9a6f7211123511e856ac8c8524bc332a741241 2025-07-17T06:36:52.6976281Z * [new tag] trunk/4bb936d8b77c959efbff0bdb68f63e5a5faf60a9 -> trunk/4bb936d8b77c959efbff0bdb68f63e5a5faf60a9 2025-07-17T06:36:52.6977109Z * [new tag] trunk/4bc3e4b497948af0a48d08b427339efc8960fedb -> trunk/4bc3e4b497948af0a48d08b427339efc8960fedb 2025-07-17T06:36:52.6977911Z * [new tag] trunk/4bd18e31e5a38d0e84ce915b1fa124058c6373fa -> trunk/4bd18e31e5a38d0e84ce915b1fa124058c6373fa 2025-07-17T06:36:52.6978734Z * [new tag] trunk/4c0091fda65b714fa73671a15e379f814af153e0 -> trunk/4c0091fda65b714fa73671a15e379f814af153e0 2025-07-17T06:36:52.6979576Z * [new tag] trunk/4c0aa37dda605e7cf3372c71940d7e3a93ecef8d -> trunk/4c0aa37dda605e7cf3372c71940d7e3a93ecef8d 2025-07-17T06:36:52.6980379Z * [new tag] trunk/4c3da611c2a80fa5073b164974d7edc0577b9ca7 -> trunk/4c3da611c2a80fa5073b164974d7edc0577b9ca7 2025-07-17T06:36:52.6981181Z * [new tag] trunk/4c59edf0c5838087cbe09c67c6e0e776467a5f2d -> trunk/4c59edf0c5838087cbe09c67c6e0e776467a5f2d 2025-07-17T06:36:52.6981990Z * [new tag] trunk/4c8eb65efb147cd263fc02f5588683f530363a0f -> trunk/4c8eb65efb147cd263fc02f5588683f530363a0f 2025-07-17T06:36:52.6982801Z * [new tag] trunk/4cbbc8b4583e9dac4af7e8d1d8535546de21178c -> trunk/4cbbc8b4583e9dac4af7e8d1d8535546de21178c 2025-07-17T06:36:52.6983632Z * [new tag] trunk/4cc13c4af6dbd5aa36545ef577d0bee517cf8c57 -> trunk/4cc13c4af6dbd5aa36545ef577d0bee517cf8c57 2025-07-17T06:36:52.6984585Z * [new tag] trunk/4cd6e96bf0d13f168772f6ad44267b1ac7632a97 -> trunk/4cd6e96bf0d13f168772f6ad44267b1ac7632a97 2025-07-17T06:36:52.6985426Z * [new tag] trunk/4cdbdcdbcf2b7f7a52a5c61cb35064f7b4aa2e44 -> trunk/4cdbdcdbcf2b7f7a52a5c61cb35064f7b4aa2e44 2025-07-17T06:36:52.6986267Z * [new tag] trunk/4ce6e6ec8890a3f6ee604c9efb3ff153825ce575 -> trunk/4ce6e6ec8890a3f6ee604c9efb3ff153825ce575 2025-07-17T06:36:52.6987079Z * [new tag] trunk/4cfc0a320897b6ec75b85cfc07bc29009a824177 -> trunk/4cfc0a320897b6ec75b85cfc07bc29009a824177 2025-07-17T06:36:52.6987885Z * [new tag] trunk/4d055982e38f59fdb2a4c9d8855e58548bc42c12 -> trunk/4d055982e38f59fdb2a4c9d8855e58548bc42c12 2025-07-17T06:36:52.6988697Z * [new tag] trunk/4d3ecefda5a41df678fd68b020c521db95e9fbde -> trunk/4d3ecefda5a41df678fd68b020c521db95e9fbde 2025-07-17T06:36:52.6989510Z * [new tag] trunk/4d5d627e5ff3310318f9df80348ee419324228df -> trunk/4d5d627e5ff3310318f9df80348ee419324228df 2025-07-17T06:36:52.6990403Z * [new tag] trunk/4d9d884c3f5adc89b59d25d5a080498b76f9bb39 -> trunk/4d9d884c3f5adc89b59d25d5a080498b76f9bb39 2025-07-17T06:36:52.6991213Z * [new tag] trunk/4da98351b9e231bbbe83b5c590cf7d2ea382333a -> trunk/4da98351b9e231bbbe83b5c590cf7d2ea382333a 2025-07-17T06:36:52.6992036Z * [new tag] trunk/4dce5b71a0751aa4287c3a80adf07afc773ec4db -> trunk/4dce5b71a0751aa4287c3a80adf07afc773ec4db 2025-07-17T06:36:52.6992844Z * [new tag] trunk/4e13eca713c60ca63c1116823b99d2461a7422ef -> trunk/4e13eca713c60ca63c1116823b99d2461a7422ef 2025-07-17T06:36:52.6993630Z * [new tag] trunk/4e19477196547eb2e8157d6d132689373ffcf0fa -> trunk/4e19477196547eb2e8157d6d132689373ffcf0fa 2025-07-17T06:36:52.6994420Z * [new tag] trunk/4e8dd11be17a974e0ee5503b3061d4d47467844f -> trunk/4e8dd11be17a974e0ee5503b3061d4d47467844f 2025-07-17T06:36:52.6995299Z * [new tag] trunk/4ebd2690654ffe487c43941ebaea41b99914d8b7 -> trunk/4ebd2690654ffe487c43941ebaea41b99914d8b7 2025-07-17T06:36:52.6996126Z * [new tag] trunk/4ed1b03f7275075b1783d1deab946ced4ceba4d6 -> trunk/4ed1b03f7275075b1783d1deab946ced4ceba4d6 2025-07-17T06:36:52.6996927Z * [new tag] trunk/4ee4863232b9e07728d85254768bcba3aadc9b9a -> trunk/4ee4863232b9e07728d85254768bcba3aadc9b9a 2025-07-17T06:36:52.6997727Z * [new tag] trunk/4f36743f5eef2d9c40357eb5d8d8b1aeeacfbb2a -> trunk/4f36743f5eef2d9c40357eb5d8d8b1aeeacfbb2a 2025-07-17T06:36:52.6998539Z * [new tag] trunk/4f5b34427b57e8b876d12e6ce551f04a7c31cacf -> trunk/4f5b34427b57e8b876d12e6ce551f04a7c31cacf 2025-07-17T06:36:52.6999364Z * [new tag] trunk/4f5be5661240427fbbfbe1d137dce53ca32846b5 -> trunk/4f5be5661240427fbbfbe1d137dce53ca32846b5 2025-07-17T06:36:52.7000177Z * [new tag] trunk/4f70fbbd16d1f0d62af082246a95e56cffccc860 -> trunk/4f70fbbd16d1f0d62af082246a95e56cffccc860 2025-07-17T06:36:52.7001117Z * [new tag] trunk/4ff0e033c16aae064f05ee9300053cd304891673 -> trunk/4ff0e033c16aae064f05ee9300053cd304891673 2025-07-17T06:36:52.7471174Z * [new tag] trunk/4ff9b7fa3116b1c429e577830ac6e816734ad029 -> trunk/4ff9b7fa3116b1c429e577830ac6e816734ad029 2025-07-17T06:36:52.7472017Z * [new tag] trunk/502486d9466e81cda76c91d33eb869235480bee9 -> trunk/502486d9466e81cda76c91d33eb869235480bee9 2025-07-17T06:36:52.7472938Z * [new tag] trunk/503362d019b3782581492af7767945dbd75ca1c9 -> trunk/503362d019b3782581492af7767945dbd75ca1c9 2025-07-17T06:36:52.7473791Z * [new tag] trunk/508cdc4fc9f7a91b5fd3f20de38d673daebf1af3 -> trunk/508cdc4fc9f7a91b5fd3f20de38d673daebf1af3 2025-07-17T06:36:52.7474594Z * [new tag] trunk/50940270ae179134cd4f9072f04ffdd55daf808e -> trunk/50940270ae179134cd4f9072f04ffdd55daf808e 2025-07-17T06:36:52.7475460Z * [new tag] trunk/50b2069b61942e923528c94ccbbc8ab5e92c381e -> trunk/50b2069b61942e923528c94ccbbc8ab5e92c381e 2025-07-17T06:36:52.7476465Z * [new tag] trunk/50d8168c8b62990fda86398c9dee1dc8cbd6908d -> trunk/50d8168c8b62990fda86398c9dee1dc8cbd6908d 2025-07-17T06:36:52.7477255Z * [new tag] trunk/510c398a4f1dff9217938159d605290149358332 -> trunk/510c398a4f1dff9217938159d605290149358332 2025-07-17T06:36:52.7478050Z * [new tag] trunk/5116293f7eb587ada6076f3c3ea1711a0ec7ab4a -> trunk/5116293f7eb587ada6076f3c3ea1711a0ec7ab4a 2025-07-17T06:36:52.7478847Z * [new tag] trunk/5118a8f8a5a7906e26bcbd35370de3416b5cdab0 -> trunk/5118a8f8a5a7906e26bcbd35370de3416b5cdab0 2025-07-17T06:36:52.7479687Z * [new tag] trunk/51560797ce70aea353585d8381ee88c2e6c81075 -> trunk/51560797ce70aea353585d8381ee88c2e6c81075 2025-07-17T06:36:52.7480487Z * [new tag] trunk/517d2995e09603017f07f065c1ae5b8d25962cd2 -> trunk/517d2995e09603017f07f065c1ae5b8d25962cd2 2025-07-17T06:36:52.7481363Z * [new tag] trunk/51853b358e698f6a42c1eef045ab8fa766129ee1 -> trunk/51853b358e698f6a42c1eef045ab8fa766129ee1 2025-07-17T06:36:52.7482171Z * [new tag] trunk/51a708ffc679b13f99e4c7cf19bc00082a3266a6 -> trunk/51a708ffc679b13f99e4c7cf19bc00082a3266a6 2025-07-17T06:36:52.7482985Z * [new tag] trunk/51eb8e8f84bb9aa901cff17dd649e18b17a8908c -> trunk/51eb8e8f84bb9aa901cff17dd649e18b17a8908c 2025-07-17T06:36:52.7483794Z * [new tag] trunk/52214485747ceb0ea47ce5a09babb0b82b3282b8 -> trunk/52214485747ceb0ea47ce5a09babb0b82b3282b8 2025-07-17T06:36:52.7484597Z * [new tag] trunk/522a18bd6c094c766c0de9ef539682d1a3f04a15 -> trunk/522a18bd6c094c766c0de9ef539682d1a3f04a15 2025-07-17T06:36:52.7485387Z * [new tag] trunk/523b637cbeb69665072a2cf489ec1c5313b57670 -> trunk/523b637cbeb69665072a2cf489ec1c5313b57670 2025-07-17T06:36:52.7486216Z * [new tag] trunk/524e8270955788c53473497fd2cc16c5aa0e4c67 -> trunk/524e8270955788c53473497fd2cc16c5aa0e4c67 2025-07-17T06:36:52.7487020Z * [new tag] trunk/5264f8cd8d08272003298cdefe6bd60b1b8c80b4 -> trunk/5264f8cd8d08272003298cdefe6bd60b1b8c80b4 2025-07-17T06:36:52.7487795Z * [new tag] trunk/52772765e034622d1a86476e4bb19c28e3945f74 -> trunk/52772765e034622d1a86476e4bb19c28e3945f74 2025-07-17T06:36:52.7488572Z * [new tag] trunk/5285d1024376396a00fe750fe3d628c65dc26254 -> trunk/5285d1024376396a00fe750fe3d628c65dc26254 2025-07-17T06:36:52.7489367Z * [new tag] trunk/529e0357c6c4e74f8cd32c29198c5f1c9f6e329d -> trunk/529e0357c6c4e74f8cd32c29198c5f1c9f6e329d 2025-07-17T06:36:52.7490160Z * [new tag] trunk/52e4e41cbc36a5cf44395ff84ca2d069263560de -> trunk/52e4e41cbc36a5cf44395ff84ca2d069263560de 2025-07-17T06:36:52.7490981Z * [new tag] trunk/52edfb2cbcdded865645cc82bb1bb501fdcbdb52 -> trunk/52edfb2cbcdded865645cc82bb1bb501fdcbdb52 2025-07-17T06:36:52.7491810Z * [new tag] trunk/52f873adc23e7069ce95933d97ee514022cfbf7d -> trunk/52f873adc23e7069ce95933d97ee514022cfbf7d 2025-07-17T06:36:52.7492696Z * [new tag] trunk/53057fc16af2d381a61fe891b52ac8731ee9dfae -> trunk/53057fc16af2d381a61fe891b52ac8731ee9dfae 2025-07-17T06:36:52.7493503Z * [new tag] trunk/534c454e77ac0eefd52d63c60d42911e7f9617ea -> trunk/534c454e77ac0eefd52d63c60d42911e7f9617ea 2025-07-17T06:36:52.7494289Z * [new tag] trunk/53ab73090eb66d96e45ec134e41cf67266208954 -> trunk/53ab73090eb66d96e45ec134e41cf67266208954 2025-07-17T06:36:52.7495102Z * [new tag] trunk/53cd18f6b31bc2ea62985fda87e96aa17cd11bc1 -> trunk/53cd18f6b31bc2ea62985fda87e96aa17cd11bc1 2025-07-17T06:36:52.7495913Z * [new tag] trunk/53d06e18d9b165cb8aa0a5a3cbb6837ac3000c59 -> trunk/53d06e18d9b165cb8aa0a5a3cbb6837ac3000c59 2025-07-17T06:36:52.7496723Z * [new tag] trunk/53e0b9c3936176521ed8d71c00abd5b7499057c2 -> trunk/53e0b9c3936176521ed8d71c00abd5b7499057c2 2025-07-17T06:36:52.7693680Z * [new tag] trunk/541297daae63f74a90bac52c5db3540bf84bc971 -> trunk/541297daae63f74a90bac52c5db3540bf84bc971 2025-07-17T06:36:52.7694648Z * [new tag] trunk/5430990bd7d050f249b1cdf1f7d1016c4b17488d -> trunk/5430990bd7d050f249b1cdf1f7d1016c4b17488d 2025-07-17T06:36:52.7695545Z * [new tag] trunk/5435e7539930be7bd038683ce096038b30c5bb5f -> trunk/5435e7539930be7bd038683ce096038b30c5bb5f 2025-07-17T06:36:52.7696481Z * [new tag] trunk/545fbd58dc8b4f688f6b259cb671b3ec16a46810 -> trunk/545fbd58dc8b4f688f6b259cb671b3ec16a46810 2025-07-17T06:36:52.7697380Z * [new tag] trunk/54701a0c943245402fceeab0e55d7aa394303c20 -> trunk/54701a0c943245402fceeab0e55d7aa394303c20 2025-07-17T06:36:52.7698253Z * [new tag] trunk/5484890539823d9867c74209588abe095c9232a1 -> trunk/5484890539823d9867c74209588abe095c9232a1 2025-07-17T06:36:52.7699175Z * [new tag] trunk/548c9d8281d9b3d6d12e90c40b3387faf0e24c61 -> trunk/548c9d8281d9b3d6d12e90c40b3387faf0e24c61 2025-07-17T06:36:52.7700288Z * [new tag] trunk/54976bca103fcf2b5037cc0cd1b37c4639fcf779 -> trunk/54976bca103fcf2b5037cc0cd1b37c4639fcf779 2025-07-17T06:36:52.7701215Z * [new tag] trunk/54998c2daaf5b8919cf82367492dd3c5177ab935 -> trunk/54998c2daaf5b8919cf82367492dd3c5177ab935 2025-07-17T06:36:52.7702138Z * [new tag] trunk/54a4d34d100f4ebe45f486451967daba896e839c -> trunk/54a4d34d100f4ebe45f486451967daba896e839c 2025-07-17T06:36:52.7703045Z * [new tag] trunk/54a7e5b5983d237b324b50703bcb0919a6c4c296 -> trunk/54a7e5b5983d237b324b50703bcb0919a6c4c296 2025-07-17T06:36:52.7703935Z * [new tag] trunk/54b8087f638de57c1c93c4624d03f2f2c512b90e -> trunk/54b8087f638de57c1c93c4624d03f2f2c512b90e 2025-07-17T06:36:52.7704811Z * [new tag] trunk/55108074c0795be3b617d3b13b06794f63e1f8ca -> trunk/55108074c0795be3b617d3b13b06794f63e1f8ca 2025-07-17T06:36:52.7705744Z * [new tag] trunk/554b5680405e6197a985040ffe88157beb637450 -> trunk/554b5680405e6197a985040ffe88157beb637450 2025-07-17T06:36:52.7706617Z * [new tag] trunk/555f3562541992b66a550eca8e8740884b1247f8 -> trunk/555f3562541992b66a550eca8e8740884b1247f8 2025-07-17T06:36:52.7707494Z * [new tag] trunk/5596cefba623fcc0739f1e9568131a85973cf1f9 -> trunk/5596cefba623fcc0739f1e9568131a85973cf1f9 2025-07-17T06:36:52.7708421Z * [new tag] trunk/55d888a616be3c94d8e4073b4d1580541692997d -> trunk/55d888a616be3c94d8e4073b4d1580541692997d 2025-07-17T06:36:52.7709313Z * [new tag] trunk/55dae0bf7a4b501be91d0e022e675337dfe288ff -> trunk/55dae0bf7a4b501be91d0e022e675337dfe288ff 2025-07-17T06:36:52.7710255Z * [new tag] trunk/55ef7b15e0b2de903bfc26adfb0788ecfbcb4ed4 -> trunk/55ef7b15e0b2de903bfc26adfb0788ecfbcb4ed4 2025-07-17T06:36:52.7711185Z * [new tag] trunk/5606c516fd87e5c3594177e4ca64c3cac7fdafd5 -> trunk/5606c516fd87e5c3594177e4ca64c3cac7fdafd5 2025-07-17T06:36:52.7712089Z * [new tag] trunk/5633283574c458bd6a3cbb6a0a890f0cb9c8b2b5 -> trunk/5633283574c458bd6a3cbb6a0a890f0cb9c8b2b5 2025-07-17T06:36:52.7713030Z * [new tag] trunk/563fd95563c5edd732ae260b3bd3d0c38822ab57 -> trunk/563fd95563c5edd732ae260b3bd3d0c38822ab57 2025-07-17T06:36:52.7713912Z * [new tag] trunk/565fd079099d33a81c11d7b36581f09441ba6efa -> trunk/565fd079099d33a81c11d7b36581f09441ba6efa 2025-07-17T06:36:52.7714806Z * [new tag] trunk/568ca89bac9a80a66d664593a26ae69ac604796e -> trunk/568ca89bac9a80a66d664593a26ae69ac604796e 2025-07-17T06:36:52.7715848Z * [new tag] trunk/5692cbb818f1af9fcce9234e202d232afa5f3fa3 -> trunk/5692cbb818f1af9fcce9234e202d232afa5f3fa3 2025-07-17T06:36:52.7716765Z * [new tag] trunk/56b03df6ac5b4185a2b7b92f253565500a5b51ca -> trunk/56b03df6ac5b4185a2b7b92f253565500a5b51ca 2025-07-17T06:36:52.7717809Z * [new tag] trunk/56b3bf0c74f5837fd4fa6293bc515d353cb10295 -> trunk/56b3bf0c74f5837fd4fa6293bc515d353cb10295 2025-07-17T06:36:52.7718723Z * [new tag] trunk/56c69bedcc7e2211e5a3d6249e51b1674be5d10e -> trunk/56c69bedcc7e2211e5a3d6249e51b1674be5d10e 2025-07-17T06:36:52.7719670Z * [new tag] trunk/5763ec5f8d11df5eea962bedc74563394c0e273f -> trunk/5763ec5f8d11df5eea962bedc74563394c0e273f 2025-07-17T06:36:52.7720583Z * [new tag] trunk/577baa411675ed241c7d5cf79f25c13e29dac583 -> trunk/577baa411675ed241c7d5cf79f25c13e29dac583 2025-07-17T06:36:52.7721530Z * [new tag] trunk/57e4d7b5ccb8e35b434b62cc1f9aafb7d4d82b55 -> trunk/57e4d7b5ccb8e35b434b62cc1f9aafb7d4d82b55 2025-07-17T06:36:52.7722438Z * [new tag] trunk/584a0510b30b2472e54197d6b67b6f5f5e8ac807 -> trunk/584a0510b30b2472e54197d6b67b6f5f5e8ac807 2025-07-17T06:36:52.7723339Z * [new tag] trunk/588b5fb94bc6d2195ba5a4287b7feebe736da7db -> trunk/588b5fb94bc6d2195ba5a4287b7feebe736da7db 2025-07-17T06:36:52.7924367Z * [new tag] trunk/58e5d20c57e6baafd82b3b49c0e52931f5ae5d51 -> trunk/58e5d20c57e6baafd82b3b49c0e52931f5ae5d51 2025-07-17T06:36:52.7925214Z * [new tag] trunk/590607c5992d200b86361c5b68d53c93d8099193 -> trunk/590607c5992d200b86361c5b68d53c93d8099193 2025-07-17T06:36:52.7926027Z * [new tag] trunk/590fe4d2d7565f2045ef1ad4f4aad1f3b3de7aa3 -> trunk/590fe4d2d7565f2045ef1ad4f4aad1f3b3de7aa3 2025-07-17T06:36:52.7926838Z * [new tag] trunk/5951fcd50acc51bb91beae8488758f35219da849 -> trunk/5951fcd50acc51bb91beae8488758f35219da849 2025-07-17T06:36:52.7927644Z * [new tag] trunk/596b418391aa5d520e69310250c1f86c6c0a1107 -> trunk/596b418391aa5d520e69310250c1f86c6c0a1107 2025-07-17T06:36:52.7928427Z * [new tag] trunk/59c3cac4547aafd2f718b7c64053098cc5886878 -> trunk/59c3cac4547aafd2f718b7c64053098cc5886878 2025-07-17T06:36:52.7929259Z * [new tag] trunk/59eb61b2d1e4b64debbefa036acd0d8c7d55f0a3 -> trunk/59eb61b2d1e4b64debbefa036acd0d8c7d55f0a3 2025-07-17T06:36:52.7930081Z * [new tag] trunk/59f9b25f3cfc635053843372ea29ff4bf754da3f -> trunk/59f9b25f3cfc635053843372ea29ff4bf754da3f 2025-07-17T06:36:52.7930889Z * [new tag] trunk/5a2db5152d23f76dbb45d20008d9af68e761e8d1 -> trunk/5a2db5152d23f76dbb45d20008d9af68e761e8d1 2025-07-17T06:36:52.7931691Z * [new tag] trunk/5a533f74a160f6a570c2b9770ffdd89874ba59e2 -> trunk/5a533f74a160f6a570c2b9770ffdd89874ba59e2 2025-07-17T06:36:52.7932497Z * [new tag] trunk/5a54db14e3843cfa87fd8d27487dbf2f2dfb6c47 -> trunk/5a54db14e3843cfa87fd8d27487dbf2f2dfb6c47 2025-07-17T06:36:52.7933309Z * [new tag] trunk/5a5a05a6a3be376130848e235df73b752eef0230 -> trunk/5a5a05a6a3be376130848e235df73b752eef0230 2025-07-17T06:36:52.7934114Z * [new tag] trunk/5ab257c74c8e3ffe99380790de2134ba8013555e -> trunk/5ab257c74c8e3ffe99380790de2134ba8013555e 2025-07-17T06:36:52.7934927Z * [new tag] trunk/5ab6a3fb6fd37c542060c606edd4b95c7e3cae82 -> trunk/5ab6a3fb6fd37c542060c606edd4b95c7e3cae82 2025-07-17T06:36:52.7935749Z * [new tag] trunk/5ad2bee2c8a7defd2580bb138145a49c37146fcc -> trunk/5ad2bee2c8a7defd2580bb138145a49c37146fcc 2025-07-17T06:36:52.7936579Z * [new tag] trunk/5aee022d8b2bc9d31ddaf877315ffb8ad9d62985 -> trunk/5aee022d8b2bc9d31ddaf877315ffb8ad9d62985 2025-07-17T06:36:52.7937394Z * [new tag] trunk/5b10b0a96f9abf8c2751db324f0773aa433ec783 -> trunk/5b10b0a96f9abf8c2751db324f0773aa433ec783 2025-07-17T06:36:52.7938220Z * [new tag] trunk/5b4e0255d7ed756c312fb74ffcf17fe62c903bd7 -> trunk/5b4e0255d7ed756c312fb74ffcf17fe62c903bd7 2025-07-17T06:36:52.7939030Z * [new tag] trunk/5b656289064311e8bb08e1148db7d9b41f9d7ac8 -> trunk/5b656289064311e8bb08e1148db7d9b41f9d7ac8 2025-07-17T06:36:52.7939908Z * [new tag] trunk/5b9db4335e61c1c903cb0769282cbea588e49036 -> trunk/5b9db4335e61c1c903cb0769282cbea588e49036 2025-07-17T06:36:52.7940722Z * [new tag] trunk/5bd7804be2186f1756fba75ecc900d3b19016ad5 -> trunk/5bd7804be2186f1756fba75ecc900d3b19016ad5 2025-07-17T06:36:52.7941522Z * [new tag] trunk/5c79a55e7e58c6382c7ce02da1cd07d358239d94 -> trunk/5c79a55e7e58c6382c7ce02da1cd07d358239d94 2025-07-17T06:36:52.7942329Z * [new tag] trunk/5c7e1d39ab81647300d60e7cc22b24acf2641457 -> trunk/5c7e1d39ab81647300d60e7cc22b24acf2641457 2025-07-17T06:36:52.7943142Z * [new tag] trunk/5cc4e856fda4accb2e9291527693a91dc2a18d89 -> trunk/5cc4e856fda4accb2e9291527693a91dc2a18d89 2025-07-17T06:36:52.7943950Z * [new tag] trunk/5cfe4377d6f3b5845ba1f67122e5fbda8d642ecd -> trunk/5cfe4377d6f3b5845ba1f67122e5fbda8d642ecd 2025-07-17T06:36:52.7944767Z * [new tag] trunk/5d5a5b3501dfb0759ed36d0a88b65cdcd87c1e27 -> trunk/5d5a5b3501dfb0759ed36d0a88b65cdcd87c1e27 2025-07-17T06:36:52.7945647Z * [new tag] trunk/5d8d126249f83a9581f6b086f0891753bbb7175e -> trunk/5d8d126249f83a9581f6b086f0891753bbb7175e 2025-07-17T06:36:52.7946445Z * [new tag] trunk/5db9a2b54ae69917753be5b2eef0e15ad3cfd19b -> trunk/5db9a2b54ae69917753be5b2eef0e15ad3cfd19b 2025-07-17T06:36:52.7947273Z * [new tag] trunk/5dc75f72d4ede12067ddca459e02c8ee8a95e02c -> trunk/5dc75f72d4ede12067ddca459e02c8ee8a95e02c 2025-07-17T06:36:52.7948082Z * [new tag] trunk/5dd07c70e53a86b73f49711b8186d86dc4f1b32a -> trunk/5dd07c70e53a86b73f49711b8186d86dc4f1b32a 2025-07-17T06:36:52.7948892Z * [new tag] trunk/5dd9652389ed7959a842323e4ce063f553710e47 -> trunk/5dd9652389ed7959a842323e4ce063f553710e47 2025-07-17T06:36:52.7949705Z * [new tag] trunk/5df3bf13ec4e436abefe9d3822230727c04c2ab7 -> trunk/5df3bf13ec4e436abefe9d3822230727c04c2ab7 2025-07-17T06:36:52.8205195Z * [new tag] trunk/5dfd8a9c7a464bb42e81b8594eefd2fa865e5423 -> trunk/5dfd8a9c7a464bb42e81b8594eefd2fa865e5423 2025-07-17T06:36:52.8206220Z * [new tag] trunk/5dfe1787b5ed372fe1e9f0d73fab4e53a61bd17a -> trunk/5dfe1787b5ed372fe1e9f0d73fab4e53a61bd17a 2025-07-17T06:36:52.8207158Z * [new tag] trunk/5e18bc333144473f1f10bc8a5ba05dba7950fb8a -> trunk/5e18bc333144473f1f10bc8a5ba05dba7950fb8a 2025-07-17T06:36:52.8208059Z * [new tag] trunk/5e636d664ae0ccfdc1f0c5b060eb50fabf56e91b -> trunk/5e636d664ae0ccfdc1f0c5b060eb50fabf56e91b 2025-07-17T06:36:52.8208965Z * [new tag] trunk/5e93abe3c0106cf6fc694a38433909f20ee6a92c -> trunk/5e93abe3c0106cf6fc694a38433909f20ee6a92c 2025-07-17T06:36:52.8209772Z * [new tag] trunk/5eb5c3700bf51015e6a46f9f20c0e0e20cf55ab6 -> trunk/5eb5c3700bf51015e6a46f9f20c0e0e20cf55ab6 2025-07-17T06:36:52.8210578Z * [new tag] trunk/5f1225ef487a4c3954499a8ae5b5a55751e3ef2b -> trunk/5f1225ef487a4c3954499a8ae5b5a55751e3ef2b 2025-07-17T06:36:52.8211399Z * [new tag] trunk/5fb07acbc32874a932cd26087cf752b2f4cc72df -> trunk/5fb07acbc32874a932cd26087cf752b2f4cc72df 2025-07-17T06:36:52.8212204Z * [new tag] trunk/5fbaa041e75af11c7ff892e544707820232bd750 -> trunk/5fbaa041e75af11c7ff892e544707820232bd750 2025-07-17T06:36:52.8213004Z * [new tag] trunk/602044068359a3be08b2030a1bb1efb4dc107767 -> trunk/602044068359a3be08b2030a1bb1efb4dc107767 2025-07-17T06:36:52.8213842Z * [new tag] trunk/603a54a9b33e1aabe1407721d7935b881a160968 -> trunk/603a54a9b33e1aabe1407721d7935b881a160968 2025-07-17T06:36:52.8214671Z * [new tag] trunk/606d73bde495b055984206986fb7dd8918570e89 -> trunk/606d73bde495b055984206986fb7dd8918570e89 2025-07-17T06:36:52.8215476Z * [new tag] trunk/6098209bfffa453ec2cea08b0c9991b3b7e2bfeb -> trunk/6098209bfffa453ec2cea08b0c9991b3b7e2bfeb 2025-07-17T06:36:52.8216281Z * [new tag] trunk/60abb0d3273749cb2a7d583c7c2863bd2819e87e -> trunk/60abb0d3273749cb2a7d583c7c2863bd2819e87e 2025-07-17T06:36:52.8217254Z * [new tag] trunk/60b41de0ca0e5240eccf15c26a2b55b4a34d6f47 -> trunk/60b41de0ca0e5240eccf15c26a2b55b4a34d6f47 2025-07-17T06:36:52.8218074Z * [new tag] trunk/60e66d11ab3d62273cafa7f6b104db7e20f75dfd -> trunk/60e66d11ab3d62273cafa7f6b104db7e20f75dfd 2025-07-17T06:36:52.8218874Z * [new tag] trunk/61712e6f2ba58cce354a742d918934ec7293ee43 -> trunk/61712e6f2ba58cce354a742d918934ec7293ee43 2025-07-17T06:36:52.8219722Z * [new tag] trunk/617e3f69f8479197be57a28cc31e001c3feec407 -> trunk/617e3f69f8479197be57a28cc31e001c3feec407 2025-07-17T06:36:52.8220602Z * [new tag] trunk/61a7b09ef39907b6c4b47445f965c4c77cc6c2ed -> trunk/61a7b09ef39907b6c4b47445f965c4c77cc6c2ed 2025-07-17T06:36:52.8221412Z * [new tag] trunk/61b271e0f3f93209325dea9dccb1e97e7bc16b41 -> trunk/61b271e0f3f93209325dea9dccb1e97e7bc16b41 2025-07-17T06:36:52.8222316Z * [new tag] trunk/61e13782ddddf9e957c984ef11d7bb7643b871e7 -> trunk/61e13782ddddf9e957c984ef11d7bb7643b871e7 2025-07-17T06:36:52.8223115Z * [new tag] trunk/61eaaa21a42398941ea3fb01585a0926e9544831 -> trunk/61eaaa21a42398941ea3fb01585a0926e9544831 2025-07-17T06:36:52.8223924Z * [new tag] trunk/61f6aa36b9f9a168bd3c710c449f0a78c0301972 -> trunk/61f6aa36b9f9a168bd3c710c449f0a78c0301972 2025-07-17T06:36:52.8224739Z * [new tag] trunk/6200584193b770411b7f91880bbff6f746acfcb0 -> trunk/6200584193b770411b7f91880bbff6f746acfcb0 2025-07-17T06:36:52.8225563Z * [new tag] trunk/620415e018cd67e45d5c0a87964aff8751c9bf71 -> trunk/620415e018cd67e45d5c0a87964aff8751c9bf71 2025-07-17T06:36:52.8226467Z * [new tag] trunk/6215e90b7b9af8275c5dbfaa5fd58d7ec08b6764 -> trunk/6215e90b7b9af8275c5dbfaa5fd58d7ec08b6764 2025-07-17T06:36:52.8227265Z * [new tag] trunk/62272d5b24e7f505a02175de3c56ecc287557d2a -> trunk/62272d5b24e7f505a02175de3c56ecc287557d2a 2025-07-17T06:36:52.8228063Z * [new tag] trunk/627ba411366bcc15019c49756d3f22fd3914bd50 -> trunk/627ba411366bcc15019c49756d3f22fd3914bd50 2025-07-17T06:36:52.8228880Z * [new tag] trunk/62fa3f5aebfe763f5de27e687e4c81df7c7080e3 -> trunk/62fa3f5aebfe763f5de27e687e4c81df7c7080e3 2025-07-17T06:36:52.8229684Z * [new tag] trunk/6303cc41b71c02af9c855f3cc85b1146a97fc7a8 -> trunk/6303cc41b71c02af9c855f3cc85b1146a97fc7a8 2025-07-17T06:36:52.8230487Z * [new tag] trunk/63360e64da814de8ce271f1e4b6e2380a03b585e -> trunk/63360e64da814de8ce271f1e4b6e2380a03b585e 2025-07-17T06:36:52.8231290Z * [new tag] trunk/63a96eaeb84f5af6e83c7360c09f5540a44d19ca -> trunk/63a96eaeb84f5af6e83c7360c09f5540a44d19ca 2025-07-17T06:36:52.8232202Z * [new tag] trunk/63e87d6d05dc05ed7cc642c0cf8fd1cd2e3b93a1 -> trunk/63e87d6d05dc05ed7cc642c0cf8fd1cd2e3b93a1 2025-07-17T06:36:52.8423543Z * [new tag] trunk/6401d1d53d13cb2d564d48a30a8cf4f952ff773d -> trunk/6401d1d53d13cb2d564d48a30a8cf4f952ff773d 2025-07-17T06:36:52.8424385Z * [new tag] trunk/640703d95f210876f20f8f16c868442dad17b477 -> trunk/640703d95f210876f20f8f16c868442dad17b477 2025-07-17T06:36:52.8425183Z * [new tag] trunk/640f5a70905b01405f1ce397d25308d3e6a1d421 -> trunk/640f5a70905b01405f1ce397d25308d3e6a1d421 2025-07-17T06:36:52.8425989Z * [new tag] trunk/6442ae9256a6936bc8efe31fc5326d5c1c1f660b -> trunk/6442ae9256a6936bc8efe31fc5326d5c1c1f660b 2025-07-17T06:36:52.8426782Z * [new tag] trunk/64436c38c956b252d8c9f6f68e94fb46c34efdac -> trunk/64436c38c956b252d8c9f6f68e94fb46c34efdac 2025-07-17T06:36:52.8427585Z * [new tag] trunk/644cc58dfffe1b5bd15688495551b49462c163f6 -> trunk/644cc58dfffe1b5bd15688495551b49462c163f6 2025-07-17T06:36:52.8428396Z * [new tag] trunk/64bb6317a57d14c37339d86cded7c6b860c7d638 -> trunk/64bb6317a57d14c37339d86cded7c6b860c7d638 2025-07-17T06:36:52.8429345Z * [new tag] trunk/64f2ec77f869a7d495694519fb482e9ecaaa6da1 -> trunk/64f2ec77f869a7d495694519fb482e9ecaaa6da1 2025-07-17T06:36:52.8430145Z * [new tag] trunk/651b4a68f2a60d55d266e40776709247ef347d68 -> trunk/651b4a68f2a60d55d266e40776709247ef347d68 2025-07-17T06:36:52.8430956Z * [new tag] trunk/653c52fe52254e6783d75a73c3a8abbfd9cd2b3c -> trunk/653c52fe52254e6783d75a73c3a8abbfd9cd2b3c 2025-07-17T06:36:52.8431758Z * [new tag] trunk/655b3b14ffba4ae73e26a63b4289329e8d160a6f -> trunk/655b3b14ffba4ae73e26a63b4289329e8d160a6f 2025-07-17T06:36:52.8432568Z * [new tag] trunk/65b9c13cce43a7a8666ca1ef12b554a5dcfd2492 -> trunk/65b9c13cce43a7a8666ca1ef12b554a5dcfd2492 2025-07-17T06:36:52.8433382Z * [new tag] trunk/65fcca4f8c97de82d35d51ad9b790d10433e9b91 -> trunk/65fcca4f8c97de82d35d51ad9b790d10433e9b91 2025-07-17T06:36:52.8434206Z * [new tag] trunk/660695f11dd73efbe2694be0ed5826e4624f22e4 -> trunk/660695f11dd73efbe2694be0ed5826e4624f22e4 2025-07-17T06:36:52.8435208Z * [new tag] trunk/660dbea909b98f19dc0239a7ae565f8a52cfe846 -> trunk/660dbea909b98f19dc0239a7ae565f8a52cfe846 2025-07-17T06:36:52.8436027Z * [new tag] trunk/6629eaf0c658b523eed47a98c0a3e6b44fd89c6b -> trunk/6629eaf0c658b523eed47a98c0a3e6b44fd89c6b 2025-07-17T06:36:52.8436847Z * [new tag] trunk/662c1cfed2bf3262709f1150fcb11e96bc29e142 -> trunk/662c1cfed2bf3262709f1150fcb11e96bc29e142 2025-07-17T06:36:52.8437648Z * [new tag] trunk/670dab6c630552b32189911f22896ec453e55ab7 -> trunk/670dab6c630552b32189911f22896ec453e55ab7 2025-07-17T06:36:52.8438445Z * [new tag] trunk/671a9d175b7e15b4947c97f50b931dba1cc35a63 -> trunk/671a9d175b7e15b4947c97f50b931dba1cc35a63 2025-07-17T06:36:52.8439254Z * [new tag] trunk/672ac2ec86d8ffe080399363df96597437e51115 -> trunk/672ac2ec86d8ffe080399363df96597437e51115 2025-07-17T06:36:52.8440055Z * [new tag] trunk/67ee0c6725e8dd2d0372ff902775b7040631aaf7 -> trunk/67ee0c6725e8dd2d0372ff902775b7040631aaf7 2025-07-17T06:36:52.8440850Z * [new tag] trunk/67f8270516ef877aec85801e4a8d0b533687e938 -> trunk/67f8270516ef877aec85801e4a8d0b533687e938 2025-07-17T06:36:52.8441640Z * [new tag] trunk/6835ba1b3409d9764c6e704cdc0311d53ea0841a -> trunk/6835ba1b3409d9764c6e704cdc0311d53ea0841a 2025-07-17T06:36:52.8442426Z * [new tag] trunk/68996dc18306ac0320ac5e6979f1a7a7a226b3cc -> trunk/68996dc18306ac0320ac5e6979f1a7a7a226b3cc 2025-07-17T06:36:52.8443244Z * [new tag] trunk/68f36683f0c0dfe7befeba2b65dee30faf88f7cc -> trunk/68f36683f0c0dfe7befeba2b65dee30faf88f7cc 2025-07-17T06:36:52.8444046Z * [new tag] trunk/6918758f554790e1155fe9f3ee4120692347680a -> trunk/6918758f554790e1155fe9f3ee4120692347680a 2025-07-17T06:36:52.8444846Z * [new tag] trunk/693116f765ede6632d3dd8ef3ffe01cc40b960b9 -> trunk/693116f765ede6632d3dd8ef3ffe01cc40b960b9 2025-07-17T06:36:52.8445659Z * [new tag] trunk/694028f50269c9f34721db813e9ee1a8221c99b2 -> trunk/694028f50269c9f34721db813e9ee1a8221c99b2 2025-07-17T06:36:52.8446434Z * [new tag] trunk/6959b5febe090375e261e678902681533d2e2528 -> trunk/6959b5febe090375e261e678902681533d2e2528 2025-07-17T06:36:52.8447229Z * [new tag] trunk/69f2e09cc241176d6128a8f92f9490422c5b81b3 -> trunk/69f2e09cc241176d6128a8f92f9490422c5b81b3 2025-07-17T06:36:52.8448093Z * [new tag] trunk/6a3d00aa3b1e54feeb040891bfe2c59c36b9443c -> trunk/6a3d00aa3b1e54feeb040891bfe2c59c36b9443c 2025-07-17T06:36:52.8448975Z * [new tag] trunk/6abe450a6fda580714a276ed2dd695ab99074b93 -> trunk/6abe450a6fda580714a276ed2dd695ab99074b93 2025-07-17T06:36:52.8645854Z * [new tag] trunk/6b05842e4785f52ab89a8fa2a88f9e6f2316cbbd -> trunk/6b05842e4785f52ab89a8fa2a88f9e6f2316cbbd 2025-07-17T06:36:52.8647488Z * [new tag] trunk/6b1211df294e57d59c1e1717b1fedc671ec5bd5a -> trunk/6b1211df294e57d59c1e1717b1fedc671ec5bd5a 2025-07-17T06:36:52.8648318Z * [new tag] trunk/6b2bef10afae4acb18f230a496392b673c954ce7 -> trunk/6b2bef10afae4acb18f230a496392b673c954ce7 2025-07-17T06:36:52.8649144Z * [new tag] trunk/6b3eef6d316ce33ef0f0416c2f3f6a827ac4fe30 -> trunk/6b3eef6d316ce33ef0f0416c2f3f6a827ac4fe30 2025-07-17T06:36:52.8650010Z * [new tag] trunk/6b45af38a5991134f45d9750b79c767688ba3761 -> trunk/6b45af38a5991134f45d9750b79c767688ba3761 2025-07-17T06:36:52.8650855Z * [new tag] trunk/6b7767fc8d759017b5fc2a7002051cf5c05615a9 -> trunk/6b7767fc8d759017b5fc2a7002051cf5c05615a9 2025-07-17T06:36:52.8651665Z * [new tag] trunk/6b84cb29f97957032c5aa91b4e2a6bfa166db04d -> trunk/6b84cb29f97957032c5aa91b4e2a6bfa166db04d 2025-07-17T06:36:52.8652470Z * [new tag] trunk/6bc263809de610e2fcdf594c122a0f99c6c7d96f -> trunk/6bc263809de610e2fcdf594c122a0f99c6c7d96f 2025-07-17T06:36:52.8653385Z * [new tag] trunk/6c008e2fb5a94342c5c4047d034c61bb067fa2b7 -> trunk/6c008e2fb5a94342c5c4047d034c61bb067fa2b7 2025-07-17T06:36:52.8654193Z * [new tag] trunk/6c05f2fca049344fbbb55eed7a6c866f34c8a477 -> trunk/6c05f2fca049344fbbb55eed7a6c866f34c8a477 2025-07-17T06:36:52.8655014Z * [new tag] trunk/6c0b42fd2f2c070f4c7ef9a3914698726f61ef3a -> trunk/6c0b42fd2f2c070f4c7ef9a3914698726f61ef3a 2025-07-17T06:36:52.8655811Z * [new tag] trunk/6c24c6633a00608d8c20805a77fae55f6b8fe9a6 -> trunk/6c24c6633a00608d8c20805a77fae55f6b8fe9a6 2025-07-17T06:36:52.8656607Z * [new tag] trunk/6c42afe1964496e1b02be1442470f254e35eb199 -> trunk/6c42afe1964496e1b02be1442470f254e35eb199 2025-07-17T06:36:52.8657398Z * [new tag] trunk/6c5227ba00a2904365af566c24b4681cd01a041c -> trunk/6c5227ba00a2904365af566c24b4681cd01a041c 2025-07-17T06:36:52.8658203Z * [new tag] trunk/6c795306378c47341d58109da03371bba2bec46e -> trunk/6c795306378c47341d58109da03371bba2bec46e 2025-07-17T06:36:52.8658995Z * [new tag] trunk/6cc490d40b16b3be7ecc8943fe1bc594246caab3 -> trunk/6cc490d40b16b3be7ecc8943fe1bc594246caab3 2025-07-17T06:36:52.8659790Z * [new tag] trunk/6d02321472ee0761092166dd273eb3ec386cf0c0 -> trunk/6d02321472ee0761092166dd273eb3ec386cf0c0 2025-07-17T06:36:52.8660569Z * [new tag] trunk/6d2155db498375317e2101068a220439dba80939 -> trunk/6d2155db498375317e2101068a220439dba80939 2025-07-17T06:36:52.8661351Z * [new tag] trunk/6d3a4356f61b28a14abd95f641e2615deb186365 -> trunk/6d3a4356f61b28a14abd95f641e2615deb186365 2025-07-17T06:36:52.8662154Z * [new tag] trunk/6d5c789ad5f5d162426a5a10c84813ec923dd8ee -> trunk/6d5c789ad5f5d162426a5a10c84813ec923dd8ee 2025-07-17T06:36:52.8662952Z * [new tag] trunk/6dc2b22269f82a1feec06b5e3e79b184704cc0ba -> trunk/6dc2b22269f82a1feec06b5e3e79b184704cc0ba 2025-07-17T06:36:52.8663782Z * [new tag] trunk/6de41ce0f899604c3f8b33e1f8d37eb89b3a963e -> trunk/6de41ce0f899604c3f8b33e1f8d37eb89b3a963e 2025-07-17T06:36:52.8664584Z * [new tag] trunk/6defd5084e3fd330561095252c30ea50efa8e0ca -> trunk/6defd5084e3fd330561095252c30ea50efa8e0ca 2025-07-17T06:36:52.8665400Z * [new tag] trunk/6dfada220e4f46c28df3a6bdf57260ca0717c4bd -> trunk/6dfada220e4f46c28df3a6bdf57260ca0717c4bd 2025-07-17T06:36:52.8666219Z * [new tag] trunk/6e17315cd33892919dc6deb6a9ecb568dda6195e -> trunk/6e17315cd33892919dc6deb6a9ecb568dda6195e 2025-07-17T06:36:52.8667004Z * [new tag] trunk/6e185c53124e1b5a0fe391959060c1249178bcb6 -> trunk/6e185c53124e1b5a0fe391959060c1249178bcb6 2025-07-17T06:36:52.8667789Z * [new tag] trunk/6e2992a9984f2c3f6469564008c7e45869b84678 -> trunk/6e2992a9984f2c3f6469564008c7e45869b84678 2025-07-17T06:36:52.8668583Z * [new tag] trunk/6ea91f067256447cda6fae533f806c1f8baafbe2 -> trunk/6ea91f067256447cda6fae533f806c1f8baafbe2 2025-07-17T06:36:52.8669475Z * [new tag] trunk/6eb6f198e1a28e904ce00a132c43aa2536419664 -> trunk/6eb6f198e1a28e904ce00a132c43aa2536419664 2025-07-17T06:36:52.8670315Z * [new tag] trunk/6ebe9a4f47e9cd1c9ccd467bcdfdea9445fd98d6 -> trunk/6ebe9a4f47e9cd1c9ccd467bcdfdea9445fd98d6 2025-07-17T06:36:52.8671133Z * [new tag] trunk/6ed85bfe6a1704a87a492a3381414186eb439f5e -> trunk/6ed85bfe6a1704a87a492a3381414186eb439f5e 2025-07-17T06:36:52.8671963Z * [new tag] trunk/6ef70edd9a9acee76a607bdd22bac400c8e29434 -> trunk/6ef70edd9a9acee76a607bdd22bac400c8e29434 2025-07-17T06:36:52.8672798Z * [new tag] trunk/6f05d58f2b0bc4779fbed9db5b0f80af1c686dcd -> trunk/6f05d58f2b0bc4779fbed9db5b0f80af1c686dcd 2025-07-17T06:36:52.8868488Z * [new tag] trunk/6f23f53599629a47d6e097b2a027048658a142d4 -> trunk/6f23f53599629a47d6e097b2a027048658a142d4 2025-07-17T06:36:52.8869483Z * [new tag] trunk/6f60cfe9b1445271f8b83f58b4c4f12578d837d3 -> trunk/6f60cfe9b1445271f8b83f58b4c4f12578d837d3 2025-07-17T06:36:52.8870307Z * [new tag] trunk/6fb62931593fc10252e4994cd1a0595ebf8e990f -> trunk/6fb62931593fc10252e4994cd1a0595ebf8e990f 2025-07-17T06:36:52.8871111Z * [new tag] trunk/6fe7456aa1a2d025d1d06e15ba3896e6adba94b8 -> trunk/6fe7456aa1a2d025d1d06e15ba3896e6adba94b8 2025-07-17T06:36:52.8871936Z * [new tag] trunk/6ffa03ef9e18299f41da076f421abbd32e51e175 -> trunk/6ffa03ef9e18299f41da076f421abbd32e51e175 2025-07-17T06:36:52.8872753Z * [new tag] trunk/702a304b0785d2dfe3d9bd4eed535c38e969818d -> trunk/702a304b0785d2dfe3d9bd4eed535c38e969818d 2025-07-17T06:36:52.8873588Z * [new tag] trunk/706bc41c4c3caa2654a926382c2ef0ef4d0bc55e -> trunk/706bc41c4c3caa2654a926382c2ef0ef4d0bc55e 2025-07-17T06:36:52.8874405Z * [new tag] trunk/706e236b080cadd5b8a016e4bf972cdb0886d57b -> trunk/706e236b080cadd5b8a016e4bf972cdb0886d57b 2025-07-17T06:36:52.8875304Z * [new tag] trunk/7070ab318061d44f195a83b6dc11ef9299603dfe -> trunk/7070ab318061d44f195a83b6dc11ef9299603dfe 2025-07-17T06:36:52.8876101Z * [new tag] trunk/7081b8233a64c350c64e9f00c9b9d00e52020241 -> trunk/7081b8233a64c350c64e9f00c9b9d00e52020241 2025-07-17T06:36:52.8876915Z * [new tag] trunk/70b68caf58815419924ddeda231cbf6535181c53 -> trunk/70b68caf58815419924ddeda231cbf6535181c53 2025-07-17T06:36:52.8877734Z * [new tag] trunk/70bb34929aabc9c11d9ec9bbb53a4f9fc32e5e19 -> trunk/70bb34929aabc9c11d9ec9bbb53a4f9fc32e5e19 2025-07-17T06:36:52.8878540Z * [new tag] trunk/710b92cf3b577036d551708b351b4043817233f5 -> trunk/710b92cf3b577036d551708b351b4043817233f5 2025-07-17T06:36:52.8879319Z * [new tag] trunk/717a099d427d97a62c26fee58f9da9a0893d4233 -> trunk/717a099d427d97a62c26fee58f9da9a0893d4233 2025-07-17T06:36:52.8880142Z * [new tag] trunk/71a650ad565fe75ca752acbc8b40fb9ce677f40f -> trunk/71a650ad565fe75ca752acbc8b40fb9ce677f40f 2025-07-17T06:36:52.8880952Z * [new tag] trunk/720c2c46b181ad446bf970d70a27fd0ce149114d -> trunk/720c2c46b181ad446bf970d70a27fd0ce149114d 2025-07-17T06:36:52.8881747Z * [new tag] trunk/721d2580dbf9a4922adc1c7d1cc8237126d3cdd6 -> trunk/721d2580dbf9a4922adc1c7d1cc8237126d3cdd6 2025-07-17T06:36:52.8882551Z * [new tag] trunk/72453a66769294e93a183dfb5bdefa23de873d89 -> trunk/72453a66769294e93a183dfb5bdefa23de873d89 2025-07-17T06:36:52.8883348Z * [new tag] trunk/725c3272848c408d0fa2cba4de76affe90f793b5 -> trunk/725c3272848c408d0fa2cba4de76affe90f793b5 2025-07-17T06:36:52.8884133Z * [new tag] trunk/7275f280454f790414b24147a2ba7f94d0eabcf6 -> trunk/7275f280454f790414b24147a2ba7f94d0eabcf6 2025-07-17T06:36:52.8884908Z * [new tag] trunk/728cf6721e2996490922d0eacb23081953e45fc7 -> trunk/728cf6721e2996490922d0eacb23081953e45fc7 2025-07-17T06:36:52.8885795Z * [new tag] trunk/72c8751b61e0b2c7b88003a41ed737a65768063c -> trunk/72c8751b61e0b2c7b88003a41ed737a65768063c 2025-07-17T06:36:52.8886598Z * [new tag] trunk/731351bb4ac572fb47d46c70b7425c209c81570a -> trunk/731351bb4ac572fb47d46c70b7425c209c81570a 2025-07-17T06:36:52.8887397Z * [new tag] trunk/73220d52fd67b5f4f5b15e0e0433e09733c93f31 -> trunk/73220d52fd67b5f4f5b15e0e0433e09733c93f31 2025-07-17T06:36:52.8888189Z * [new tag] trunk/73772919d2db560c9cc8ed617c94c77450542a94 -> trunk/73772919d2db560c9cc8ed617c94c77450542a94 2025-07-17T06:36:52.8888969Z * [new tag] trunk/7381c777245a836f88e9622005c6ea16009a3a0d -> trunk/7381c777245a836f88e9622005c6ea16009a3a0d 2025-07-17T06:36:52.8889764Z * [new tag] trunk/7392470da4386e654f303eb526dfba7e7777b06b -> trunk/7392470da4386e654f303eb526dfba7e7777b06b 2025-07-17T06:36:52.8891259Z * [new tag] trunk/7444debaca7de16b2cf71d0cd82dc8998c3a73c4 -> trunk/7444debaca7de16b2cf71d0cd82dc8998c3a73c4 2025-07-17T06:36:52.8892088Z * [new tag] trunk/7485ef078f182af981b5f17d06602de68816492c -> trunk/7485ef078f182af981b5f17d06602de68816492c 2025-07-17T06:36:52.8892883Z * [new tag] trunk/749757ac1b66485459e751b0e58b5a7c64d5f561 -> trunk/749757ac1b66485459e751b0e58b5a7c64d5f561 2025-07-17T06:36:52.8893684Z * [new tag] trunk/74ebd8d14e0d612ed35557ab254a90facf73b029 -> trunk/74ebd8d14e0d612ed35557ab254a90facf73b029 2025-07-17T06:36:52.8894491Z * [new tag] trunk/7521cd91118c1c1a55b8f7146d7e22bf60fe06bf -> trunk/7521cd91118c1c1a55b8f7146d7e22bf60fe06bf 2025-07-17T06:36:52.9095608Z * [new tag] trunk/752f202ef3445d2e28e2abeb6feed56eee9da5a9 -> trunk/752f202ef3445d2e28e2abeb6feed56eee9da5a9 2025-07-17T06:36:52.9096470Z * [new tag] trunk/7531bd64911774fc2656f290601834d5d02d3925 -> trunk/7531bd64911774fc2656f290601834d5d02d3925 2025-07-17T06:36:52.9097406Z * [new tag] trunk/754699610b0abec2fe3f5a73269b1dd09a330445 -> trunk/754699610b0abec2fe3f5a73269b1dd09a330445 2025-07-17T06:36:52.9098223Z * [new tag] trunk/754c04aa062d8f3c0449aec4bbcaab00bfca4bf2 -> trunk/754c04aa062d8f3c0449aec4bbcaab00bfca4bf2 2025-07-17T06:36:52.9099026Z * [new tag] trunk/75824035d392595de3bd0b8588e63c2fc6d09139 -> trunk/75824035d392595de3bd0b8588e63c2fc6d09139 2025-07-17T06:36:52.9099813Z * [new tag] trunk/7597988f1b5a41c0b91d379e0ce51111fd7cc95a -> trunk/7597988f1b5a41c0b91d379e0ce51111fd7cc95a 2025-07-17T06:36:52.9100631Z * [new tag] trunk/7599bebead35dd21bad3d3e85f62f400ad2c3139 -> trunk/7599bebead35dd21bad3d3e85f62f400ad2c3139 2025-07-17T06:36:52.9101440Z * [new tag] trunk/75a7d9e86842b57f9001a0fa6fd716927614dbf9 -> trunk/75a7d9e86842b57f9001a0fa6fd716927614dbf9 2025-07-17T06:36:52.9102236Z * [new tag] trunk/75f258dd1feeb90b8084849155e049fb57ba3521 -> trunk/75f258dd1feeb90b8084849155e049fb57ba3521 2025-07-17T06:36:52.9103114Z * [new tag] trunk/75f3e5a88df60caef27fd9c9df3fd51161378fcc -> trunk/75f3e5a88df60caef27fd9c9df3fd51161378fcc 2025-07-17T06:36:52.9103973Z * [new tag] trunk/75f489d37f048ec8a9106163ca16201156f05499 -> trunk/75f489d37f048ec8a9106163ca16201156f05499 2025-07-17T06:36:52.9104761Z * [new tag] trunk/764c02b78b935ba61c46277cb7409e6419460058 -> trunk/764c02b78b935ba61c46277cb7409e6419460058 2025-07-17T06:36:52.9105554Z * [new tag] trunk/76644c9ff58285c95764ffd27d629df219aab140 -> trunk/76644c9ff58285c95764ffd27d629df219aab140 2025-07-17T06:36:52.9106337Z * [new tag] trunk/769d754ab2469813a3b790ec58c25c466099dd3d -> trunk/769d754ab2469813a3b790ec58c25c466099dd3d 2025-07-17T06:36:52.9107150Z * [new tag] trunk/76ca23c41c7edcf7b4c60ff6162eedcdf06ef359 -> trunk/76ca23c41c7edcf7b4c60ff6162eedcdf06ef359 2025-07-17T06:36:52.9108118Z * [new tag] trunk/76d07e919f66c24a55746bbc060c14b3df02ffa8 -> trunk/76d07e919f66c24a55746bbc060c14b3df02ffa8 2025-07-17T06:36:52.9108965Z * [new tag] trunk/76fe88fa56c8aac7377127fb5553de94e16e9070 -> trunk/76fe88fa56c8aac7377127fb5553de94e16e9070 2025-07-17T06:36:52.9109810Z * [new tag] trunk/770285522805745959221b902f23776a13d56df8 -> trunk/770285522805745959221b902f23776a13d56df8 2025-07-17T06:36:52.9110590Z * [new tag] trunk/7709ff55123dbdcaaa44004738fb767324f05dbd -> trunk/7709ff55123dbdcaaa44004738fb767324f05dbd 2025-07-17T06:36:52.9111377Z * [new tag] trunk/771be857043bf794cd219a9b925e308e31f12314 -> trunk/771be857043bf794cd219a9b925e308e31f12314 2025-07-17T06:36:52.9112170Z * [new tag] trunk/772d5904152abc9702bf49037e46ab6203b83f55 -> trunk/772d5904152abc9702bf49037e46ab6203b83f55 2025-07-17T06:36:52.9112944Z * [new tag] trunk/77518d1a13cc105637814bc157387478384dc897 -> trunk/77518d1a13cc105637814bc157387478384dc897 2025-07-17T06:36:52.9113834Z * [new tag] trunk/77676753ecabf6a6645bdd3abfe01939e5751e76 -> trunk/77676753ecabf6a6645bdd3abfe01939e5751e76 2025-07-17T06:36:52.9114709Z * [new tag] trunk/777eca9f16aeecd7c362a235cf25e6b8e6eda57f -> trunk/777eca9f16aeecd7c362a235cf25e6b8e6eda57f 2025-07-17T06:36:52.9115671Z * [new tag] trunk/77ac3a096532ee08211dae38c2a9336c970d1785 -> trunk/77ac3a096532ee08211dae38c2a9336c970d1785 2025-07-17T06:36:52.9116481Z * [new tag] trunk/77f884c2ec62df9df930ae86e9b8437364900346 -> trunk/77f884c2ec62df9df930ae86e9b8437364900346 2025-07-17T06:36:52.9117275Z * [new tag] trunk/783a4c1f5002bf1749833821c450360a417d40c7 -> trunk/783a4c1f5002bf1749833821c450360a417d40c7 2025-07-17T06:36:52.9118084Z * [new tag] trunk/78684e27ace1ebd51ccc93d4b6b8a6a3ec3b4c14 -> trunk/78684e27ace1ebd51ccc93d4b6b8a6a3ec3b4c14 2025-07-17T06:36:52.9118919Z * [new tag] trunk/78ee2ee90eed957aec3dc80423b108b16938a8ae -> trunk/78ee2ee90eed957aec3dc80423b108b16938a8ae 2025-07-17T06:36:52.9119717Z * [new tag] trunk/7918978653ff4f21c284b34809acf88784deb0de -> trunk/7918978653ff4f21c284b34809acf88784deb0de 2025-07-17T06:36:52.9120587Z * [new tag] trunk/794b95d54bb2c49d704169ddb777acfd8da8cfad -> trunk/794b95d54bb2c49d704169ddb777acfd8da8cfad 2025-07-17T06:36:52.9121451Z * [new tag] trunk/794ef6c9b8f173a0cbab5288efb2d68aef9c90b9 -> trunk/794ef6c9b8f173a0cbab5288efb2d68aef9c90b9 2025-07-17T06:36:52.9122271Z * [new tag] trunk/795a6a0affd349adfb4e3df298b604b74f27b44e -> trunk/795a6a0affd349adfb4e3df298b604b74f27b44e 2025-07-17T06:36:52.9322397Z * [new tag] trunk/7982b8c703e24a36c0e0a01b8cf22cd272369b28 -> trunk/7982b8c703e24a36c0e0a01b8cf22cd272369b28 2025-07-17T06:36:52.9323217Z * [new tag] trunk/7986c0dba6e1044d90b7f607f9cca15922339bb4 -> trunk/7986c0dba6e1044d90b7f607f9cca15922339bb4 2025-07-17T06:36:52.9324077Z * [new tag] trunk/799443605bffbd0d80fb3f2edbfe5517e0e2b4a3 -> trunk/799443605bffbd0d80fb3f2edbfe5517e0e2b4a3 2025-07-17T06:36:52.9324892Z * [new tag] trunk/7999735d23aeca844d4a7b23de6ac2370767099a -> trunk/7999735d23aeca844d4a7b23de6ac2370767099a 2025-07-17T06:36:52.9325694Z * [new tag] trunk/79ab84e9b8fe561a55931b2108af45993a670276 -> trunk/79ab84e9b8fe561a55931b2108af45993a670276 2025-07-17T06:36:52.9326512Z * [new tag] trunk/79aef141695f2daea4a9aeb0f385726c5794a242 -> trunk/79aef141695f2daea4a9aeb0f385726c5794a242 2025-07-17T06:36:52.9327334Z * [new tag] trunk/79bdafe5b61f6f073dcd276e135076ff3277a951 -> trunk/79bdafe5b61f6f073dcd276e135076ff3277a951 2025-07-17T06:36:52.9328142Z * [new tag] trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba -> trunk/79d7c754ab8ae0e5c3a614521632d2cfbfa0fdba 2025-07-17T06:36:52.9329097Z * [new tag] trunk/7a03b0d2ca3946b770bc817571fc36bd5c608b38 -> trunk/7a03b0d2ca3946b770bc817571fc36bd5c608b38 2025-07-17T06:36:52.9329901Z * [new tag] trunk/7a08755c5f3630150c50d09e16c0abf9501dea1e -> trunk/7a08755c5f3630150c50d09e16c0abf9501dea1e 2025-07-17T06:36:52.9330696Z * [new tag] trunk/7a41f207943cc6c88160d7a531fc57bdbe149253 -> trunk/7a41f207943cc6c88160d7a531fc57bdbe149253 2025-07-17T06:36:52.9331501Z * [new tag] trunk/7a48cc699006879a6ec185ac5bd4eaad0c0b7e36 -> trunk/7a48cc699006879a6ec185ac5bd4eaad0c0b7e36 2025-07-17T06:36:52.9332294Z * [new tag] trunk/7a92b5119654c07d15f5c0818e6ae804b01e836c -> trunk/7a92b5119654c07d15f5c0818e6ae804b01e836c 2025-07-17T06:36:52.9333091Z * [new tag] trunk/7ae7c1414354ad225c4a36b3228e30a2baf94923 -> trunk/7ae7c1414354ad225c4a36b3228e30a2baf94923 2025-07-17T06:36:52.9333900Z * [new tag] trunk/7afb834f939eccbb3262e646f0922eed070074a7 -> trunk/7afb834f939eccbb3262e646f0922eed070074a7 2025-07-17T06:36:52.9334784Z * [new tag] trunk/7b0118884e0855e4918af53d44c3fbfc185a1ee9 -> trunk/7b0118884e0855e4918af53d44c3fbfc185a1ee9 2025-07-17T06:36:52.9335599Z * [new tag] trunk/7b392bac13a8007d1e0c6c789aa9bc515119faba -> trunk/7b392bac13a8007d1e0c6c789aa9bc515119faba 2025-07-17T06:36:52.9336411Z * [new tag] trunk/7b7cd56f5e2a965ae8a48c69441dd4f58bf68ceb -> trunk/7b7cd56f5e2a965ae8a48c69441dd4f58bf68ceb 2025-07-17T06:36:52.9337226Z * [new tag] trunk/7be862ab8f2b9040b34c58e1b77ce74c2512f062 -> trunk/7be862ab8f2b9040b34c58e1b77ce74c2512f062 2025-07-17T06:36:52.9338045Z * [new tag] trunk/7c1f62782875a4ac70b96aed0e6c9525b6e4eaf3 -> trunk/7c1f62782875a4ac70b96aed0e6c9525b6e4eaf3 2025-07-17T06:36:52.9338835Z * [new tag] trunk/7c51619e7fbd346e2299255c468cc43bd69425d7 -> trunk/7c51619e7fbd346e2299255c468cc43bd69425d7 2025-07-17T06:36:52.9339648Z * [new tag] trunk/7caf6c801ddfaf556a3ca191173b50002c4261f4 -> trunk/7caf6c801ddfaf556a3ca191173b50002c4261f4 2025-07-17T06:36:52.9340470Z * [new tag] trunk/7cda4017ddda554752e89069ae205be5e8388f59 -> trunk/7cda4017ddda554752e89069ae205be5e8388f59 2025-07-17T06:36:52.9341268Z * [new tag] trunk/7cf31b4a426f3791af30159cea420687f347cd7a -> trunk/7cf31b4a426f3791af30159cea420687f347cd7a 2025-07-17T06:36:52.9342214Z * [new tag] trunk/7cf38d2a0521c5ca292a720bce00617be749a0e7 -> trunk/7cf38d2a0521c5ca292a720bce00617be749a0e7 2025-07-17T06:36:52.9343174Z * [new tag] trunk/7cfd054075b0713642fab8dc4313fc1e5d992599 -> trunk/7cfd054075b0713642fab8dc4313fc1e5d992599 2025-07-17T06:36:52.9343980Z * [new tag] trunk/7d1b3f599d6968a3efe70b7401310e3127949f13 -> trunk/7d1b3f599d6968a3efe70b7401310e3127949f13 2025-07-17T06:36:52.9344799Z * [new tag] trunk/7d4228dbfd13d1ac8fac2c78c042dbb8314f042d -> trunk/7d4228dbfd13d1ac8fac2c78c042dbb8314f042d 2025-07-17T06:36:52.9345620Z * [new tag] trunk/7dcc77e422dcf97ce35991a138ab635a5cb88731 -> trunk/7dcc77e422dcf97ce35991a138ab635a5cb88731 2025-07-17T06:36:52.9346425Z * [new tag] trunk/7e433d5f423248914c5e9838d3ea145db7964923 -> trunk/7e433d5f423248914c5e9838d3ea145db7964923 2025-07-17T06:36:52.9347229Z * [new tag] trunk/7e4c097b0752ae79a8b5dd1de21a51aaafba2ef9 -> trunk/7e4c097b0752ae79a8b5dd1de21a51aaafba2ef9 2025-07-17T06:36:52.9348129Z * [new tag] trunk/7e54c02a35b905e758497b856a1953eb009ba836 -> trunk/7e54c02a35b905e758497b856a1953eb009ba836 2025-07-17T06:36:52.9554433Z * [new tag] trunk/7e83d5084588bdb51151f869b53c92c07bc9f544 -> trunk/7e83d5084588bdb51151f869b53c92c07bc9f544 2025-07-17T06:36:52.9555309Z * [new tag] trunk/7f0cddfb55d426b414cf7b4482c6a371618b349c -> trunk/7f0cddfb55d426b414cf7b4482c6a371618b349c 2025-07-17T06:36:52.9556227Z * [new tag] trunk/7f14b42adf70196d82340c59a9981ffcadf0c53c -> trunk/7f14b42adf70196d82340c59a9981ffcadf0c53c 2025-07-17T06:36:52.9557178Z * [new tag] trunk/7f6e7103a3aefd2d96b3cc6702be931a66b44977 -> trunk/7f6e7103a3aefd2d96b3cc6702be931a66b44977 2025-07-17T06:36:52.9558000Z * [new tag] trunk/7f9fc7e67ce9853a1bb4b16c901c708f78c1c5cd -> trunk/7f9fc7e67ce9853a1bb4b16c901c708f78c1c5cd 2025-07-17T06:36:52.9558836Z * [new tag] trunk/7fcad0231cb0ae9ba6a0004098b5ffd82c62858f -> trunk/7fcad0231cb0ae9ba6a0004098b5ffd82c62858f 2025-07-17T06:36:52.9559655Z * [new tag] trunk/805297981ae4e2aa08d133161477a477f5da274f -> trunk/805297981ae4e2aa08d133161477a477f5da274f 2025-07-17T06:36:52.9560435Z * [new tag] trunk/8088958793841191eba1faf98849904ee769bbfd -> trunk/8088958793841191eba1faf98849904ee769bbfd 2025-07-17T06:36:52.9561238Z * [new tag] trunk/80bcaa4195944d0f00f16abcbb702bde4d582d14 -> trunk/80bcaa4195944d0f00f16abcbb702bde4d582d14 2025-07-17T06:36:52.9562129Z * [new tag] trunk/80d89974c173c9d7a2c59fe9dfce2fe1301e2833 -> trunk/80d89974c173c9d7a2c59fe9dfce2fe1301e2833 2025-07-17T06:36:52.9562945Z * [new tag] trunk/8134684d44f3f9d09e775f3adc513bdef72245c9 -> trunk/8134684d44f3f9d09e775f3adc513bdef72245c9 2025-07-17T06:36:52.9563741Z * [new tag] trunk/8142a0286016e63a0e91b5667e1fb1a5e868ffd7 -> trunk/8142a0286016e63a0e91b5667e1fb1a5e868ffd7 2025-07-17T06:36:52.9564537Z * [new tag] trunk/8147c4a9044913e62ba3aab7f1eaaafead4f5930 -> trunk/8147c4a9044913e62ba3aab7f1eaaafead4f5930 2025-07-17T06:36:52.9565345Z * [new tag] trunk/8153340d1073c190ecf221e51abbd983286782a8 -> trunk/8153340d1073c190ecf221e51abbd983286782a8 2025-07-17T06:36:52.9566143Z * [new tag] trunk/815545f2dd6ade563cb1263f8bb7813f355edb2e -> trunk/815545f2dd6ade563cb1263f8bb7813f355edb2e 2025-07-17T06:36:52.9566953Z * [new tag] trunk/81759afed4fa4fa3a03f9ff671abe270679cc006 -> trunk/81759afed4fa4fa3a03f9ff671abe270679cc006 2025-07-17T06:36:52.9567780Z * [new tag] trunk/8186af5a26bc6a628f283c4791c8d68ef6fa1336 -> trunk/8186af5a26bc6a628f283c4791c8d68ef6fa1336 2025-07-17T06:36:52.9568602Z * [new tag] trunk/81b0b308cafae44339b8a123e8b1bec3bf9eb8ad -> trunk/81b0b308cafae44339b8a123e8b1bec3bf9eb8ad 2025-07-17T06:36:52.9569402Z * [new tag] trunk/81bf278537c081279a574157e1359ec7f0b65daf -> trunk/81bf278537c081279a574157e1359ec7f0b65daf 2025-07-17T06:36:52.9570188Z * [new tag] trunk/81c7445eb97f910ed89da9b11140d914651a1675 -> trunk/81c7445eb97f910ed89da9b11140d914651a1675 2025-07-17T06:36:52.9570965Z * [new tag] trunk/82672206b724a767dcb8c2541074449100de701b -> trunk/82672206b724a767dcb8c2541074449100de701b 2025-07-17T06:36:52.9571752Z * [new tag] trunk/826f12b829070e3d5bfd050f001b61aaf78e5447 -> trunk/826f12b829070e3d5bfd050f001b61aaf78e5447 2025-07-17T06:36:52.9572572Z * [new tag] trunk/82765dad16d7cda1ea382497dbf8c1ab2d07bfdd -> trunk/82765dad16d7cda1ea382497dbf8c1ab2d07bfdd 2025-07-17T06:36:52.9573372Z * [new tag] trunk/82a1ee1135b054d371d10081883b848ac7b7419f -> trunk/82a1ee1135b054d371d10081883b848ac7b7419f 2025-07-17T06:36:52.9574161Z * [new tag] trunk/82e6475d920991ef3be5d5637a72bf49313cc604 -> trunk/82e6475d920991ef3be5d5637a72bf49313cc604 2025-07-17T06:36:52.9574963Z * [new tag] trunk/82eefaedd98b63de8a87e34275af781f8eb177e1 -> trunk/82eefaedd98b63de8a87e34275af781f8eb177e1 2025-07-17T06:36:52.9575774Z * [new tag] trunk/82fb904140d258604a185154287b9c6fde047fc5 -> trunk/82fb904140d258604a185154287b9c6fde047fc5 2025-07-17T06:36:52.9576578Z * [new tag] trunk/830a335a7da5fec00395d440ba568749cb4e2e9e -> trunk/830a335a7da5fec00395d440ba568749cb4e2e9e 2025-07-17T06:36:52.9577373Z * [new tag] trunk/831c9010c7d7460fd78bc59b3fa28a65a0339e5d -> trunk/831c9010c7d7460fd78bc59b3fa28a65a0339e5d 2025-07-17T06:36:52.9578258Z * [new tag] trunk/8347268edcf3cc4f638474d860450bb0cd7a9908 -> trunk/8347268edcf3cc4f638474d860450bb0cd7a9908 2025-07-17T06:36:52.9579046Z * [new tag] trunk/836bb1941b593063f002394c1de3ec382c2ce50e -> trunk/836bb1941b593063f002394c1de3ec382c2ce50e 2025-07-17T06:36:52.9579834Z * [new tag] trunk/83700b448874cac8e89356ab06292e4289577269 -> trunk/83700b448874cac8e89356ab06292e4289577269 2025-07-17T06:36:52.9580629Z * [new tag] trunk/8372d0986a495d41f41c5d7684f1428ff847c699 -> trunk/8372d0986a495d41f41c5d7684f1428ff847c699 2025-07-17T06:36:53.0115904Z * [new tag] trunk/838798425731e6c90df4a885e90ec03f18eea10b -> trunk/838798425731e6c90df4a885e90ec03f18eea10b 2025-07-17T06:36:53.0116798Z * [new tag] trunk/83d22256f84232c5440b25a08459c649a32b9a4f -> trunk/83d22256f84232c5440b25a08459c649a32b9a4f 2025-07-17T06:36:53.0117783Z * [new tag] trunk/84085229765698166f07c9220d5544023ab80d47 -> trunk/84085229765698166f07c9220d5544023ab80d47 2025-07-17T06:36:53.0118572Z * [new tag] trunk/8485f1950710d383fd8d0d772fc978933c6fc175 -> trunk/8485f1950710d383fd8d0d772fc978933c6fc175 2025-07-17T06:36:53.0119386Z * [new tag] trunk/84b77ec1280a56bece8408a2e0e179b9eb95e1e2 -> trunk/84b77ec1280a56bece8408a2e0e179b9eb95e1e2 2025-07-17T06:36:53.0120208Z * [new tag] trunk/84c14361c28e1b553ea405ef5020cf0a90468850 -> trunk/84c14361c28e1b553ea405ef5020cf0a90468850 2025-07-17T06:36:53.0120999Z * [new tag] trunk/84c588e5eada9e7921608065edc444a15c22cb1c -> trunk/84c588e5eada9e7921608065edc444a15c22cb1c 2025-07-17T06:36:53.0121822Z * [new tag] trunk/84dec060b79078e68dcb6be1e7f308dad05d00e2 -> trunk/84dec060b79078e68dcb6be1e7f308dad05d00e2 2025-07-17T06:36:53.0122683Z * [new tag] trunk/85111cd165f108ffabb4a90083d59d7a867ebd9f -> trunk/85111cd165f108ffabb4a90083d59d7a867ebd9f 2025-07-17T06:36:53.0123553Z * [new tag] trunk/851a6fa82df251fbc368f0284d941ce78f68e7b1 -> trunk/851a6fa82df251fbc368f0284d941ce78f68e7b1 2025-07-17T06:36:53.0124341Z * [new tag] trunk/85320336799e38411d15c0e159b41248cda01218 -> trunk/85320336799e38411d15c0e159b41248cda01218 2025-07-17T06:36:53.0125125Z * [new tag] trunk/8554c8007ddaa8029e7e01bb1af12f358bf597c2 -> trunk/8554c8007ddaa8029e7e01bb1af12f358bf597c2 2025-07-17T06:36:53.0125930Z * [new tag] trunk/85857181ebca86e9c709e9922a9d9ef41a9c4ef9 -> trunk/85857181ebca86e9c709e9922a9d9ef41a9c4ef9 2025-07-17T06:36:53.0126739Z * [new tag] trunk/85df746892d9b0e87e7a5dfa78ef81a84aec6de0 -> trunk/85df746892d9b0e87e7a5dfa78ef81a84aec6de0 2025-07-17T06:36:53.0127543Z * [new tag] trunk/86251eff4069c468efebdb481dd18fe8d42856f0 -> trunk/86251eff4069c468efebdb481dd18fe8d42856f0 2025-07-17T06:36:53.0128384Z * [new tag] trunk/863327ae496471654344e1e04ccaa713a44a135d -> trunk/863327ae496471654344e1e04ccaa713a44a135d 2025-07-17T06:36:53.0129218Z * [new tag] trunk/86670b39fa3df63a652a9a06b59b73f92d70c392 -> trunk/86670b39fa3df63a652a9a06b59b73f92d70c392 2025-07-17T06:36:53.0130022Z * [new tag] trunk/86996c15dc4294c400c3a552d1a9e8e90aa6c7f6 -> trunk/86996c15dc4294c400c3a552d1a9e8e90aa6c7f6 2025-07-17T06:36:53.0130828Z * [new tag] trunk/86ced144534c2c78460a2d0f1d9ed2ba048f2514 -> trunk/86ced144534c2c78460a2d0f1d9ed2ba048f2514 2025-07-17T06:36:53.0131635Z * [new tag] trunk/86d8af6a6cc648134289de89d393d0dce5b3a5f4 -> trunk/86d8af6a6cc648134289de89d393d0dce5b3a5f4 2025-07-17T06:36:53.0132441Z * [new tag] trunk/86eaf452c330bd871262b7590ff8bd1bf432e2d7 -> trunk/86eaf452c330bd871262b7590ff8bd1bf432e2d7 2025-07-17T06:36:53.0133240Z * [new tag] trunk/87d615efab194482a00d241e4d9aebc513635cf5 -> trunk/87d615efab194482a00d241e4d9aebc513635cf5 2025-07-17T06:36:53.0134154Z * [new tag] trunk/8823138e47a3200c313f6bf2d21eb689d8150f39 -> trunk/8823138e47a3200c313f6bf2d21eb689d8150f39 2025-07-17T06:36:53.0135043Z * [new tag] trunk/8892b782a85b9de9f51334e65e009b3d59899b02 -> trunk/8892b782a85b9de9f51334e65e009b3d59899b02 2025-07-17T06:36:53.0135846Z * [new tag] trunk/88b9c285e0eb68134c5f834ceccdb99bc1d255d0 -> trunk/88b9c285e0eb68134c5f834ceccdb99bc1d255d0 2025-07-17T06:36:53.0136650Z * [new tag] trunk/88c6199db09372b6e2d55a5349ab545527842727 -> trunk/88c6199db09372b6e2d55a5349ab545527842727 2025-07-17T06:36:53.0137461Z * [new tag] trunk/88cd9f34b00c22e4edefa223490fcdd6c4ff272a -> trunk/88cd9f34b00c22e4edefa223490fcdd6c4ff272a 2025-07-17T06:36:53.0138262Z * [new tag] trunk/898179331e82e5ee1ff64737f508fd6a6da711f9 -> trunk/898179331e82e5ee1ff64737f508fd6a6da711f9 2025-07-17T06:36:53.0139064Z * [new tag] trunk/899d3d3e9eec4756a2e759f0203334dbe08f664e -> trunk/899d3d3e9eec4756a2e759f0203334dbe08f664e 2025-07-17T06:36:53.0139959Z * [new tag] trunk/8a2255130025abc80e03adaeb0b90d6463f2f916 -> trunk/8a2255130025abc80e03adaeb0b90d6463f2f916 2025-07-17T06:36:53.0140858Z * [new tag] trunk/8a396c56350ade97c18a6e13b3d97939f1eea075 -> trunk/8a396c56350ade97c18a6e13b3d97939f1eea075 2025-07-17T06:36:53.0141680Z * [new tag] trunk/8a47f9d03be0e0118a43443ff5f60db7be85102b -> trunk/8a47f9d03be0e0118a43443ff5f60db7be85102b 2025-07-17T06:36:53.0350814Z * [new tag] trunk/8a88c6e85abe345d95d970d424a0295cbc89b69c -> trunk/8a88c6e85abe345d95d970d424a0295cbc89b69c 2025-07-17T06:36:53.0351692Z * [new tag] trunk/8a8fac11318778aa5e4479b369b37fdb9e10ec17 -> trunk/8a8fac11318778aa5e4479b369b37fdb9e10ec17 2025-07-17T06:36:53.0352520Z * [new tag] trunk/8ad6197b466e91eb5fbbde2c76688d40fa472ac3 -> trunk/8ad6197b466e91eb5fbbde2c76688d40fa472ac3 2025-07-17T06:36:53.0353369Z * [new tag] trunk/8b0e0e4f2301f4aeb9fccf52cd2c6d8ac13da131 -> trunk/8b0e0e4f2301f4aeb9fccf52cd2c6d8ac13da131 2025-07-17T06:36:53.0354199Z * [new tag] trunk/8b68e5b1bb4a0014a64eab25c54b716968e109a9 -> trunk/8b68e5b1bb4a0014a64eab25c54b716968e109a9 2025-07-17T06:36:53.0355006Z * [new tag] trunk/8b8684466a11ae6ac27c85dbc6a02091dadac749 -> trunk/8b8684466a11ae6ac27c85dbc6a02091dadac749 2025-07-17T06:36:53.0355870Z * [new tag] trunk/8b97e4dd8cbe23101801043fe343d7350e527540 -> trunk/8b97e4dd8cbe23101801043fe343d7350e527540 2025-07-17T06:36:53.0356680Z * [new tag] trunk/8bda95228fbefa6ce204bf4da8b632d1516431bb -> trunk/8bda95228fbefa6ce204bf4da8b632d1516431bb 2025-07-17T06:36:53.0357494Z * [new tag] trunk/8c0df6fe1769c813f57da766528ff3cc4e56943e -> trunk/8c0df6fe1769c813f57da766528ff3cc4e56943e 2025-07-17T06:36:53.0358377Z * [new tag] trunk/8c2e45008282cf5202b72a0ecb0c2951438abeea -> trunk/8c2e45008282cf5202b72a0ecb0c2951438abeea 2025-07-17T06:36:53.0359208Z * [new tag] trunk/8c3f206457a1b9d75bc95a6c30a101135fcee329 -> trunk/8c3f206457a1b9d75bc95a6c30a101135fcee329 2025-07-17T06:36:53.0360015Z * [new tag] trunk/8c5b070d1f7cf4a9b58b09a28a0aeb5fdca28679 -> trunk/8c5b070d1f7cf4a9b58b09a28a0aeb5fdca28679 2025-07-17T06:36:53.0360824Z * [new tag] trunk/8c928372b3560bb512e2cf98c94efd923caf5fa7 -> trunk/8c928372b3560bb512e2cf98c94efd923caf5fa7 2025-07-17T06:36:53.0361632Z * [new tag] trunk/8cb0c4a4da0e017834d63f3d7dc2ab29e0ad6424 -> trunk/8cb0c4a4da0e017834d63f3d7dc2ab29e0ad6424 2025-07-17T06:36:53.0362447Z * [new tag] trunk/8d070187e34d5474ae88cefe56754f729138756b -> trunk/8d070187e34d5474ae88cefe56754f729138756b 2025-07-17T06:36:53.0363255Z * [new tag] trunk/8d7ee0f4fb7e41e8a49a5a24b6686b2324c493ba -> trunk/8d7ee0f4fb7e41e8a49a5a24b6686b2324c493ba 2025-07-17T06:36:53.0364224Z * [new tag] trunk/8da774d81feace041ff39de4ba2ddd43086370d3 -> trunk/8da774d81feace041ff39de4ba2ddd43086370d3 2025-07-17T06:36:53.0365038Z * [new tag] trunk/8dff457f42c9a20f9936d22773239df33cb48c9d -> trunk/8dff457f42c9a20f9936d22773239df33cb48c9d 2025-07-17T06:36:53.0365851Z * [new tag] trunk/8e02cd9c5ab151faad80e18e648c82a204fc3735 -> trunk/8e02cd9c5ab151faad80e18e648c82a204fc3735 2025-07-17T06:36:53.0366671Z * [new tag] trunk/8e8bbfc80340f0bf0a31a03d61b9b4dd72a40469 -> trunk/8e8bbfc80340f0bf0a31a03d61b9b4dd72a40469 2025-07-17T06:36:53.0367497Z * [new tag] trunk/8e8d4b13b0f6358e249a1e6fea9831b91b41b6d0 -> trunk/8e8d4b13b0f6358e249a1e6fea9831b91b41b6d0 2025-07-17T06:36:53.0368308Z * [new tag] trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c -> trunk/8eaa9f2701277f328d9d6aea1bfe7cba20792f7c 2025-07-17T06:36:53.0369126Z * [new tag] trunk/8eb3c5b7a18205974fff0353b97e599ea3d0e2a4 -> trunk/8eb3c5b7a18205974fff0353b97e599ea3d0e2a4 2025-07-17T06:36:53.0370002Z * [new tag] trunk/8f02161d1012143263fdbca47ee62983448e2c7e -> trunk/8f02161d1012143263fdbca47ee62983448e2c7e 2025-07-17T06:36:53.0370812Z * [new tag] trunk/8f0998aafe5e9594ade50cd263d5c63a5aad9333 -> trunk/8f0998aafe5e9594ade50cd263d5c63a5aad9333 2025-07-17T06:36:53.0371640Z * [new tag] trunk/8f5f01bf19e01f4b74add7f3d558966152a398c7 -> trunk/8f5f01bf19e01f4b74add7f3d558966152a398c7 2025-07-17T06:36:53.0372460Z * [new tag] trunk/8f9a191db6efcf44510db87c8f6f6e96c67e9b11 -> trunk/8f9a191db6efcf44510db87c8f6f6e96c67e9b11 2025-07-17T06:36:53.0373299Z * [new tag] trunk/8fcda2c60d974e4970ce939bc828bece9903c304 -> trunk/8fcda2c60d974e4970ce939bc828bece9903c304 2025-07-17T06:36:53.0374125Z * [new tag] trunk/900fba4c073b121b6c9ce581ea27e25c13a354e5 -> trunk/900fba4c073b121b6c9ce581ea27e25c13a354e5 2025-07-17T06:36:53.0374921Z * [new tag] trunk/9056279f8159b052599a31b591a78da1acc4224c -> trunk/9056279f8159b052599a31b591a78da1acc4224c 2025-07-17T06:36:53.0375706Z * [new tag] trunk/905b0846903a0193ee651a44762e72c881f83950 -> trunk/905b0846903a0193ee651a44762e72c881f83950 2025-07-17T06:36:53.0376504Z * [new tag] trunk/905b194a2e3d1d1c9ec136dfc1b6be7e62ff4b2c -> trunk/905b194a2e3d1d1c9ec136dfc1b6be7e62ff4b2c 2025-07-17T06:36:53.0377296Z * [new tag] trunk/90618581e971d28ac6950305d72521af05ed3a42 -> trunk/90618581e971d28ac6950305d72521af05ed3a42 2025-07-17T06:36:53.0578909Z * [new tag] trunk/907aea032d2f709f26dec78b762481c4604cc186 -> trunk/907aea032d2f709f26dec78b762481c4604cc186 2025-07-17T06:36:53.0579729Z * [new tag] trunk/907d0931cc8868164c2890b0452eda5d4da49278 -> trunk/907d0931cc8868164c2890b0452eda5d4da49278 2025-07-17T06:36:53.0580539Z * [new tag] trunk/90b973a2e228f2a5e2c158e5f5cf8f59d9118fc8 -> trunk/90b973a2e228f2a5e2c158e5f5cf8f59d9118fc8 2025-07-17T06:36:53.0581381Z * [new tag] trunk/91ee9ee82d40bcc36afbe9fed8dfc2f8c19c7316 -> trunk/91ee9ee82d40bcc36afbe9fed8dfc2f8c19c7316 2025-07-17T06:36:53.0582194Z * [new tag] trunk/9222552572890fd7ff1d75884cc6a99a55ab90bc -> trunk/9222552572890fd7ff1d75884cc6a99a55ab90bc 2025-07-17T06:36:53.0582994Z * [new tag] trunk/92388bb2ab14dae7b63c2088de4d6add413d1c27 -> trunk/92388bb2ab14dae7b63c2088de4d6add413d1c27 2025-07-17T06:36:53.0583803Z * [new tag] trunk/92409b6c89fbfbd3caa79c81b1e3d9e7917d3bc7 -> trunk/92409b6c89fbfbd3caa79c81b1e3d9e7917d3bc7 2025-07-17T06:36:53.0584713Z * [new tag] trunk/924fc52e1842de756a7632e7b2777aeed77d60e5 -> trunk/924fc52e1842de756a7632e7b2777aeed77d60e5 2025-07-17T06:36:53.0585526Z * [new tag] trunk/925fbfca27580f2ec8d5f9bfd549b1fe2e665617 -> trunk/925fbfca27580f2ec8d5f9bfd549b1fe2e665617 2025-07-17T06:36:53.0586346Z * [new tag] trunk/92b7ed6d07fcd6af31cddc7b4276e626b023bd0b -> trunk/92b7ed6d07fcd6af31cddc7b4276e626b023bd0b 2025-07-17T06:36:53.0587315Z * [new tag] trunk/92c79f36dbbdb01e0aab6efb8f52df828e1046d5 -> trunk/92c79f36dbbdb01e0aab6efb8f52df828e1046d5 2025-07-17T06:36:53.0588137Z * [new tag] trunk/92ee5bd9f6bef38b3e3e81a37f4d5374395aeb40 -> trunk/92ee5bd9f6bef38b3e3e81a37f4d5374395aeb40 2025-07-17T06:36:53.0588968Z * [new tag] trunk/92f41ccc2651ab284118ec7087977ab455027eb0 -> trunk/92f41ccc2651ab284118ec7087977ab455027eb0 2025-07-17T06:36:53.0589768Z * [new tag] trunk/930b575389f9233efddf70ea7b7804ed06af80d5 -> trunk/930b575389f9233efddf70ea7b7804ed06af80d5 2025-07-17T06:36:53.0590649Z * [new tag] trunk/9328a7fb589f6372ea478e47cdae8d124030f383 -> trunk/9328a7fb589f6372ea478e47cdae8d124030f383 2025-07-17T06:36:53.0591460Z * [new tag] trunk/9338d85d4594f981c198bcbb7edfccf6b92643be -> trunk/9338d85d4594f981c198bcbb7edfccf6b92643be 2025-07-17T06:36:53.0592363Z * [new tag] trunk/9345279c6ebdbad95b7b53bc2cb6f63a4e57b2cc -> trunk/9345279c6ebdbad95b7b53bc2cb6f63a4e57b2cc 2025-07-17T06:36:53.0593160Z * [new tag] trunk/937529f0b31788726e53890f5601886c64dc9eec -> trunk/937529f0b31788726e53890f5601886c64dc9eec 2025-07-17T06:36:53.0593956Z * [new tag] trunk/938515fa75f4e9d28c62a2aaa3e0e5428c867c36 -> trunk/938515fa75f4e9d28c62a2aaa3e0e5428c867c36 2025-07-17T06:36:53.0594921Z * [new tag] trunk/93854e83b7bfde94090662e9b372d8bf44ccf5d4 -> trunk/93854e83b7bfde94090662e9b372d8bf44ccf5d4 2025-07-17T06:36:53.0596117Z * [new tag] trunk/944a140e90389eced1ec38e14cb4345811ed0b1a -> trunk/944a140e90389eced1ec38e14cb4345811ed0b1a 2025-07-17T06:36:53.0596965Z * [new tag] trunk/9462106b7e41d9a24308255e15613b464ab086ce -> trunk/9462106b7e41d9a24308255e15613b464ab086ce 2025-07-17T06:36:53.0597738Z * [new tag] trunk/94716db22214912896cf680dc3eb88574f611a42 -> trunk/94716db22214912896cf680dc3eb88574f611a42 2025-07-17T06:36:53.0598541Z * [new tag] trunk/94763f5ca75330206777f3c1b36ff124706bd9d9 -> trunk/94763f5ca75330206777f3c1b36ff124706bd9d9 2025-07-17T06:36:53.0599325Z * [new tag] trunk/94995eba07763890b86465d53c4647c089f48d0a -> trunk/94995eba07763890b86465d53c4647c089f48d0a 2025-07-17T06:36:53.0600122Z * [new tag] trunk/94ae61533719defecb08d11f63c5d9fe9a826c00 -> trunk/94ae61533719defecb08d11f63c5d9fe9a826c00 2025-07-17T06:36:53.0600937Z * [new tag] trunk/94c746bb43484787a3f5bbdc2f72bd4fb02f2964 -> trunk/94c746bb43484787a3f5bbdc2f72bd4fb02f2964 2025-07-17T06:36:53.0601752Z * [new tag] trunk/94da4523ec4362dabbf9f08f9f2efce79ab70b73 -> trunk/94da4523ec4362dabbf9f08f9f2efce79ab70b73 2025-07-17T06:36:53.0602641Z * [new tag] trunk/94f8679019ea4b1272f1ad58ad7cad87147cf5a7 -> trunk/94f8679019ea4b1272f1ad58ad7cad87147cf5a7 2025-07-17T06:36:53.0603464Z * [new tag] trunk/9508d73307b4bc1fe453677526a096e5e10a7575 -> trunk/9508d73307b4bc1fe453677526a096e5e10a7575 2025-07-17T06:36:53.0604263Z * [new tag] trunk/9513b9d03fa8950ba5d2b59cc0b1a1aab3a41c06 -> trunk/9513b9d03fa8950ba5d2b59cc0b1a1aab3a41c06 2025-07-17T06:36:53.0605090Z * [new tag] trunk/95448b2ce61c3995ecdae0bfec655a5ef81a117d -> trunk/95448b2ce61c3995ecdae0bfec655a5ef81a117d 2025-07-17T06:36:53.1002207Z * [new tag] trunk/954ce949500746763a487a8ed9800035e7cd87d4 -> trunk/954ce949500746763a487a8ed9800035e7cd87d4 2025-07-17T06:36:53.1026440Z * [new tag] trunk/95a7d1912a86d857a9f4adb55b73b57518ce1e7b -> trunk/95a7d1912a86d857a9f4adb55b73b57518ce1e7b 2025-07-17T06:36:53.1027389Z * [new tag] trunk/95bc3da9f8555897d5d2b90f75385e3b2ff7bc43 -> trunk/95bc3da9f8555897d5d2b90f75385e3b2ff7bc43 2025-07-17T06:36:53.1028265Z * [new tag] trunk/95cb42c45d17f532222611e8028c9307622cc3c9 -> trunk/95cb42c45d17f532222611e8028c9307622cc3c9 2025-07-17T06:36:53.1029338Z * [new tag] trunk/9620994067b18e846a097d1e99af85ec2426ef0a -> trunk/9620994067b18e846a097d1e99af85ec2426ef0a 2025-07-17T06:36:53.1030135Z * [new tag] trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 -> trunk/9636e2cfd3e995ef977f670ad47e8e895296d992 2025-07-17T06:36:53.1030942Z * [new tag] trunk/9642c7568967ab424c5d0e04ef2cd1e82a54b5f8 -> trunk/9642c7568967ab424c5d0e04ef2cd1e82a54b5f8 2025-07-17T06:36:53.1031755Z * [new tag] trunk/9656251bb1bee12c0e2f21828dc14a4c3c06afdd -> trunk/9656251bb1bee12c0e2f21828dc14a4c3c06afdd 2025-07-17T06:36:53.1032548Z * [new tag] trunk/9665702c64af633ab23499228d552a49660a9fa2 -> trunk/9665702c64af633ab23499228d552a49660a9fa2 2025-07-17T06:36:53.1033335Z * [new tag] trunk/96897e721b76f3b72aa406696165711d74f8d260 -> trunk/96897e721b76f3b72aa406696165711d74f8d260 2025-07-17T06:36:53.1034267Z * [new tag] trunk/968f90ce7344223c788eeba59200cc22b9f94dcd -> trunk/968f90ce7344223c788eeba59200cc22b9f94dcd 2025-07-17T06:36:53.1035259Z * [new tag] trunk/96d082d06bda98addd4ad7903d315477404dc272 -> trunk/96d082d06bda98addd4ad7903d315477404dc272 2025-07-17T06:36:53.1036072Z * [new tag] trunk/96df86641048a282a4622ac93d19e4c7b6c38b8e -> trunk/96df86641048a282a4622ac93d19e4c7b6c38b8e 2025-07-17T06:36:53.1036886Z * [new tag] trunk/96e4c95cd8d03037765ffd4b8fcdaa06c4b2c51c -> trunk/96e4c95cd8d03037765ffd4b8fcdaa06c4b2c51c 2025-07-17T06:36:53.1037714Z * [new tag] trunk/9768d393fa62df8a508136f5b6634bf955d8365d -> trunk/9768d393fa62df8a508136f5b6634bf955d8365d 2025-07-17T06:36:53.1038524Z * [new tag] trunk/977abe786d907c1ff76528a550e3d53c9f3b1044 -> trunk/977abe786d907c1ff76528a550e3d53c9f3b1044 2025-07-17T06:36:53.1039336Z * [new tag] trunk/981c99fdffd9a4f510e4b89245d16aa427ee0978 -> trunk/981c99fdffd9a4f510e4b89245d16aa427ee0978 2025-07-17T06:36:53.1040205Z * [new tag] trunk/987314aa96fdf8aa051e3643b26f4209b7fe166d -> trunk/987314aa96fdf8aa051e3643b26f4209b7fe166d 2025-07-17T06:36:53.1041054Z * [new tag] trunk/98a34e8d4b4d73504afbf49f70284221e6303314 -> trunk/98a34e8d4b4d73504afbf49f70284221e6303314 2025-07-17T06:36:53.1041876Z * [new tag] trunk/98bb0c0e7888a84de1d22c4952de69a5d5b1a0b3 -> trunk/98bb0c0e7888a84de1d22c4952de69a5d5b1a0b3 2025-07-17T06:36:53.1042687Z * [new tag] trunk/9944cd0949e96d656746de6df0cb3a5a954597e4 -> trunk/9944cd0949e96d656746de6df0cb3a5a954597e4 2025-07-17T06:36:53.1043488Z * [new tag] trunk/996206e66fcafff25d0af5177497e8f792000869 -> trunk/996206e66fcafff25d0af5177497e8f792000869 2025-07-17T06:36:53.1044298Z * [new tag] trunk/9963845a4e55a3e8d35ea49deb8f8c1f6c53cb74 -> trunk/9963845a4e55a3e8d35ea49deb8f8c1f6c53cb74 2025-07-17T06:36:53.1045108Z * [new tag] trunk/9968c854b6a38857d05fb1da7bea797fbf23c880 -> trunk/9968c854b6a38857d05fb1da7bea797fbf23c880 2025-07-17T06:36:53.1045959Z * [new tag] trunk/9968edd00256fdb47e2e0129df918c5b23c06419 -> trunk/9968edd00256fdb47e2e0129df918c5b23c06419 2025-07-17T06:36:53.1046821Z * [new tag] trunk/99c1a6bdd98ecb1f9b2fb8310bcd891c8c6adf57 -> trunk/99c1a6bdd98ecb1f9b2fb8310bcd891c8c6adf57 2025-07-17T06:36:53.1047652Z * [new tag] trunk/99e99d5bfe57eddfce23f7dc9ede016cb1393c52 -> trunk/99e99d5bfe57eddfce23f7dc9ede016cb1393c52 2025-07-17T06:36:53.1048470Z * [new tag] trunk/9a2c669425379eb264f896390b8fcd8d3f2ce959 -> trunk/9a2c669425379eb264f896390b8fcd8d3f2ce959 2025-07-17T06:36:53.1049272Z * [new tag] trunk/9a42f01586267b52fe303c0c1b7a71d50cc4178e -> trunk/9a42f01586267b52fe303c0c1b7a71d50cc4178e 2025-07-17T06:36:53.1050077Z * [new tag] trunk/9a4c08ddfc9b43c07cd16355277d359dfcef50d6 -> trunk/9a4c08ddfc9b43c07cd16355277d359dfcef50d6 2025-07-17T06:36:53.1050985Z * [new tag] trunk/9a5278225fc5e7b46d54a65ae1a3f049ee49824f -> trunk/9a5278225fc5e7b46d54a65ae1a3f049ee49824f 2025-07-17T06:36:53.1051782Z * [new tag] trunk/9a5c59368d46d3793e09b72a2782ef4d12e74392 -> trunk/9a5c59368d46d3793e09b72a2782ef4d12e74392 2025-07-17T06:36:53.1052672Z * [new tag] trunk/9aaa184105b2f436b5834187c4c004c02e438491 -> trunk/9aaa184105b2f436b5834187c4c004c02e438491 2025-07-17T06:36:53.1228179Z * [new tag] trunk/9afee0fa969fd4ebab86a2cbad3217c8bade156e -> trunk/9afee0fa969fd4ebab86a2cbad3217c8bade156e 2025-07-17T06:36:53.1229018Z * [new tag] trunk/9b0013c6bb98d7161e921d03be76c81bbc0eebef -> trunk/9b0013c6bb98d7161e921d03be76c81bbc0eebef 2025-07-17T06:36:53.1229923Z * [new tag] trunk/9b122aab5dcd419b96d4a1137c45e99bde94f14e -> trunk/9b122aab5dcd419b96d4a1137c45e99bde94f14e 2025-07-17T06:36:53.1230794Z * [new tag] trunk/9b498d3bb28b8e3411ce464dd2755c5b96d92c8f -> trunk/9b498d3bb28b8e3411ce464dd2755c5b96d92c8f 2025-07-17T06:36:53.1231718Z * [new tag] trunk/9b4a748e29a720d0fade7e1298a68cc36cfd5f5e -> trunk/9b4a748e29a720d0fade7e1298a68cc36cfd5f5e 2025-07-17T06:36:53.1232540Z * [new tag] trunk/9b4db093cb63555654c868ba9e3ab68ef4c722e5 -> trunk/9b4db093cb63555654c868ba9e3ab68ef4c722e5 2025-07-17T06:36:53.1233373Z * [new tag] trunk/9bae2fcf990cd51891218895ac1b3cfe70ffc2c3 -> trunk/9bae2fcf990cd51891218895ac1b3cfe70ffc2c3 2025-07-17T06:36:53.1234193Z * [new tag] trunk/9bd0830ed8d3e753afc3e9fff2553f4c5871f6f9 -> trunk/9bd0830ed8d3e753afc3e9fff2553f4c5871f6f9 2025-07-17T06:36:53.1235017Z * [new tag] trunk/9bd42c15707a4b410ee005d5916e882a7db432bb -> trunk/9bd42c15707a4b410ee005d5916e882a7db432bb 2025-07-17T06:36:53.1235908Z * [new tag] trunk/9bdf87e8918b9a3f78d7bcb8a770c19f7c82ac15 -> trunk/9bdf87e8918b9a3f78d7bcb8a770c19f7c82ac15 2025-07-17T06:36:53.1236747Z * [new tag] trunk/9be5860bc34b643abd02ac5b5a89d820efcdfbc9 -> trunk/9be5860bc34b643abd02ac5b5a89d820efcdfbc9 2025-07-17T06:36:53.1237574Z * [new tag] trunk/9bf41633d76f7816fdcc0b7ae22a42dc91821004 -> trunk/9bf41633d76f7816fdcc0b7ae22a42dc91821004 2025-07-17T06:36:53.1238360Z * [new tag] trunk/9bf6593e96b711641606e6008a4936173fd3b458 -> trunk/9bf6593e96b711641606e6008a4936173fd3b458 2025-07-17T06:36:53.1239165Z * [new tag] trunk/9bfefda296d2df31ce9bb90410d91d8f18127545 -> trunk/9bfefda296d2df31ce9bb90410d91d8f18127545 2025-07-17T06:36:53.1239982Z * [new tag] trunk/9c189ed29a2cfa08ff357cb5042ff8c34f07d668 -> trunk/9c189ed29a2cfa08ff357cb5042ff8c34f07d668 2025-07-17T06:36:53.1240993Z * [new tag] trunk/9c39bc24807a5843f8affdf56bd71836760dc554 -> trunk/9c39bc24807a5843f8affdf56bd71836760dc554 2025-07-17T06:36:53.1241828Z * [new tag] trunk/9ca080db87f66becb2bb2c61598c0beabae73d5f -> trunk/9ca080db87f66becb2bb2c61598c0beabae73d5f 2025-07-17T06:36:53.1242680Z * [new tag] trunk/9cced33c7c9cdfc68e9ed85c4b45bdfd05dac92d -> trunk/9cced33c7c9cdfc68e9ed85c4b45bdfd05dac92d 2025-07-17T06:36:53.1243529Z * [new tag] trunk/9cd521de4dad5fc6bca94e253a9334b9a521acb0 -> trunk/9cd521de4dad5fc6bca94e253a9334b9a521acb0 2025-07-17T06:36:53.1244372Z * [new tag] trunk/9d175bc7e615b062d8ea57df6ca17edb8a6b951f -> trunk/9d175bc7e615b062d8ea57df6ca17edb8a6b951f 2025-07-17T06:36:53.1245280Z * [new tag] trunk/9d184bda2f190a3ba72a4a0d95e1fde26d6bfc08 -> trunk/9d184bda2f190a3ba72a4a0d95e1fde26d6bfc08 2025-07-17T06:36:53.1246141Z * [new tag] trunk/9d2d2270037c5a014767cdfa531863da8062bf9d -> trunk/9d2d2270037c5a014767cdfa531863da8062bf9d 2025-07-17T06:36:53.1247029Z * [new tag] trunk/9d59b516e9b3026948918e3ff8c2ef55a33d13ad -> trunk/9d59b516e9b3026948918e3ff8c2ef55a33d13ad 2025-07-17T06:36:53.1247940Z * [new tag] trunk/9d677389cb5eb75d423860c55519b522961a9195 -> trunk/9d677389cb5eb75d423860c55519b522961a9195 2025-07-17T06:36:53.1248764Z * [new tag] trunk/9de23d0c29dfac8dc0f6f234bdbcd85a6375fa81 -> trunk/9de23d0c29dfac8dc0f6f234bdbcd85a6375fa81 2025-07-17T06:36:53.1249577Z * [new tag] trunk/9df0176408518b30ac172837bd697c9d19b19a98 -> trunk/9df0176408518b30ac172837bd697c9d19b19a98 2025-07-17T06:36:53.1250397Z * [new tag] trunk/9df2e8020f190bdad02258aff2b2f88f7db3dcab -> trunk/9df2e8020f190bdad02258aff2b2f88f7db3dcab 2025-07-17T06:36:53.1251217Z * [new tag] trunk/9e132b770e06c2399f827d3d1963fe036e9744e6 -> trunk/9e132b770e06c2399f827d3d1963fe036e9744e6 2025-07-17T06:36:53.1252010Z * [new tag] trunk/9e5f4a844c0aebf964a435094005c92713fbe99a -> trunk/9e5f4a844c0aebf964a435094005c92713fbe99a 2025-07-17T06:36:53.1252820Z * [new tag] trunk/9e88d6c857fd2b276427f4527130e2ecb7ed731e -> trunk/9e88d6c857fd2b276427f4527130e2ecb7ed731e 2025-07-17T06:36:53.1253698Z * [new tag] trunk/9e9484d022f8d65e2066b5683b75c84ba0f36332 -> trunk/9e9484d022f8d65e2066b5683b75c84ba0f36332 2025-07-17T06:36:53.1254499Z * [new tag] trunk/9ed0060225a7b78c60c42f29be94444b537edd4a -> trunk/9ed0060225a7b78c60c42f29be94444b537edd4a 2025-07-17T06:36:53.1462074Z * [new tag] trunk/9f18482d41227df3cf2248dfa54bd6601e61e1ca -> trunk/9f18482d41227df3cf2248dfa54bd6601e61e1ca 2025-07-17T06:36:53.1462966Z * [new tag] trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c -> trunk/9f37cce69334bccebf4b21503f0047d0c0bb320c 2025-07-17T06:36:53.1463800Z * [new tag] trunk/9f5153b1a495b3b2b7ad9f22a064fe4074d742aa -> trunk/9f5153b1a495b3b2b7ad9f22a064fe4074d742aa 2025-07-17T06:36:53.1464609Z * [new tag] trunk/9f5276dc07c788533af8945b1605df47a33313e7 -> trunk/9f5276dc07c788533af8945b1605df47a33313e7 2025-07-17T06:36:53.1465435Z * [new tag] trunk/9fe2d156a9f81d67e248c0edaf7feee1a8d6c4d5 -> trunk/9fe2d156a9f81d67e248c0edaf7feee1a8d6c4d5 2025-07-17T06:36:53.1466280Z * [new tag] trunk/9fed2addedb42da86b657165fe14eadc911232cf -> trunk/9fed2addedb42da86b657165fe14eadc911232cf 2025-07-17T06:36:53.1467102Z * [new tag] trunk/a00a697c1748937b0c6d13508ff76b8af4957d8a -> trunk/a00a697c1748937b0c6d13508ff76b8af4957d8a 2025-07-17T06:36:53.1467945Z * [new tag] trunk/a0308edb6cdfd8983e80a499890d9f320556e844 -> trunk/a0308edb6cdfd8983e80a499890d9f320556e844 2025-07-17T06:36:53.1468816Z * [new tag] trunk/a04a13c44908fe0ace4f76a228d045dbf5c015bc -> trunk/a04a13c44908fe0ace4f76a228d045dbf5c015bc 2025-07-17T06:36:53.1469636Z * [new tag] trunk/a0e0abd0379ed403adc926d3cc5459fa35aff0a0 -> trunk/a0e0abd0379ed403adc926d3cc5459fa35aff0a0 2025-07-17T06:36:53.1470448Z * [new tag] trunk/a10024d7dea47c52469059a47efe376eb20adca0 -> trunk/a10024d7dea47c52469059a47efe376eb20adca0 2025-07-17T06:36:53.1471281Z * [new tag] trunk/a1057cda31fe890d237fe9a2e6b3314cd4be3439 -> trunk/a1057cda31fe890d237fe9a2e6b3314cd4be3439 2025-07-17T06:36:53.1472085Z * [new tag] trunk/a1257446f8eaf81eb758e89b4e784bed47b9c733 -> trunk/a1257446f8eaf81eb758e89b4e784bed47b9c733 2025-07-17T06:36:53.1472878Z * [new tag] trunk/a1282b18239204b0344884ebd232b33b2d8b748f -> trunk/a1282b18239204b0344884ebd232b33b2d8b748f 2025-07-17T06:36:53.1473719Z * [new tag] trunk/a14f427db68e54500ef4cd9ed34cb9537263bb74 -> trunk/a14f427db68e54500ef4cd9ed34cb9537263bb74 2025-07-17T06:36:53.1474566Z * [new tag] trunk/a1dad2f2d2c082e2a3784c3d585ef0204b7ccf75 -> trunk/a1dad2f2d2c082e2a3784c3d585ef0204b7ccf75 2025-07-17T06:36:53.1475464Z * [new tag] trunk/a1e4f1f98a0b9596fe52aaf2f85b0778498d5f49 -> trunk/a1e4f1f98a0b9596fe52aaf2f85b0778498d5f49 2025-07-17T06:36:53.1476285Z * [new tag] trunk/a205e8fd7357cf5c2b95eb4bec7c8ff7b5c41651 -> trunk/a205e8fd7357cf5c2b95eb4bec7c8ff7b5c41651 2025-07-17T06:36:53.1477255Z * [new tag] trunk/a21806f0386c2671fc11ae37fe2fe96c4aeb37d9 -> trunk/a21806f0386c2671fc11ae37fe2fe96c4aeb37d9 2025-07-17T06:36:53.1478068Z * [new tag] trunk/a23f4471b952d8cd630b860639e0aaa9be957d60 -> trunk/a23f4471b952d8cd630b860639e0aaa9be957d60 2025-07-17T06:36:53.1478880Z * [new tag] trunk/a24afbff3f44399ac9513addce6bd50cacab22d2 -> trunk/a24afbff3f44399ac9513addce6bd50cacab22d2 2025-07-17T06:36:53.1479762Z * [new tag] trunk/a24ce67deedab025531660ddb44c148bb066edf8 -> trunk/a24ce67deedab025531660ddb44c148bb066edf8 2025-07-17T06:36:53.1480635Z * [new tag] trunk/a25d1443fae79a9984eaa44e973b2f5645c85da8 -> trunk/a25d1443fae79a9984eaa44e973b2f5645c85da8 2025-07-17T06:36:53.1481437Z * [new tag] trunk/a26bf3892778ca7cc457c772a1f5194c11b6f33c -> trunk/a26bf3892778ca7cc457c772a1f5194c11b6f33c 2025-07-17T06:36:53.1482352Z * [new tag] trunk/a28e6ae38f1e1de33ecf48b679ff1eda71fc2efc -> trunk/a28e6ae38f1e1de33ecf48b679ff1eda71fc2efc 2025-07-17T06:36:53.1483191Z * [new tag] trunk/a2a75be0f8d680cf1dc36c50f34f225b0c7c4d6a -> trunk/a2a75be0f8d680cf1dc36c50f34f225b0c7c4d6a 2025-07-17T06:36:53.1484010Z * [new tag] trunk/a2ad16be72bf989c01b96c4c56b1c108a71c087f -> trunk/a2ad16be72bf989c01b96c4c56b1c108a71c087f 2025-07-17T06:36:53.1484835Z * [new tag] trunk/a2b0b2698d5b953861b2e4f3cdee11136f07bd3b -> trunk/a2b0b2698d5b953861b2e4f3cdee11136f07bd3b 2025-07-17T06:36:53.1485679Z * [new tag] trunk/a3098a74d494020dbb906c05ef047013e1921662 -> trunk/a3098a74d494020dbb906c05ef047013e1921662 2025-07-17T06:36:53.1486522Z * [new tag] trunk/a317c63d1b70a7989a4cab09394691fb7a3d8323 -> trunk/a317c63d1b70a7989a4cab09394691fb7a3d8323 2025-07-17T06:36:53.1487342Z * [new tag] trunk/a355158fcba807fda1e47e5ee42babdbcf447947 -> trunk/a355158fcba807fda1e47e5ee42babdbcf447947 2025-07-17T06:36:53.1488166Z * [new tag] trunk/a35b3a9b95bbe0703de33802162a83cb7970ddc0 -> trunk/a35b3a9b95bbe0703de33802162a83cb7970ddc0 2025-07-17T06:36:53.1488955Z * [new tag] trunk/a369350065493109d1abfbb994695777ab11bcf4 -> trunk/a369350065493109d1abfbb994695777ab11bcf4 2025-07-17T06:36:53.1694247Z * [new tag] trunk/a38f433be2e94a64b095a44ba39879d02d0c2316 -> trunk/a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:36:53.1695104Z * [new tag] trunk/a3ec6d64b24fdbd61164240f3bcd8530434812b5 -> trunk/a3ec6d64b24fdbd61164240f3bcd8530434812b5 2025-07-17T06:36:53.1695913Z * [new tag] trunk/a46ea8a364e528828c4369d58d53802291f0b49b -> trunk/a46ea8a364e528828c4369d58d53802291f0b49b 2025-07-17T06:36:53.1696709Z * [new tag] trunk/a47ca4fc746a663c0e97d55a87815d0965d0a7e9 -> trunk/a47ca4fc746a663c0e97d55a87815d0965d0a7e9 2025-07-17T06:36:53.1697531Z * [new tag] trunk/a4b59498c5222a02a706fa1e1308a6035d65feab -> trunk/a4b59498c5222a02a706fa1e1308a6035d65feab 2025-07-17T06:36:53.1698337Z * [new tag] trunk/a4c7e7f98373ad8f309e419c6f98b0134933dcda -> trunk/a4c7e7f98373ad8f309e419c6f98b0134933dcda 2025-07-17T06:36:53.1699136Z * [new tag] trunk/a4d753295ee5662056bdfd1b00fa242071ac7125 -> trunk/a4d753295ee5662056bdfd1b00fa242071ac7125 2025-07-17T06:36:53.1699949Z * [new tag] trunk/a4ea242edc8626250e54a62aa073cba0e5322af2 -> trunk/a4ea242edc8626250e54a62aa073cba0e5322af2 2025-07-17T06:36:53.1700770Z * [new tag] trunk/a529a5daf5d348f4f8dac4fcd85521153b6a3d4d -> trunk/a529a5daf5d348f4f8dac4fcd85521153b6a3d4d 2025-07-17T06:36:53.1701570Z * [new tag] trunk/a5938ff431202864c92fec7d9042574348b1c15b -> trunk/a5938ff431202864c92fec7d9042574348b1c15b 2025-07-17T06:36:53.1702361Z * [new tag] trunk/a5b4463d60e5beaec546843b24876ce573890784 -> trunk/a5b4463d60e5beaec546843b24876ce573890784 2025-07-17T06:36:53.1703311Z * [new tag] trunk/a5c61eb78dda6b7b4c4beb8bc616f9545ea4807b -> trunk/a5c61eb78dda6b7b4c4beb8bc616f9545ea4807b 2025-07-17T06:36:53.1704140Z * [new tag] trunk/a5cbb2bcb3c005909a3c10042605e861e6390927 -> trunk/a5cbb2bcb3c005909a3c10042605e861e6390927 2025-07-17T06:36:53.1704982Z * [new tag] trunk/a5df6ffbc2cf8d61fc98bca1c10f22ff64b2318e -> trunk/a5df6ffbc2cf8d61fc98bca1c10f22ff64b2318e 2025-07-17T06:36:53.1705799Z * [new tag] trunk/a5e68814d556cf67c6511876410970dd08c3dd6d -> trunk/a5e68814d556cf67c6511876410970dd08c3dd6d 2025-07-17T06:36:53.1706604Z * [new tag] trunk/a5f59cc2eab3a5201712c52fe48c268357ba4f3c -> trunk/a5f59cc2eab3a5201712c52fe48c268357ba4f3c 2025-07-17T06:36:53.1707415Z * [new tag] trunk/a6084b71edb8d2856356724b5e71c4e2a861867f -> trunk/a6084b71edb8d2856356724b5e71c4e2a861867f 2025-07-17T06:36:53.1708205Z * [new tag] trunk/a6210fd07b8fe1924f24229bb30562608af4f41a -> trunk/a6210fd07b8fe1924f24229bb30562608af4f41a 2025-07-17T06:36:53.1709091Z * [new tag] trunk/a666cf3b38f5e7739f94b175f152b127a6d51344 -> trunk/a666cf3b38f5e7739f94b175f152b127a6d51344 2025-07-17T06:36:53.1709902Z * [new tag] trunk/a67eb1a0d627d59d95a99722d37cab3bf054261f -> trunk/a67eb1a0d627d59d95a99722d37cab3bf054261f 2025-07-17T06:36:53.1710718Z * [new tag] trunk/a69e27ca5ad4287add73972ef1b34b469e3c7d23 -> trunk/a69e27ca5ad4287add73972ef1b34b469e3c7d23 2025-07-17T06:36:53.1711523Z * [new tag] trunk/a6a3a441442a96f38d0771c985f753223cea2ba0 -> trunk/a6a3a441442a96f38d0771c985f753223cea2ba0 2025-07-17T06:36:53.1712317Z * [new tag] trunk/a6a8641c8aee5797324c3d41749bcae62b4e5de8 -> trunk/a6a8641c8aee5797324c3d41749bcae62b4e5de8 2025-07-17T06:36:53.1713119Z * [new tag] trunk/a6fab82b16011213cb010c8c50461b9a680748a2 -> trunk/a6fab82b16011213cb010c8c50461b9a680748a2 2025-07-17T06:36:53.1713934Z * [new tag] trunk/a73d9e0aec9319e56ba0c9b0ccc25db69c739faf -> trunk/a73d9e0aec9319e56ba0c9b0ccc25db69c739faf 2025-07-17T06:36:53.1714758Z * [new tag] trunk/a767e50adca9e08dd638be60c9e5604de15b9f15 -> trunk/a767e50adca9e08dd638be60c9e5604de15b9f15 2025-07-17T06:36:53.1715681Z * [new tag] trunk/a7b29c88b1f55bac02f38bf1faba68b6c4be4c9c -> trunk/a7b29c88b1f55bac02f38bf1faba68b6c4be4c9c 2025-07-17T06:36:53.1716508Z * [new tag] trunk/a7eb153bba0534daaa1b652d44bb9fb5bd1ac7c7 -> trunk/a7eb153bba0534daaa1b652d44bb9fb5bd1ac7c7 2025-07-17T06:36:53.1717331Z * [new tag] trunk/a82c171bb26949dda5f5932051a905a9bab38761 -> trunk/a82c171bb26949dda5f5932051a905a9bab38761 2025-07-17T06:36:53.1718134Z * [new tag] trunk/a85ad5552532926b78d489d1b60671f74bf6dc8e -> trunk/a85ad5552532926b78d489d1b60671f74bf6dc8e 2025-07-17T06:36:53.1718938Z * [new tag] trunk/a87dfc7480bc98d33dab274d7e95723aa9cf7840 -> trunk/a87dfc7480bc98d33dab274d7e95723aa9cf7840 2025-07-17T06:36:53.1719744Z * [new tag] trunk/a8b973673798ca79dfe616c9080415d09f9e990d -> trunk/a8b973673798ca79dfe616c9080415d09f9e990d 2025-07-17T06:36:53.2257081Z * [new tag] trunk/a8ec7babcf27584cf068c3a5a04bb3ea0102ab99 -> trunk/a8ec7babcf27584cf068c3a5a04bb3ea0102ab99 2025-07-17T06:36:53.2257963Z * [new tag] trunk/a8fe982993221048ee1665ce28add1b02888784d -> trunk/a8fe982993221048ee1665ce28add1b02888784d 2025-07-17T06:36:53.2258783Z * [new tag] trunk/a92b24cd839aa6807f3c9ea8b8787da99c4490c0 -> trunk/a92b24cd839aa6807f3c9ea8b8787da99c4490c0 2025-07-17T06:36:53.2259598Z * [new tag] trunk/a9352bd25e9f070e8f846b8fdbcd7c90ad5c66b3 -> trunk/a9352bd25e9f070e8f846b8fdbcd7c90ad5c66b3 2025-07-17T06:36:53.2260408Z * [new tag] trunk/a952956d05dd617355007ae31d8e936474a35f14 -> trunk/a952956d05dd617355007ae31d8e936474a35f14 2025-07-17T06:36:53.2261463Z * [new tag] trunk/a9537b626c91ce617139ade60b9107a2805a4248 -> trunk/a9537b626c91ce617139ade60b9107a2805a4248 2025-07-17T06:36:53.2262345Z * [new tag] trunk/a95504b10fff38b5308660e0b535961beed6c9f1 -> trunk/a95504b10fff38b5308660e0b535961beed6c9f1 2025-07-17T06:36:53.2263167Z * [new tag] trunk/a9a0501ec40d8fab07b0f8d2fcbf8eb7147c1ae8 -> trunk/a9a0501ec40d8fab07b0f8d2fcbf8eb7147c1ae8 2025-07-17T06:36:53.2263991Z * [new tag] trunk/a9ac9f2635a9be28eaf267ed41070081a4ce05d8 -> trunk/a9ac9f2635a9be28eaf267ed41070081a4ce05d8 2025-07-17T06:36:53.2264789Z * [new tag] trunk/a9d5157e2596e1d830158e83fab618aab1d4ee39 -> trunk/a9d5157e2596e1d830158e83fab618aab1d4ee39 2025-07-17T06:36:53.2265591Z * [new tag] trunk/a9ee4250d55c6342b80e2d57a8ad9a1992ddcdce -> trunk/a9ee4250d55c6342b80e2d57a8ad9a1992ddcdce 2025-07-17T06:36:53.2266391Z * [new tag] trunk/a9ef7c4d044d386993a6e82b5ad37b7db759b502 -> trunk/a9ef7c4d044d386993a6e82b5ad37b7db759b502 2025-07-17T06:36:53.2267282Z * [new tag] trunk/a9f902add02383ca1b0386eb865767641975fede -> trunk/a9f902add02383ca1b0386eb865767641975fede 2025-07-17T06:36:53.2268090Z * [new tag] trunk/aa116285768ba6a8cd34bf8d245e38d04c88810a -> trunk/aa116285768ba6a8cd34bf8d245e38d04c88810a 2025-07-17T06:36:53.2268891Z * [new tag] trunk/aa280ea19fb20923d048909fa98af092e18ca2fb -> trunk/aa280ea19fb20923d048909fa98af092e18ca2fb 2025-07-17T06:36:53.2269710Z * [new tag] trunk/aa2d54148d476383986855af3fe53862da861dda -> trunk/aa2d54148d476383986855af3fe53862da861dda 2025-07-17T06:36:53.2270518Z * [new tag] trunk/aab949aa96a6b197b75ffa25608fa84049ff68ad -> trunk/aab949aa96a6b197b75ffa25608fa84049ff68ad 2025-07-17T06:36:53.2271343Z * [new tag] trunk/aac0e8f0e998a9381f0eb5dd303a853515109eb0 -> trunk/aac0e8f0e998a9381f0eb5dd303a853515109eb0 2025-07-17T06:36:53.2272174Z * [new tag] trunk/aacb9440791f4e9567e2123f19bb062e75c2d242 -> trunk/aacb9440791f4e9567e2123f19bb062e75c2d242 2025-07-17T06:36:53.2273020Z * [new tag] trunk/ab2294d8289a7757a2fc321cdefac88e2b378edf -> trunk/ab2294d8289a7757a2fc321cdefac88e2b378edf 2025-07-17T06:36:53.2273920Z * [new tag] trunk/ab3393e923514438c9bdfc1afcd0b2aac8be8de9 -> trunk/ab3393e923514438c9bdfc1afcd0b2aac8be8de9 2025-07-17T06:36:53.2274745Z * [new tag] trunk/ab51a937371e61f91cacae7d9fb4b1fe61f24f03 -> trunk/ab51a937371e61f91cacae7d9fb4b1fe61f24f03 2025-07-17T06:36:53.2275645Z * [new tag] trunk/ab56e5add9c36f611a4d9af2f43213926b65d7b4 -> trunk/ab56e5add9c36f611a4d9af2f43213926b65d7b4 2025-07-17T06:36:53.2276466Z * [new tag] trunk/ab655816b8f76f511fb2262d45276d8d1b13d59c -> trunk/ab655816b8f76f511fb2262d45276d8d1b13d59c 2025-07-17T06:36:53.2277262Z * [new tag] trunk/ab6cb34480a14f3cf2446519189ee5f0c5e7278d -> trunk/ab6cb34480a14f3cf2446519189ee5f0c5e7278d 2025-07-17T06:36:53.2278091Z * [new tag] trunk/ab81fb846cd0e52bbc6a2eb366706350639e209f -> trunk/ab81fb846cd0e52bbc6a2eb366706350639e209f 2025-07-17T06:36:53.2278908Z * [new tag] trunk/ab8874bd26894a8ab956408ceee2e89c9ad7f450 -> trunk/ab8874bd26894a8ab956408ceee2e89c9ad7f450 2025-07-17T06:36:53.2279714Z * [new tag] trunk/abbdf9f3632af505b3265b4258a6c185b257edde -> trunk/abbdf9f3632af505b3265b4258a6c185b257edde 2025-07-17T06:36:53.2280539Z * [new tag] trunk/abeae997a35b1920a45be9c26eff7474f2c6c5dd -> trunk/abeae997a35b1920a45be9c26eff7474f2c6c5dd 2025-07-17T06:36:53.2281375Z * [new tag] trunk/abf4da0d242274ba7ab4c0859d105cae74a2dbc5 -> trunk/abf4da0d242274ba7ab4c0859d105cae74a2dbc5 2025-07-17T06:36:53.2282190Z * [new tag] trunk/ac706bfc7f942b8a97401486a840dd8f6452f5cb -> trunk/ac706bfc7f942b8a97401486a840dd8f6452f5cb 2025-07-17T06:36:53.2283678Z * [new tag] trunk/ac86ec0e60370c037e018137f2048cafd47c5c28 -> trunk/ac86ec0e60370c037e018137f2048cafd47c5c28 2025-07-17T06:36:53.2284509Z * [new tag] trunk/acaf6ba3c6d0bdec88ab3f6c2ef82650050558d2 -> trunk/acaf6ba3c6d0bdec88ab3f6c2ef82650050558d2 2025-07-17T06:36:53.2482163Z * [new tag] trunk/ad86c05b78d343f3346d07a07e17639e421d2cf4 -> trunk/ad86c05b78d343f3346d07a07e17639e421d2cf4 2025-07-17T06:36:53.2483028Z * [new tag] trunk/ada44e5ba78be9377814678d1986556af2d6e570 -> trunk/ada44e5ba78be9377814678d1986556af2d6e570 2025-07-17T06:36:53.2483847Z * [new tag] trunk/add0b450bd9907ba9d089c79ca4af96c0590d8ff -> trunk/add0b450bd9907ba9d089c79ca4af96c0590d8ff 2025-07-17T06:36:53.2484674Z * [new tag] trunk/adf6dd1e44c1b006ea6078576b64d5616cecfa5a -> trunk/adf6dd1e44c1b006ea6078576b64d5616cecfa5a 2025-07-17T06:36:53.2485496Z * [new tag] trunk/adf9644440e0d007853e7fdfd67b6a59248f4fbb -> trunk/adf9644440e0d007853e7fdfd67b6a59248f4fbb 2025-07-17T06:36:53.2486443Z * [new tag] trunk/ae0f1f89847564b04bdc43395e664e48f08aaca2 -> trunk/ae0f1f89847564b04bdc43395e664e48f08aaca2 2025-07-17T06:36:53.2487259Z * [new tag] trunk/ae1094b72b7db368f292ed6033de5b495dcdc878 -> trunk/ae1094b72b7db368f292ed6033de5b495dcdc878 2025-07-17T06:36:53.2488068Z * [new tag] trunk/ae86e8f6c829a3cfa9204949156fce2d048c919b -> trunk/ae86e8f6c829a3cfa9204949156fce2d048c919b 2025-07-17T06:36:53.2488891Z * [new tag] trunk/aec569da2325c09487ab659a0f28c3b51e60d779 -> trunk/aec569da2325c09487ab659a0f28c3b51e60d779 2025-07-17T06:36:53.2489716Z * [new tag] trunk/aee2bfc5bae2974f5a3023d51dfa8e3e641144cc -> trunk/aee2bfc5bae2974f5a3023d51dfa8e3e641144cc 2025-07-17T06:36:53.2490556Z * [new tag] trunk/aeffb68d3466635e4e95c50bffd7dfebaba94da2 -> trunk/aeffb68d3466635e4e95c50bffd7dfebaba94da2 2025-07-17T06:36:53.2491402Z * [new tag] trunk/af284b45d5cbfd19d168bf1d118b3a40cd8b3a92 -> trunk/af284b45d5cbfd19d168bf1d118b3a40cd8b3a92 2025-07-17T06:36:53.2492219Z * [new tag] trunk/af3d06909400413801b726a96f3ff52b5ee9ebb5 -> trunk/af3d06909400413801b726a96f3ff52b5ee9ebb5 2025-07-17T06:36:53.2493014Z * [new tag] trunk/af9c92b4cb9f406129dfd8c64c082c0aaf7c723f -> trunk/af9c92b4cb9f406129dfd8c64c082c0aaf7c723f 2025-07-17T06:36:53.2493829Z * [new tag] trunk/aff9c1eec599b8fa97240d192534b0f650c16b1b -> trunk/aff9c1eec599b8fa97240d192534b0f650c16b1b 2025-07-17T06:36:53.2494639Z * [new tag] trunk/b00b641ff1fbfa8f4f6152ffc631e0d24145a7a8 -> trunk/b00b641ff1fbfa8f4f6152ffc631e0d24145a7a8 2025-07-17T06:36:53.2495452Z * [new tag] trunk/b020971e7806bba39aecf636e59e743911831ad8 -> trunk/b020971e7806bba39aecf636e59e743911831ad8 2025-07-17T06:36:53.2496257Z * [new tag] trunk/b0556110e58e3bcf2c872b933e4fd4a0d34398ad -> trunk/b0556110e58e3bcf2c872b933e4fd4a0d34398ad 2025-07-17T06:36:53.2497050Z * [new tag] trunk/b07725a9516028a485153c4b5356b3e33b990f81 -> trunk/b07725a9516028a485153c4b5356b3e33b990f81 2025-07-17T06:36:53.2497854Z * [new tag] trunk/b096341963c4af3b2b0d7f598eba1cdc1c74fb6e -> trunk/b096341963c4af3b2b0d7f598eba1cdc1c74fb6e 2025-07-17T06:36:53.2498662Z * [new tag] trunk/b09bd414a6ccba158c09f586a278051588d90936 -> trunk/b09bd414a6ccba158c09f586a278051588d90936 2025-07-17T06:36:53.2499482Z * [new tag] trunk/b0fbbef1361ccaab8a5aec8e7cd62150e7b361de -> trunk/b0fbbef1361ccaab8a5aec8e7cd62150e7b361de 2025-07-17T06:36:53.2500313Z * [new tag] trunk/b146ca74f01df3cf711fd0f855e05805e490156c -> trunk/b146ca74f01df3cf711fd0f855e05805e490156c 2025-07-17T06:36:53.2501108Z * [new tag] trunk/b146e1a264960e5fb79cf4621ebe4b1345db3e64 -> trunk/b146e1a264960e5fb79cf4621ebe4b1345db3e64 2025-07-17T06:36:53.2501912Z * [new tag] trunk/b147b6c0e31d43a405416743fde1b0b606aa3839 -> trunk/b147b6c0e31d43a405416743fde1b0b606aa3839 2025-07-17T06:36:53.2502807Z * [new tag] trunk/b1713c665516d8355f5491d10b31f98c74ce27f1 -> trunk/b1713c665516d8355f5491d10b31f98c74ce27f1 2025-07-17T06:36:53.2503607Z * [new tag] trunk/b1a54fab9bcb0cc167773f9a885d4170447e1c68 -> trunk/b1a54fab9bcb0cc167773f9a885d4170447e1c68 2025-07-17T06:36:53.2504430Z * [new tag] trunk/b1b8e57cda03bd016594a4fc4944fa5e7f9dd961 -> trunk/b1b8e57cda03bd016594a4fc4944fa5e7f9dd961 2025-07-17T06:36:53.2505237Z * [new tag] trunk/b1d62febd03ac421197d5516596f98d3c46e9b44 -> trunk/b1d62febd03ac421197d5516596f98d3c46e9b44 2025-07-17T06:36:53.2506062Z * [new tag] trunk/b221be9140689d180ec339db05c5e235a95949d3 -> trunk/b221be9140689d180ec339db05c5e235a95949d3 2025-07-17T06:36:53.2506857Z * [new tag] trunk/b22b93a6babf86e823e979528bc0aab88fb7a012 -> trunk/b22b93a6babf86e823e979528bc0aab88fb7a012 2025-07-17T06:36:53.2507749Z * [new tag] trunk/b26da7741be37693ab1cd21115f3fca15b1cdb6b -> trunk/b26da7741be37693ab1cd21115f3fca15b1cdb6b 2025-07-17T06:36:53.2711851Z * [new tag] trunk/b2d473c8f8a6d0677940c174b38511f5ab3c3b65 -> trunk/b2d473c8f8a6d0677940c174b38511f5ab3c3b65 2025-07-17T06:36:53.2713377Z * [new tag] trunk/b2fc9cfea16c8eb52c1ce79b2032793dd1a545fb -> trunk/b2fc9cfea16c8eb52c1ce79b2032793dd1a545fb 2025-07-17T06:36:53.2714869Z * [new tag] trunk/b30e04b3c8a83e19dc9123f2f0229d80e208fb50 -> trunk/b30e04b3c8a83e19dc9123f2f0229d80e208fb50 2025-07-17T06:36:53.2716396Z * [new tag] trunk/b354328ecd6a313eab905ab6f74aed5ea2d3a2ce -> trunk/b354328ecd6a313eab905ab6f74aed5ea2d3a2ce 2025-07-17T06:36:53.2717882Z * [new tag] trunk/b359571c6043b40c4ae4fbb07135fd0f04902e21 -> trunk/b359571c6043b40c4ae4fbb07135fd0f04902e21 2025-07-17T06:36:53.2719426Z * [new tag] trunk/b3b4d28f4cf149cb7448c556d359ca852d815ab1 -> trunk/b3b4d28f4cf149cb7448c556d359ca852d815ab1 2025-07-17T06:36:53.2720775Z * [new tag] trunk/b40981c63078d99bb07afbdcfec1ce8f7519f26b -> trunk/b40981c63078d99bb07afbdcfec1ce8f7519f26b 2025-07-17T06:36:53.2721861Z * [new tag] trunk/b40c0b61eb5f5b6104cb732e709819e84518faa7 -> trunk/b40c0b61eb5f5b6104cb732e709819e84518faa7 2025-07-17T06:36:53.2722655Z * [new tag] trunk/b4228a94d11b1ba6599f443267824d2d918644f2 -> trunk/b4228a94d11b1ba6599f443267824d2d918644f2 2025-07-17T06:36:53.2723443Z * [new tag] trunk/b44306d3681d5b248e6b439d293ea0d5a8903a61 -> trunk/b44306d3681d5b248e6b439d293ea0d5a8903a61 2025-07-17T06:36:53.2724341Z * [new tag] trunk/b4442f42a93390760bb923cbe13b80993f5e8e78 -> trunk/b4442f42a93390760bb923cbe13b80993f5e8e78 2025-07-17T06:36:53.2725287Z * [new tag] trunk/b4476ca378be50034bd5cdc1eaa95104337c998a -> trunk/b4476ca378be50034bd5cdc1eaa95104337c998a 2025-07-17T06:36:53.2726170Z * [new tag] trunk/b487003182b7f2d6697064f184515369bf6c8cce -> trunk/b487003182b7f2d6697064f184515369bf6c8cce 2025-07-17T06:36:53.2727061Z * [new tag] trunk/b49edc0d6c72f744d744a026b0ce0d689e34b83b -> trunk/b49edc0d6c72f744d744a026b0ce0d689e34b83b 2025-07-17T06:36:53.2727990Z * [new tag] trunk/b4e3c9ea34cb607324639cd0bb0129740c300721 -> trunk/b4e3c9ea34cb607324639cd0bb0129740c300721 2025-07-17T06:36:53.2728892Z * [new tag] trunk/b4fc42ca807efc1a1b78f52d5481711a4e8bbea3 -> trunk/b4fc42ca807efc1a1b78f52d5481711a4e8bbea3 2025-07-17T06:36:53.2729787Z * [new tag] trunk/b50075343aeb519d135e00c44ff3577eaa25c61b -> trunk/b50075343aeb519d135e00c44ff3577eaa25c61b 2025-07-17T06:36:53.2730700Z * [new tag] trunk/b54eac2a5ed31106393bbc338de8637817809a1f -> trunk/b54eac2a5ed31106393bbc338de8637817809a1f 2025-07-17T06:36:53.2731609Z * [new tag] trunk/b5bfbba1841da810305262c7f47ee2dae54f335e -> trunk/b5bfbba1841da810305262c7f47ee2dae54f335e 2025-07-17T06:36:53.2732703Z * [new tag] trunk/b5c8b8d09f006b1b2911858882a56dfe6e325f36 -> trunk/b5c8b8d09f006b1b2911858882a56dfe6e325f36 2025-07-17T06:36:53.2733583Z * [new tag] trunk/b5ce77c1f5964293299eb1366f341872a4e47fa6 -> trunk/b5ce77c1f5964293299eb1366f341872a4e47fa6 2025-07-17T06:36:53.2734462Z * [new tag] trunk/b60569ed946ddcc267150a675916d68d7cac9085 -> trunk/b60569ed946ddcc267150a675916d68d7cac9085 2025-07-17T06:36:53.2735376Z * [new tag] trunk/b6188174795956f959feae0cbc33cbdb7901c4b6 -> trunk/b6188174795956f959feae0cbc33cbdb7901c4b6 2025-07-17T06:36:53.2736280Z * [new tag] trunk/b642a5c118baf4cd47dd7fe0190b83e04cee960f -> trunk/b642a5c118baf4cd47dd7fe0190b83e04cee960f 2025-07-17T06:36:53.2737173Z * [new tag] trunk/b6454a9058f2e50be9a3c26c128fec843b09c154 -> trunk/b6454a9058f2e50be9a3c26c128fec843b09c154 2025-07-17T06:36:53.2738100Z * [new tag] trunk/b6add8c8ba927a9f1687134ec2734b02a6ccb3c0 -> trunk/b6add8c8ba927a9f1687134ec2734b02a6ccb3c0 2025-07-17T06:36:53.2739750Z * [new tag] trunk/b6c00dfe249a7bfc1d61a322d5bc30f164353abf -> trunk/b6c00dfe249a7bfc1d61a322d5bc30f164353abf 2025-07-17T06:36:53.2740671Z * [new tag] trunk/b6e625e34f358c71b62409f96dc1e22e4791beef -> trunk/b6e625e34f358c71b62409f96dc1e22e4791beef 2025-07-17T06:36:53.2741592Z * [new tag] trunk/b6f84b3b0fef781653911420253dcff6767197dc -> trunk/b6f84b3b0fef781653911420253dcff6767197dc 2025-07-17T06:36:53.2742397Z * [new tag] trunk/b754b1fa43d20f5b31e17c396487ab56991912da -> trunk/b754b1fa43d20f5b31e17c396487ab56991912da 2025-07-17T06:36:53.2743202Z * [new tag] trunk/b7860c7863df9139bceabf5b0c186e6e4287aa4c -> trunk/b7860c7863df9139bceabf5b0c186e6e4287aa4c 2025-07-17T06:36:53.2744026Z * [new tag] trunk/b7a73a2cdbbe46e04aa145fb8c1615e608dcbde9 -> trunk/b7a73a2cdbbe46e04aa145fb8c1615e608dcbde9 2025-07-17T06:36:53.2744851Z * [new tag] trunk/b7b1109f49f5d0bd6145ae47c5c7d7d18c5659b0 -> trunk/b7b1109f49f5d0bd6145ae47c5c7d7d18c5659b0 2025-07-17T06:36:53.2937880Z * [new tag] trunk/b7def5ff1ca72fbb06350ffc75117efc68e149fb -> trunk/b7def5ff1ca72fbb06350ffc75117efc68e149fb 2025-07-17T06:36:53.2938752Z * [new tag] trunk/b83d8827bcd63501d7298267d94d103bf591c6c2 -> trunk/b83d8827bcd63501d7298267d94d103bf591c6c2 2025-07-17T06:36:53.2939568Z * [new tag] trunk/b85f10ea5006e8ae8fc769f48659ab7ad5eafb69 -> trunk/b85f10ea5006e8ae8fc769f48659ab7ad5eafb69 2025-07-17T06:36:53.2940384Z * [new tag] trunk/b86d5cef68d56f3924dc199424e65904a32d0743 -> trunk/b86d5cef68d56f3924dc199424e65904a32d0743 2025-07-17T06:36:53.2941209Z * [new tag] trunk/b878ca0c91bdccbdd907c15a01e5dcf249f0783c -> trunk/b878ca0c91bdccbdd907c15a01e5dcf249f0783c 2025-07-17T06:36:53.2942038Z * [new tag] trunk/b8ace6f95105751d0535cb0ce0d2c8f656c8b96c -> trunk/b8ace6f95105751d0535cb0ce0d2c8f656c8b96c 2025-07-17T06:36:53.2942875Z * [new tag] trunk/b8aee84fb9692f1a46c8c2a0ae6685df440f6e8f -> trunk/b8aee84fb9692f1a46c8c2a0ae6685df440f6e8f 2025-07-17T06:36:53.2943697Z * [new tag] trunk/b8bc2c2660e84034ff15232e2161e3ef9a6656d0 -> trunk/b8bc2c2660e84034ff15232e2161e3ef9a6656d0 2025-07-17T06:36:53.2944494Z * [new tag] trunk/b8c2d4c259b16f3dc044d049d964c44907ccecb6 -> trunk/b8c2d4c259b16f3dc044d049d964c44907ccecb6 2025-07-17T06:36:53.2945295Z * [new tag] trunk/b8d96c3f78a27e193f4fa9580f8d28298c8180e3 -> trunk/b8d96c3f78a27e193f4fa9580f8d28298c8180e3 2025-07-17T06:36:53.2946117Z * [new tag] trunk/b8fc5e0c0dda5da8315f9bc108a83a0f92252513 -> trunk/b8fc5e0c0dda5da8315f9bc108a83a0f92252513 2025-07-17T06:36:53.2946945Z * [new tag] trunk/b916d8a583cf4fb018c44eaf5efefa9ca76da366 -> trunk/b916d8a583cf4fb018c44eaf5efefa9ca76da366 2025-07-17T06:36:53.2947913Z * [new tag] trunk/b95dadd7170626273bb03b1264f04f3f051908da -> trunk/b95dadd7170626273bb03b1264f04f3f051908da 2025-07-17T06:36:53.2948726Z * [new tag] trunk/b981fb6744d034a0b2a0baf7e138cfb8dc83ca96 -> trunk/b981fb6744d034a0b2a0baf7e138cfb8dc83ca96 2025-07-17T06:36:53.2949560Z * [new tag] trunk/b9afdd9bcc738697c6eefc90899508ab783bf6ab -> trunk/b9afdd9bcc738697c6eefc90899508ab783bf6ab 2025-07-17T06:36:53.2950394Z * [new tag] trunk/b9b84d8011b08ac62cabf9100043c65863372fea -> trunk/b9b84d8011b08ac62cabf9100043c65863372fea 2025-07-17T06:36:53.2951202Z * [new tag] trunk/b9dc2fa4f7aa237a19248705abf82f5eae662182 -> trunk/b9dc2fa4f7aa237a19248705abf82f5eae662182 2025-07-17T06:36:53.2952026Z * [new tag] trunk/ba0d0de5e652650f8a59c85fc25a90f4ed9e2dc1 -> trunk/ba0d0de5e652650f8a59c85fc25a90f4ed9e2dc1 2025-07-17T06:36:53.2952856Z * [new tag] trunk/bb1f3d1a55e3f8eafb279995824c1ef87f24b341 -> trunk/bb1f3d1a55e3f8eafb279995824c1ef87f24b341 2025-07-17T06:36:53.2953750Z * [new tag] trunk/bb3c911c2d64ccad03349e50a0a220a2889ae85c -> trunk/bb3c911c2d64ccad03349e50a0a220a2889ae85c 2025-07-17T06:36:53.2954558Z * [new tag] trunk/bb462a6237c163774c99e01462703ebce55f4589 -> trunk/bb462a6237c163774c99e01462703ebce55f4589 2025-07-17T06:36:53.2955441Z * [new tag] trunk/bb476310a456b1fd418c79573ed34ad68b4871d4 -> trunk/bb476310a456b1fd418c79573ed34ad68b4871d4 2025-07-17T06:36:53.2956252Z * [new tag] trunk/bbb930aba2e769e3ed981f2a035133891de36dae -> trunk/bbb930aba2e769e3ed981f2a035133891de36dae 2025-07-17T06:36:53.2957079Z * [new tag] trunk/bbbced94a43cf764ddfe719e7d4c161a3992830c -> trunk/bbbced94a43cf764ddfe719e7d4c161a3992830c 2025-07-17T06:36:53.2957908Z * [new tag] trunk/bbe681ed510227ce05f99db2a36c1af5c2cc302b -> trunk/bbe681ed510227ce05f99db2a36c1af5c2cc302b 2025-07-17T06:36:53.2958747Z * [new tag] trunk/bbf1a6feac0e88772be103a1b159b871b5c00b4a -> trunk/bbf1a6feac0e88772be103a1b159b871b5c00b4a 2025-07-17T06:36:53.2959580Z * [new tag] trunk/bc3972b80a7abe85036f48b610532fce39ea5097 -> trunk/bc3972b80a7abe85036f48b610532fce39ea5097 2025-07-17T06:36:53.2960377Z * [new tag] trunk/bc5a11b58180d40157175f45c69d60a9b9961315 -> trunk/bc5a11b58180d40157175f45c69d60a9b9961315 2025-07-17T06:36:53.2961170Z * [new tag] trunk/bc65253369933160a2da3fc786d027a572faf6b7 -> trunk/bc65253369933160a2da3fc786d027a572faf6b7 2025-07-17T06:36:53.2961966Z * [new tag] trunk/bc6e0661a6ec7e536bee60b9c929f71643bb6c89 -> trunk/bc6e0661a6ec7e536bee60b9c929f71643bb6c89 2025-07-17T06:36:53.2962793Z * [new tag] trunk/bc9091a524a1ebe4de16af4dd8f442db7d1cb138 -> trunk/bc9091a524a1ebe4de16af4dd8f442db7d1cb138 2025-07-17T06:36:53.2963631Z * [new tag] trunk/bc9bd2a766ae8cf2aba8f3d0153cd8ecd05b4465 -> trunk/bc9bd2a766ae8cf2aba8f3d0153cd8ecd05b4465 2025-07-17T06:36:53.3172020Z * [new tag] trunk/bcad962550f2bfd850684250a3c881c9f38ad601 -> trunk/bcad962550f2bfd850684250a3c881c9f38ad601 2025-07-17T06:36:53.3172881Z * [new tag] trunk/bcc98bb2a4dd11ac696082731f8980b72deb6750 -> trunk/bcc98bb2a4dd11ac696082731f8980b72deb6750 2025-07-17T06:36:53.3173739Z * [new tag] trunk/bccb8473fed94dbc6f1392d0c5b4a51150ee4a9a -> trunk/bccb8473fed94dbc6f1392d0c5b4a51150ee4a9a 2025-07-17T06:36:53.3174551Z * [new tag] trunk/bcf50636ba1b93a833267c645d887888df06e9ea -> trunk/bcf50636ba1b93a833267c645d887888df06e9ea 2025-07-17T06:36:53.3175415Z * [new tag] trunk/bd364c901d5b20500ec5cbe275e93c955809d900 -> trunk/bd364c901d5b20500ec5cbe275e93c955809d900 2025-07-17T06:36:53.3176273Z * [new tag] trunk/bd3c32916cf5f85ddb9dd3c36e7311adfa8808af -> trunk/bd3c32916cf5f85ddb9dd3c36e7311adfa8808af 2025-07-17T06:36:53.3177259Z * [new tag] trunk/bd6b5fddbf5fb0b603ab8a7428079d9a86cf532a -> trunk/bd6b5fddbf5fb0b603ab8a7428079d9a86cf532a 2025-07-17T06:36:53.3178092Z * [new tag] trunk/bdacf08b8682b9fbe3a8656a53b1f8b1cb007fd8 -> trunk/bdacf08b8682b9fbe3a8656a53b1f8b1cb007fd8 2025-07-17T06:36:53.3178917Z * [new tag] trunk/bdb1553b77bb28df580ea41d726417ac91028ec6 -> trunk/bdb1553b77bb28df580ea41d726417ac91028ec6 2025-07-17T06:36:53.3179730Z * [new tag] trunk/bdb78191662c01ab1263108febac29a8560337d0 -> trunk/bdb78191662c01ab1263108febac29a8560337d0 2025-07-17T06:36:53.3180547Z * [new tag] trunk/bdbf2792a8f15907f6bbf231f73dab0e8efe1c50 -> trunk/bdbf2792a8f15907f6bbf231f73dab0e8efe1c50 2025-07-17T06:36:53.3181440Z * [new tag] trunk/be124a61a4933603795644d068d2c0e5f444e766 -> trunk/be124a61a4933603795644d068d2c0e5f444e766 2025-07-17T06:36:53.3182232Z * [new tag] trunk/be2ab96347a1e7206a57f69b58263c4455ff8f76 -> trunk/be2ab96347a1e7206a57f69b58263c4455ff8f76 2025-07-17T06:36:53.3183125Z * [new tag] trunk/be2ad70cfa1360da5c23a04ff6ca3480fa02f278 -> trunk/be2ad70cfa1360da5c23a04ff6ca3480fa02f278 2025-07-17T06:36:53.3183961Z * [new tag] trunk/be2e43264d0bce254efabcc60c368d1418bde57f -> trunk/be2e43264d0bce254efabcc60c368d1418bde57f 2025-07-17T06:36:53.3184790Z * [new tag] trunk/be56a8d7ac0dc72f6946354d7ac5be9ece0f1c35 -> trunk/be56a8d7ac0dc72f6946354d7ac5be9ece0f1c35 2025-07-17T06:36:53.3185621Z * [new tag] trunk/beb52f5c0ac8efddeafa862f274bc247db989695 -> trunk/beb52f5c0ac8efddeafa862f274bc247db989695 2025-07-17T06:36:53.3186454Z * [new tag] trunk/bee93f9f0d16f4f563812bb5c16e862de15724c1 -> trunk/bee93f9f0d16f4f563812bb5c16e862de15724c1 2025-07-17T06:36:53.3187363Z * [new tag] trunk/beed033b6e6ac57c0b4a1f47eb436e115a52e41b -> trunk/beed033b6e6ac57c0b4a1f47eb436e115a52e41b 2025-07-17T06:36:53.3188180Z * [new tag] trunk/bf06190e21fdf539c13e1ec01271653d0729733a -> trunk/bf06190e21fdf539c13e1ec01271653d0729733a 2025-07-17T06:36:53.3189005Z * [new tag] trunk/bf1ebe0531e1b0390ea09d66ac78500d3c6d3a15 -> trunk/bf1ebe0531e1b0390ea09d66ac78500d3c6d3a15 2025-07-17T06:36:53.3189819Z * [new tag] trunk/bf50d715539acedcb31a6d8f787149eff6213fdb -> trunk/bf50d715539acedcb31a6d8f787149eff6213fdb 2025-07-17T06:36:53.3190629Z * [new tag] trunk/bf798a2f016ca0001750436150e7a2bdb2676d1a -> trunk/bf798a2f016ca0001750436150e7a2bdb2676d1a 2025-07-17T06:36:53.3191428Z * [new tag] trunk/bf7e290854b7f0ab3fb89251d0100821f1b3a70e -> trunk/bf7e290854b7f0ab3fb89251d0100821f1b3a70e 2025-07-17T06:36:53.3192227Z * [new tag] trunk/bf897b4cea2b7481499a81afa30bfc69a8e685c4 -> trunk/bf897b4cea2b7481499a81afa30bfc69a8e685c4 2025-07-17T06:36:53.3193153Z * [new tag] trunk/bfcababbcb95ec42046737dbcf61f8e258075ace -> trunk/bfcababbcb95ec42046737dbcf61f8e258075ace 2025-07-17T06:36:53.3193996Z * [new tag] trunk/bfccfa0b31221d5df0b263de5a41fb9f7c84b97d -> trunk/bfccfa0b31221d5df0b263de5a41fb9f7c84b97d 2025-07-17T06:36:53.3194815Z * [new tag] trunk/c038719731abdcd415a5e82c5f3826f2358229fc -> trunk/c038719731abdcd415a5e82c5f3826f2358229fc 2025-07-17T06:36:53.3195712Z * [new tag] trunk/c04a4e709410936c12cdc9db5aaf47164f74a367 -> trunk/c04a4e709410936c12cdc9db5aaf47164f74a367 2025-07-17T06:36:53.3196505Z * [new tag] trunk/c062550a3598d27c2d6572db7c0f4ff90a84cc84 -> trunk/c062550a3598d27c2d6572db7c0f4ff90a84cc84 2025-07-17T06:36:53.3197306Z * [new tag] trunk/c06c2569ee53c169c96f42b45bdb64f390d2f23b -> trunk/c06c2569ee53c169c96f42b45bdb64f390d2f23b 2025-07-17T06:36:53.3198113Z * [new tag] trunk/c09b05487877a3f8b239523b3806f5dd9fc82051 -> trunk/c09b05487877a3f8b239523b3806f5dd9fc82051 2025-07-17T06:36:53.3199005Z * [new tag] trunk/c09cf29d7d010c0547f2f6771921a0ee2ec4904b -> trunk/c09cf29d7d010c0547f2f6771921a0ee2ec4904b 2025-07-17T06:36:53.3400534Z * [new tag] trunk/c09eba877f9c16908b3a925ef694604c1c761b85 -> trunk/c09eba877f9c16908b3a925ef694604c1c761b85 2025-07-17T06:36:53.3401376Z * [new tag] trunk/c0e155a8d230b04f186d1b7540b01213be2b9fc6 -> trunk/c0e155a8d230b04f186d1b7540b01213be2b9fc6 2025-07-17T06:36:53.3402253Z * [new tag] trunk/c0ee01c2fb54e2ae924270f7fd53069915a61a50 -> trunk/c0ee01c2fb54e2ae924270f7fd53069915a61a50 2025-07-17T06:36:53.3403065Z * [new tag] trunk/c10339559de1464c2c5aeb16649c382eefcfb572 -> trunk/c10339559de1464c2c5aeb16649c382eefcfb572 2025-07-17T06:36:53.3403940Z * [new tag] trunk/c11888e7a6557ff64e24ca06e22946c116a7c1e4 -> trunk/c11888e7a6557ff64e24ca06e22946c116a7c1e4 2025-07-17T06:36:53.3404750Z * [new tag] trunk/c13e725edd8dd21406c629bf625f2d6c59ceedd1 -> trunk/c13e725edd8dd21406c629bf625f2d6c59ceedd1 2025-07-17T06:36:53.3405698Z * [new tag] trunk/c14110056f1b6e989850f20ae56d47fbc775e890 -> trunk/c14110056f1b6e989850f20ae56d47fbc775e890 2025-07-17T06:36:53.3406514Z * [new tag] trunk/c1446e1e9d2f5a1bae5fb3d58e58f16c15bb15c3 -> trunk/c1446e1e9d2f5a1bae5fb3d58e58f16c15bb15c3 2025-07-17T06:36:53.3407383Z * [new tag] trunk/c165b36a31585d4e061a84e1977428afd931b82d -> trunk/c165b36a31585d4e061a84e1977428afd931b82d 2025-07-17T06:36:53.3408178Z * [new tag] trunk/c174f3a6a55864cedb8f6d9014e9b8cadf91186b -> trunk/c174f3a6a55864cedb8f6d9014e9b8cadf91186b 2025-07-17T06:36:53.3409005Z * [new tag] trunk/c177abd217ecef5cc096d50adbf5990525714dd3 -> trunk/c177abd217ecef5cc096d50adbf5990525714dd3 2025-07-17T06:36:53.3409817Z * [new tag] trunk/c199a4d0fd03ab3f7e36c6133839cfaf34ba59da -> trunk/c199a4d0fd03ab3f7e36c6133839cfaf34ba59da 2025-07-17T06:36:53.3410633Z * [new tag] trunk/c1a629f76d0afc2ddb4a5c7c1925caa1d12b5a5e -> trunk/c1a629f76d0afc2ddb4a5c7c1925caa1d12b5a5e 2025-07-17T06:36:53.3411476Z * [new tag] trunk/c1ad4b8e7a16f54c35a3908b56ed7d9f95eef586 -> trunk/c1ad4b8e7a16f54c35a3908b56ed7d9f95eef586 2025-07-17T06:36:53.3412347Z * [new tag] trunk/c1ae768baa9598ea97f301999a227b34a2efdecf -> trunk/c1ae768baa9598ea97f301999a227b34a2efdecf 2025-07-17T06:36:53.3413156Z * [new tag] trunk/c1cbaca7fd9937c0a089d98aa69066daf35c898f -> trunk/c1cbaca7fd9937c0a089d98aa69066daf35c898f 2025-07-17T06:36:53.3413975Z * [new tag] trunk/c1f531f0b0e6faf443d90f8de2936e866c8c27c2 -> trunk/c1f531f0b0e6faf443d90f8de2936e866c8c27c2 2025-07-17T06:36:53.3414773Z * [new tag] trunk/c202a7329ad798da676762a8af2aa588f882d288 -> trunk/c202a7329ad798da676762a8af2aa588f882d288 2025-07-17T06:36:53.3415578Z * [new tag] trunk/c2185dc4a5626848df37cad214b73d5ae7dd4f17 -> trunk/c2185dc4a5626848df37cad214b73d5ae7dd4f17 2025-07-17T06:36:53.3416395Z * [new tag] trunk/c219dbd2fc70227ba543c98e9740a84723ba36da -> trunk/c219dbd2fc70227ba543c98e9740a84723ba36da 2025-07-17T06:36:53.3417251Z * [new tag] trunk/c2510fcd86152028c3e6cf483740b177a10ac9b9 -> trunk/c2510fcd86152028c3e6cf483740b177a10ac9b9 2025-07-17T06:36:53.3418050Z * [new tag] trunk/c26ce593d8737cab4b55483b62956a6fea9e4375 -> trunk/c26ce593d8737cab4b55483b62956a6fea9e4375 2025-07-17T06:36:53.3418860Z * [new tag] trunk/c27f83dd91ff3599b5157866e6be014c20b967a0 -> trunk/c27f83dd91ff3599b5157866e6be014c20b967a0 2025-07-17T06:36:53.3419652Z * [new tag] trunk/c28e74e45743feac10559c30dbf71cc35bc12ccb -> trunk/c28e74e45743feac10559c30dbf71cc35bc12ccb 2025-07-17T06:36:53.3420481Z * [new tag] trunk/c2beeadeb40e927c51bc5bcd409b3f28374a5190 -> trunk/c2beeadeb40e927c51bc5bcd409b3f28374a5190 2025-07-17T06:36:53.3421357Z * [new tag] trunk/c2d1b225e62bdf3adbba91891f53bc60315adaac -> trunk/c2d1b225e62bdf3adbba91891f53bc60315adaac 2025-07-17T06:36:53.3422289Z * [new tag] trunk/c2f4cc59a70bfd7d7e46e9b5596bae8e4ae2cf9c -> trunk/c2f4cc59a70bfd7d7e46e9b5596bae8e4ae2cf9c 2025-07-17T06:36:53.3423122Z * [new tag] trunk/c329a8f19cc94cb7f9d3fc814484cded138ee3ca -> trunk/c329a8f19cc94cb7f9d3fc814484cded138ee3ca 2025-07-17T06:36:53.3423956Z * [new tag] trunk/c37ddcaefbe9b877e1816ce97dedb8ad26d09450 -> trunk/c37ddcaefbe9b877e1816ce97dedb8ad26d09450 2025-07-17T06:36:53.3424791Z * [new tag] trunk/c3ecabf0593066750156989fc75acbeeaddf0791 -> trunk/c3ecabf0593066750156989fc75acbeeaddf0791 2025-07-17T06:36:53.3425593Z * [new tag] trunk/c48d0f4643b7a69ebe24069e932ce1465a31cdbe -> trunk/c48d0f4643b7a69ebe24069e932ce1465a31cdbe 2025-07-17T06:36:53.3426395Z * [new tag] trunk/c4b93e6579c8e2f1252067c4923cbb859c476fb4 -> trunk/c4b93e6579c8e2f1252067c4923cbb859c476fb4 2025-07-17T06:36:53.3631966Z * [new tag] trunk/c4cdcda754e2b73b030902dd06fb651c7a026510 -> trunk/c4cdcda754e2b73b030902dd06fb651c7a026510 2025-07-17T06:36:53.3632973Z * [new tag] trunk/c515385b0ac4a94deef652159e71fe0912615d14 -> trunk/c515385b0ac4a94deef652159e71fe0912615d14 2025-07-17T06:36:53.3633797Z * [new tag] trunk/c54778625ec45b94eb97f52da3ad6c2eb3d3c3c9 -> trunk/c54778625ec45b94eb97f52da3ad6c2eb3d3c3c9 2025-07-17T06:36:53.3634694Z * [new tag] trunk/c553c55be76daaf70d977a4ac7664b46cbcfa7c4 -> trunk/c553c55be76daaf70d977a4ac7664b46cbcfa7c4 2025-07-17T06:36:53.3635608Z * [new tag] trunk/c5589074e64b28afd737174ae1e9c2ba0b925e56 -> trunk/c5589074e64b28afd737174ae1e9c2ba0b925e56 2025-07-17T06:36:53.3636419Z * [new tag] trunk/c55eef79f8880e4b610a0ca6f6131e690dc948dd -> trunk/c55eef79f8880e4b610a0ca6f6131e690dc948dd 2025-07-17T06:36:53.3637237Z * [new tag] trunk/c5a4fe9c17bc20eb46b15fda554d17030bb6a5b9 -> trunk/c5a4fe9c17bc20eb46b15fda554d17030bb6a5b9 2025-07-17T06:36:53.3638059Z * [new tag] trunk/c5b46b5408e136a5a3060b11a96afa51bd009fd5 -> trunk/c5b46b5408e136a5a3060b11a96afa51bd009fd5 2025-07-17T06:36:53.3638866Z * [new tag] trunk/c5d00e150ad503510bf28adf09f69201aeb94f5c -> trunk/c5d00e150ad503510bf28adf09f69201aeb94f5c 2025-07-17T06:36:53.3639668Z * [new tag] trunk/c5d3e7a4ff460eed70b8443485a7e3568e87aee9 -> trunk/c5d3e7a4ff460eed70b8443485a7e3568e87aee9 2025-07-17T06:36:53.3640483Z * [new tag] trunk/c60327ba74f4db232a2832f2c7ca4b2db43a3132 -> trunk/c60327ba74f4db232a2832f2c7ca4b2db43a3132 2025-07-17T06:36:53.3641387Z * [new tag] trunk/c60d8188d23801d44343c96746ec2e7d2971c5d7 -> trunk/c60d8188d23801d44343c96746ec2e7d2971c5d7 2025-07-17T06:36:53.3642159Z * [new tag] trunk/c620d0b5c7e8679413d620624725471223ce8359 -> trunk/c620d0b5c7e8679413d620624725471223ce8359 2025-07-17T06:36:53.3642967Z * [new tag] trunk/c68af9af1b3652a8e25bd6d0ff8dae89f206a81a -> trunk/c68af9af1b3652a8e25bd6d0ff8dae89f206a81a 2025-07-17T06:36:53.3643791Z * [new tag] trunk/c6a27bae3656021720074520ac6dad9cebe83ff5 -> trunk/c6a27bae3656021720074520ac6dad9cebe83ff5 2025-07-17T06:36:53.3644595Z * [new tag] trunk/c6b4f98625bb6b22bb9a60112a6d58e684a97e1b -> trunk/c6b4f98625bb6b22bb9a60112a6d58e684a97e1b 2025-07-17T06:36:53.3645392Z * [new tag] trunk/c74fd35050a7241f0c439501ef735aa6cdde751f -> trunk/c74fd35050a7241f0c439501ef735aa6cdde751f 2025-07-17T06:36:53.3646174Z * [new tag] trunk/c75c732481915c25295a0ae6321d39aa314eaa93 -> trunk/c75c732481915c25295a0ae6321d39aa314eaa93 2025-07-17T06:36:53.3647035Z * [new tag] trunk/c78bbdf4102d2c13bf6aa1abe4352aa7bca401ca -> trunk/c78bbdf4102d2c13bf6aa1abe4352aa7bca401ca 2025-07-17T06:36:53.3647913Z * [new tag] trunk/c78fce9e79b79686b87f4007cbaec819bdd0223f -> trunk/c78fce9e79b79686b87f4007cbaec819bdd0223f 2025-07-17T06:36:53.3648827Z * [new tag] trunk/c79c7bbe615265b6b3d7df39d6d5a68afd7d6b2a -> trunk/c79c7bbe615265b6b3d7df39d6d5a68afd7d6b2a 2025-07-17T06:36:53.3649660Z * [new tag] trunk/c7b6c98d1097bec9dc92bde2fe324aa126a5daa2 -> trunk/c7b6c98d1097bec9dc92bde2fe324aa126a5daa2 2025-07-17T06:36:53.3650471Z * [new tag] trunk/c808af514d59e25ea4a880c1e1e07d3232984e5d -> trunk/c808af514d59e25ea4a880c1e1e07d3232984e5d 2025-07-17T06:36:53.3651282Z * [new tag] trunk/c811f41cf58238b49e9c2f0a9fa00dcc471b2e10 -> trunk/c811f41cf58238b49e9c2f0a9fa00dcc471b2e10 2025-07-17T06:36:53.3652108Z * [new tag] trunk/c82a174ceab79f77ba18405dd263eb03692608fd -> trunk/c82a174ceab79f77ba18405dd263eb03692608fd 2025-07-17T06:36:53.3652977Z * [new tag] trunk/c83041cac2e9ca537b210b74876dbcee5e08ae9a -> trunk/c83041cac2e9ca537b210b74876dbcee5e08ae9a 2025-07-17T06:36:53.3653840Z * [new tag] trunk/c843909d9e32f92b2e31cf9b8f066daf311a6f18 -> trunk/c843909d9e32f92b2e31cf9b8f066daf311a6f18 2025-07-17T06:36:53.3654732Z * [new tag] trunk/c88e87f3553b7ef0b743fb030317fabb6fe2dc29 -> trunk/c88e87f3553b7ef0b743fb030317fabb6fe2dc29 2025-07-17T06:36:53.3655546Z * [new tag] trunk/c8c221c0b3abbb8b5e20138080644dd5f5cd0aa1 -> trunk/c8c221c0b3abbb8b5e20138080644dd5f5cd0aa1 2025-07-17T06:36:53.3656381Z * [new tag] trunk/c8c892b4a50fdad624753db5b8d2bbb0fc5bb110 -> trunk/c8c892b4a50fdad624753db5b8d2bbb0fc5bb110 2025-07-17T06:36:53.3657189Z * [new tag] trunk/c8d39a10457ea5d65184c6e8f037f46c5525d869 -> trunk/c8d39a10457ea5d65184c6e8f037f46c5525d869 2025-07-17T06:36:53.3658009Z * [new tag] trunk/c9174a20f75ba007b0f520326ced5c65d8a2b269 -> trunk/c9174a20f75ba007b0f520326ced5c65d8a2b269 2025-07-17T06:36:53.3658869Z * [new tag] trunk/c92f1075aaf3649f6368af2a3df9b5167f941b3f -> trunk/c92f1075aaf3649f6368af2a3df9b5167f941b3f 2025-07-17T06:36:53.3939088Z * [new tag] trunk/c9404faacb7c18af17086be26587b46e141afbcc -> trunk/c9404faacb7c18af17086be26587b46e141afbcc 2025-07-17T06:36:53.3939940Z * [new tag] trunk/c95705dac2da8134c946cdd573944632ef22f230 -> trunk/c95705dac2da8134c946cdd573944632ef22f230 2025-07-17T06:36:53.3940751Z * [new tag] trunk/c95f7fa874a3116f1067f9092456ee7281003614 -> trunk/c95f7fa874a3116f1067f9092456ee7281003614 2025-07-17T06:36:53.3941565Z * [new tag] trunk/c9a5bf09baa1a6776555e901331b1baefe6691bc -> trunk/c9a5bf09baa1a6776555e901331b1baefe6691bc 2025-07-17T06:36:53.3942392Z * [new tag] trunk/c9afcffed0870c211d2e8be422812d6a70aef3e2 -> trunk/c9afcffed0870c211d2e8be422812d6a70aef3e2 2025-07-17T06:36:53.3943216Z * [new tag] trunk/c9e9a0c82316ed59f6ef989a6000f0d5231b9b16 -> trunk/c9e9a0c82316ed59f6ef989a6000f0d5231b9b16 2025-07-17T06:36:53.3944026Z * [new tag] trunk/ca3cabd24ace1899ca4669431f5b0556c5ab9ebf -> trunk/ca3cabd24ace1899ca4669431f5b0556c5ab9ebf 2025-07-17T06:36:53.3944861Z * [new tag] trunk/ca5a40395d8b212dce0a57df01ca056eae55446f -> trunk/ca5a40395d8b212dce0a57df01ca056eae55446f 2025-07-17T06:36:53.3945681Z * [new tag] trunk/cadcb5d36802579441da3dbe3c2eecc74a0eae78 -> trunk/cadcb5d36802579441da3dbe3c2eecc74a0eae78 2025-07-17T06:36:53.3946492Z * [new tag] trunk/cb711c8fa04673d3490306e2b14539ab7dca3c23 -> trunk/cb711c8fa04673d3490306e2b14539ab7dca3c23 2025-07-17T06:36:53.3947292Z * [new tag] trunk/cb853945a77af54d9989ae7ac36d0007c0215b10 -> trunk/cb853945a77af54d9989ae7ac36d0007c0215b10 2025-07-17T06:36:53.3948103Z * [new tag] trunk/cb9b479f4f799eea058de9be3a0e09f977fc82da -> trunk/cb9b479f4f799eea058de9be3a0e09f977fc82da 2025-07-17T06:36:53.3948916Z * [new tag] trunk/cbafba57941c1d5f78640845320ac89157570b44 -> trunk/cbafba57941c1d5f78640845320ac89157570b44 2025-07-17T06:36:53.3949864Z * [new tag] trunk/cbcffce48a3422a5e9a2103888248c82d52d199c -> trunk/cbcffce48a3422a5e9a2103888248c82d52d199c 2025-07-17T06:36:53.3950695Z * [new tag] trunk/cc09d3a5ba2a5ae032078570e6123d523952ed22 -> trunk/cc09d3a5ba2a5ae032078570e6123d523952ed22 2025-07-17T06:36:53.3951519Z * [new tag] trunk/cc0faeb80fff17b3d170aa70041865aafb1790a9 -> trunk/cc0faeb80fff17b3d170aa70041865aafb1790a9 2025-07-17T06:36:53.3952341Z * [new tag] trunk/cc3ea2d84004b6348c77a285ba2639932b87c101 -> trunk/cc3ea2d84004b6348c77a285ba2639932b87c101 2025-07-17T06:36:53.3953141Z * [new tag] trunk/cc410d3761001499611bca6cf835239b86093791 -> trunk/cc410d3761001499611bca6cf835239b86093791 2025-07-17T06:36:53.3953948Z * [new tag] trunk/ccb1f687d63f0215ebcf3c1340c6682edeaccd28 -> trunk/ccb1f687d63f0215ebcf3c1340c6682edeaccd28 2025-07-17T06:36:53.3954762Z * [new tag] trunk/ccb67f39b4d75943cdc531d9032b3ba9235cfd56 -> trunk/ccb67f39b4d75943cdc531d9032b3ba9235cfd56 2025-07-17T06:36:53.3955728Z * [new tag] trunk/ccc6279b4086d55cd1f7e2d699473478610d8a7b -> trunk/ccc6279b4086d55cd1f7e2d699473478610d8a7b 2025-07-17T06:36:53.3956537Z * [new tag] trunk/cce4d213a67b7536dce431fd29c92f9791c9f81d -> trunk/cce4d213a67b7536dce431fd29c92f9791c9f81d 2025-07-17T06:36:53.3957373Z * [new tag] trunk/cd1a924dba145334aacb7c1b7276d6cef7ca41cc -> trunk/cd1a924dba145334aacb7c1b7276d6cef7ca41cc 2025-07-17T06:36:53.3958215Z * [new tag] trunk/cd361fc247a9abdbe9851867e31ac3cefcff299e -> trunk/cd361fc247a9abdbe9851867e31ac3cefcff299e 2025-07-17T06:36:53.3959029Z * [new tag] trunk/cd66ff80307862ef8e75520054ecd19a5eff9f7e -> trunk/cd66ff80307862ef8e75520054ecd19a5eff9f7e 2025-07-17T06:36:53.3959880Z * [new tag] trunk/cd75cf3cabedeac2ae4bbb266c05ca9b64181abe -> trunk/cd75cf3cabedeac2ae4bbb266c05ca9b64181abe 2025-07-17T06:36:53.3960714Z * [new tag] trunk/cd80f9a4c35a63ef415dbf6a361e4520a9cabf7b -> trunk/cd80f9a4c35a63ef415dbf6a361e4520a9cabf7b 2025-07-17T06:36:53.3961537Z * [new tag] trunk/cd82096973985042ed2eaa84e69fbf0f067f9301 -> trunk/cd82096973985042ed2eaa84e69fbf0f067f9301 2025-07-17T06:36:53.3962339Z * [new tag] trunk/cd995bfb2aac8891465809be3ce29543bd524287 -> trunk/cd995bfb2aac8891465809be3ce29543bd524287 2025-07-17T06:36:53.3963146Z * [new tag] trunk/cdb144fcf0aa4300c6de7158cb18ff7503d48492 -> trunk/cdb144fcf0aa4300c6de7158cb18ff7503d48492 2025-07-17T06:36:53.3963977Z * [new tag] trunk/cdfa33a328f2d3fdaeb645fde186194ddc2e66c0 -> trunk/cdfa33a328f2d3fdaeb645fde186194ddc2e66c0 2025-07-17T06:36:53.3964795Z * [new tag] trunk/ce1a07570d95cdd1543b9b2d45b3899c59e6802f -> trunk/ce1a07570d95cdd1543b9b2d45b3899c59e6802f 2025-07-17T06:36:53.4171060Z * [new tag] trunk/ce3406817d50b3357fa644784cc84ff167ce40ce -> trunk/ce3406817d50b3357fa644784cc84ff167ce40ce 2025-07-17T06:36:53.4171938Z * [new tag] trunk/ce44877961af7c8ec618f525853ce7edf3efa4eb -> trunk/ce44877961af7c8ec618f525853ce7edf3efa4eb 2025-07-17T06:36:53.4172756Z * [new tag] trunk/ce6e0523f9911c605860c4f5f278c2dad893dde9 -> trunk/ce6e0523f9911c605860c4f5f278c2dad893dde9 2025-07-17T06:36:53.4173558Z * [new tag] trunk/ce73b0c53f1f215345dcfe3953871a4aaf170a0c -> trunk/ce73b0c53f1f215345dcfe3953871a4aaf170a0c 2025-07-17T06:36:53.4174356Z * [new tag] trunk/ce79056471737557dcc64378985cd2b036e7322c -> trunk/ce79056471737557dcc64378985cd2b036e7322c 2025-07-17T06:36:53.4175249Z * [new tag] trunk/ce8180a61de405c519e00ac48eab8ff765ea71e6 -> trunk/ce8180a61de405c519e00ac48eab8ff765ea71e6 2025-07-17T06:36:53.4176082Z * [new tag] trunk/ce97a5dcfa3cb10c7805ff5cb44abd6a16b4ae8b -> trunk/ce97a5dcfa3cb10c7805ff5cb44abd6a16b4ae8b 2025-07-17T06:36:53.4176902Z * [new tag] trunk/ce9ba071fd29013e72100dd97728d01c860720d9 -> trunk/ce9ba071fd29013e72100dd97728d01c860720d9 2025-07-17T06:36:53.4177839Z * [new tag] trunk/cec264c8c6d74d4fbf5ee31983737b8b5e316dd0 -> trunk/cec264c8c6d74d4fbf5ee31983737b8b5e316dd0 2025-07-17T06:36:53.4178672Z * [new tag] trunk/cec59b76ca606c3e5d34ac0d0f9e0e22b8cfe5bb -> trunk/cec59b76ca606c3e5d34ac0d0f9e0e22b8cfe5bb 2025-07-17T06:36:53.4179507Z * [new tag] trunk/cf0749c92fdfcb8a583ea15f351add88c4d33618 -> trunk/cf0749c92fdfcb8a583ea15f351add88c4d33618 2025-07-17T06:36:53.4180325Z * [new tag] trunk/cf3247b74aaeb956b3c2b31d05e965a0aca5a8b4 -> trunk/cf3247b74aaeb956b3c2b31d05e965a0aca5a8b4 2025-07-17T06:36:53.4181238Z * [new tag] trunk/cf90c9f8d1632777ec5f4b6ccaa14bc5bf259e9c -> trunk/cf90c9f8d1632777ec5f4b6ccaa14bc5bf259e9c 2025-07-17T06:36:53.4182043Z * [new tag] trunk/cf9878d7a20b11d761934ae7732b01644ae137d6 -> trunk/cf9878d7a20b11d761934ae7732b01644ae137d6 2025-07-17T06:36:53.4182929Z * [new tag] trunk/d061a02e6ecf3b62f409578c7d05a564264d1288 -> trunk/d061a02e6ecf3b62f409578c7d05a564264d1288 2025-07-17T06:36:53.4183733Z * [new tag] trunk/d06a406656bf0b4bc9af2d056558dc1630a6e5b9 -> trunk/d06a406656bf0b4bc9af2d056558dc1630a6e5b9 2025-07-17T06:36:53.4184543Z * [new tag] trunk/d083841c0e0d879e460aebb45daac086a240a7dd -> trunk/d083841c0e0d879e460aebb45daac086a240a7dd 2025-07-17T06:36:53.4185379Z * [new tag] trunk/d0a9629435aaceb5acbf31aad70f2109cb8a3ea2 -> trunk/d0a9629435aaceb5acbf31aad70f2109cb8a3ea2 2025-07-17T06:36:53.4186217Z * [new tag] trunk/d0cfa3e5bf662b72068e26e06a1a5c2e640ce8d9 -> trunk/d0cfa3e5bf662b72068e26e06a1a5c2e640ce8d9 2025-07-17T06:36:53.4187143Z * [new tag] trunk/d158e9ea82ce3440e2e9a1bbbecae53a79869404 -> trunk/d158e9ea82ce3440e2e9a1bbbecae53a79869404 2025-07-17T06:36:53.4188332Z * [new tag] trunk/d1947a87074c5db2568038878b1948ea3a33cc23 -> trunk/d1947a87074c5db2568038878b1948ea3a33cc23 2025-07-17T06:36:53.4189157Z * [new tag] trunk/d1b4e0fa9a5feb22fc6de1d36dc4c9dac685caed -> trunk/d1b4e0fa9a5feb22fc6de1d36dc4c9dac685caed 2025-07-17T06:36:53.4189989Z * [new tag] trunk/d1c924c68aaf650439c2193f74cfefc9f16076f1 -> trunk/d1c924c68aaf650439c2193f74cfefc9f16076f1 2025-07-17T06:36:53.4190815Z * [new tag] trunk/d26ca5de058dbcf56ac52bb43e84dd98df2ace97 -> trunk/d26ca5de058dbcf56ac52bb43e84dd98df2ace97 2025-07-17T06:36:53.4191640Z * [new tag] trunk/d27d36136ce35d5d6dc3faa818ba840ba61d4357 -> trunk/d27d36136ce35d5d6dc3faa818ba840ba61d4357 2025-07-17T06:36:53.4192454Z * [new tag] trunk/d283fc79b15844ac470b3429b4dac5661621ae5c -> trunk/d283fc79b15844ac470b3429b4dac5661621ae5c 2025-07-17T06:36:53.4193335Z * [new tag] trunk/d2a2bfcb5867d4920e0a45113861cde6f74857b9 -> trunk/d2a2bfcb5867d4920e0a45113861cde6f74857b9 2025-07-17T06:36:53.4194150Z * [new tag] trunk/d2f06d2b062c9d868a898044bc324547f34c4760 -> trunk/d2f06d2b062c9d868a898044bc324547f34c4760 2025-07-17T06:36:53.4194958Z * [new tag] trunk/d309cd1d502eab8e9cb536876bf5eed88634eb41 -> trunk/d309cd1d502eab8e9cb536876bf5eed88634eb41 2025-07-17T06:36:53.4195984Z * [new tag] trunk/d32deb664a1dfc0e36f0a8d670695046632ebf2a -> trunk/d32deb664a1dfc0e36f0a8d670695046632ebf2a 2025-07-17T06:36:53.4196815Z * [new tag] trunk/d3d64c6db090ee9be051202e6ac6fd4acd5d3e97 -> trunk/d3d64c6db090ee9be051202e6ac6fd4acd5d3e97 2025-07-17T06:36:53.4197648Z * [new tag] trunk/d3d655ad14ee4cd1c135ac57bbf75d5623fc9fa6 -> trunk/d3d655ad14ee4cd1c135ac57bbf75d5623fc9fa6 2025-07-17T06:36:53.4198472Z * [new tag] trunk/d3da03d6fa02aecd01ff41246def793b8fc630bf -> trunk/d3da03d6fa02aecd01ff41246def793b8fc630bf 2025-07-17T06:36:53.4478413Z * [new tag] trunk/d3efd732348f8a455ca23e7fcae043651e41f65e -> trunk/d3efd732348f8a455ca23e7fcae043651e41f65e 2025-07-17T06:36:53.4479426Z * [new tag] trunk/d40aaa42ee8d7283d8de02c68c5625d67acf668a -> trunk/d40aaa42ee8d7283d8de02c68c5625d67acf668a 2025-07-17T06:36:53.4480353Z * [new tag] trunk/d41f62b7a06c51e4a57df4d58e7a2d86d2faa875 -> trunk/d41f62b7a06c51e4a57df4d58e7a2d86d2faa875 2025-07-17T06:36:53.4481198Z * [new tag] trunk/d42c11819f003a848c782d6090f44bbca11c7d60 -> trunk/d42c11819f003a848c782d6090f44bbca11c7d60 2025-07-17T06:36:53.4481997Z * [new tag] trunk/d43c0bdf46d82806cff195a6d2bfa103ab46dc14 -> trunk/d43c0bdf46d82806cff195a6d2bfa103ab46dc14 2025-07-17T06:36:53.4482806Z * [new tag] trunk/d4ad28042993dd09c80775d7fc5756fb4d13fdd4 -> trunk/d4ad28042993dd09c80775d7fc5756fb4d13fdd4 2025-07-17T06:36:53.4483632Z * [new tag] trunk/d4d0ede6bacb4b3b33c0e4aa4cb0e79d34e697ec -> trunk/d4d0ede6bacb4b3b33c0e4aa4cb0e79d34e697ec 2025-07-17T06:36:53.4484446Z * [new tag] trunk/d512584718838876ae14b32bb53cd836a1ceccae -> trunk/d512584718838876ae14b32bb53cd836a1ceccae 2025-07-17T06:36:53.4485320Z * [new tag] trunk/d55dc00f8479699f454e91c779b53e2a16cffc21 -> trunk/d55dc00f8479699f454e91c779b53e2a16cffc21 2025-07-17T06:36:53.4486182Z * [new tag] trunk/d56f11a1f275f2dc037cd5099b70240745990693 -> trunk/d56f11a1f275f2dc037cd5099b70240745990693 2025-07-17T06:36:53.4487033Z * [new tag] trunk/d5781c8d21b3dca35715a093ba52c5698551ad9b -> trunk/d5781c8d21b3dca35715a093ba52c5698551ad9b 2025-07-17T06:36:53.4487846Z * [new tag] trunk/d58ed04d89c34c6930d0f28be351c53db407078f -> trunk/d58ed04d89c34c6930d0f28be351c53db407078f 2025-07-17T06:36:53.4488660Z * [new tag] trunk/d59ed21d0fdcbb34b5c4b121a3b49ae64d8da367 -> trunk/d59ed21d0fdcbb34b5c4b121a3b49ae64d8da367 2025-07-17T06:36:53.4489482Z * [new tag] trunk/d5a89178b05db3124f16c733e9b00f8c5c4ab038 -> trunk/d5a89178b05db3124f16c733e9b00f8c5c4ab038 2025-07-17T06:36:53.4490280Z * [new tag] trunk/d5b4a329607514b30944c7682efcf79cf8950ed3 -> trunk/d5b4a329607514b30944c7682efcf79cf8950ed3 2025-07-17T06:36:53.4491072Z * [new tag] trunk/d5d14ee823e70224a154884a5c2912643d648094 -> trunk/d5d14ee823e70224a154884a5c2912643d648094 2025-07-17T06:36:53.4491902Z * [new tag] trunk/d5e6f4209424b96237ea5468dd47899e1124dfcb -> trunk/d5e6f4209424b96237ea5468dd47899e1124dfcb 2025-07-17T06:36:53.4492729Z * [new tag] trunk/d6237721c074484ea5e72fc05614587886e57fd6 -> trunk/d6237721c074484ea5e72fc05614587886e57fd6 2025-07-17T06:36:53.4493530Z * [new tag] trunk/d632cf2cc9aac8ab0e03d1537982265e42be95e5 -> trunk/d632cf2cc9aac8ab0e03d1537982265e42be95e5 2025-07-17T06:36:53.4494367Z * [new tag] trunk/d66b4bcc3f89ac6b9d2ccfd4cb01b0aa85d4e3fd -> trunk/d66b4bcc3f89ac6b9d2ccfd4cb01b0aa85d4e3fd 2025-07-17T06:36:53.4495182Z * [new tag] trunk/d6ee5144cab20141c8e0cf48856a90a6517753f1 -> trunk/d6ee5144cab20141c8e0cf48856a90a6517753f1 2025-07-17T06:36:53.4495999Z * [new tag] trunk/d75d30eeb610b164e69d0678a2e2b2dea81eec0f -> trunk/d75d30eeb610b164e69d0678a2e2b2dea81eec0f 2025-07-17T06:36:53.4496800Z * [new tag] trunk/d79651571fb082a7a20631059563ecdf9d11b7e6 -> trunk/d79651571fb082a7a20631059563ecdf9d11b7e6 2025-07-17T06:36:53.4497579Z * [new tag] trunk/d797038ea9f3951c7602e8710f4866f73d7e7acd -> trunk/d797038ea9f3951c7602e8710f4866f73d7e7acd 2025-07-17T06:36:53.4498429Z * [new tag] trunk/d7e1b8b11d7430c7633dcad6f6596b5df8fa02f7 -> trunk/d7e1b8b11d7430c7633dcad6f6596b5df8fa02f7 2025-07-17T06:36:53.4499282Z * [new tag] trunk/d7e3c9ce8289f26704b140e68dac2849df750040 -> trunk/d7e3c9ce8289f26704b140e68dac2849df750040 2025-07-17T06:36:53.4500089Z * [new tag] trunk/d7e657da358d6d393e2105f94f1312fb969654a2 -> trunk/d7e657da358d6d393e2105f94f1312fb969654a2 2025-07-17T06:36:53.4501003Z * [new tag] trunk/d83ff89d3bf54ecc95d441411ecbf07831cc0e5a -> trunk/d83ff89d3bf54ecc95d441411ecbf07831cc0e5a 2025-07-17T06:36:53.4501802Z * [new tag] trunk/d846e213553621cb4581f1f36ac0023e528ddb65 -> trunk/d846e213553621cb4581f1f36ac0023e528ddb65 2025-07-17T06:36:53.4502629Z * [new tag] trunk/d84efde3f02bdc4780e5c9ec43f9c515c744e9be -> trunk/d84efde3f02bdc4780e5c9ec43f9c515c744e9be 2025-07-17T06:36:53.4503443Z * [new tag] trunk/d859e65826d511f8379db4a8c4109417e26e0772 -> trunk/d859e65826d511f8379db4a8c4109417e26e0772 2025-07-17T06:36:53.4504293Z * [new tag] trunk/d89f30ad45b9d4bfe5cf5ab441b53e849e55df7b -> trunk/d89f30ad45b9d4bfe5cf5ab441b53e849e55df7b 2025-07-17T06:36:53.4714760Z * [new tag] trunk/d8bb5ac260dd81f75c8add6eadd8ce11e62be1a3 -> trunk/d8bb5ac260dd81f75c8add6eadd8ce11e62be1a3 2025-07-17T06:36:53.4715644Z * [new tag] trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f -> trunk/d9426a81d2ab54f809a3b32a6ab2e606073fe66f 2025-07-17T06:36:53.4716641Z * [new tag] trunk/d9577df312d477e8fa5b9d7bc61fb1f2c07b8e48 -> trunk/d9577df312d477e8fa5b9d7bc61fb1f2c07b8e48 2025-07-17T06:36:53.4717536Z * [new tag] trunk/d96dec84151dfdea1aa2bf568deebdc182214f45 -> trunk/d96dec84151dfdea1aa2bf568deebdc182214f45 2025-07-17T06:36:53.4718367Z * [new tag] trunk/d9799a2ee7adb9d15f7a2d47ee17fc39c588af60 -> trunk/d9799a2ee7adb9d15f7a2d47ee17fc39c588af60 2025-07-17T06:36:53.4719202Z * [new tag] trunk/d98fa4a1033079ae19591aff5c3c354617bff482 -> trunk/d98fa4a1033079ae19591aff5c3c354617bff482 2025-07-17T06:36:53.4720013Z * [new tag] trunk/d99cac28160428a8b006890abffaaa0754bd28e1 -> trunk/d99cac28160428a8b006890abffaaa0754bd28e1 2025-07-17T06:36:53.4720813Z * [new tag] trunk/d9b8369f3976e89eef96c903dfede746fb438f63 -> trunk/d9b8369f3976e89eef96c903dfede746fb438f63 2025-07-17T06:36:53.4721639Z * [new tag] trunk/da05b7fb94fa6382c43e165a525a76d8ae62cadd -> trunk/da05b7fb94fa6382c43e165a525a76d8ae62cadd 2025-07-17T06:36:53.4722492Z * [new tag] trunk/da1f337bc43ce2d720aca1349f9c09712e037382 -> trunk/da1f337bc43ce2d720aca1349f9c09712e037382 2025-07-17T06:36:53.4723376Z * [new tag] trunk/da1f8980dfd646f14dc33bf0bc70fcb4d09096b3 -> trunk/da1f8980dfd646f14dc33bf0bc70fcb4d09096b3 2025-07-17T06:36:53.4724196Z * [new tag] trunk/da4e7c77a12746b0806a63af58d7c913ed241f55 -> trunk/da4e7c77a12746b0806a63af58d7c913ed241f55 2025-07-17T06:36:53.4725003Z * [new tag] trunk/da50835bdebd43275e0be4b1362e1bb92b568e72 -> trunk/da50835bdebd43275e0be4b1362e1bb92b568e72 2025-07-17T06:36:53.4725818Z * [new tag] trunk/da910e603a764c1f935dd0409b4c18bd84b1f045 -> trunk/da910e603a764c1f935dd0409b4c18bd84b1f045 2025-07-17T06:36:53.4726640Z * [new tag] trunk/dabb55baff2292ddd7728882b4e2113b8cb9e23b -> trunk/dabb55baff2292ddd7728882b4e2113b8cb9e23b 2025-07-17T06:36:53.4727462Z * [new tag] trunk/db01f1032ff133dc7cc3097b76bfb1b73ff533ce -> trunk/db01f1032ff133dc7cc3097b76bfb1b73ff533ce 2025-07-17T06:36:53.4728329Z * [new tag] trunk/db188503cb705230664c94d8b3a85165a00d632d -> trunk/db188503cb705230664c94d8b3a85165a00d632d 2025-07-17T06:36:53.4729231Z * [new tag] trunk/db491825e05e8bed9c7ed5d9fdd6ce206ab3167c -> trunk/db491825e05e8bed9c7ed5d9fdd6ce206ab3167c 2025-07-17T06:36:53.4730195Z * [new tag] trunk/db5970c1a67968f3b76d204d75789021d4304337 -> trunk/db5970c1a67968f3b76d204d75789021d4304337 2025-07-17T06:36:53.4731124Z * [new tag] trunk/dbec08bc1cc9113c13652128a4ddcfcf2426a8c0 -> trunk/dbec08bc1cc9113c13652128a4ddcfcf2426a8c0 2025-07-17T06:36:53.4732090Z * [new tag] trunk/dbf7d421dabced2335d17c7d7e57c1770f2f12c0 -> trunk/dbf7d421dabced2335d17c7d7e57c1770f2f12c0 2025-07-17T06:36:53.4733115Z * [new tag] trunk/dc5e8f7999cccb51efcf0f5fe197a740a918c73d -> trunk/dc5e8f7999cccb51efcf0f5fe197a740a918c73d 2025-07-17T06:36:53.4734092Z * [new tag] trunk/dcb97cd519e4e4974bc3bd4960512b557216f3e6 -> trunk/dcb97cd519e4e4974bc3bd4960512b557216f3e6 2025-07-17T06:36:53.4735021Z * [new tag] trunk/dd1b6621bc04a37b60ac304d913a3c838b0b1e4d -> trunk/dd1b6621bc04a37b60ac304d913a3c838b0b1e4d 2025-07-17T06:36:53.4735983Z * [new tag] trunk/dd3e7170c20cade9a308900aa4df46ab7656d253 -> trunk/dd3e7170c20cade9a308900aa4df46ab7656d253 2025-07-17T06:36:53.4736897Z * [new tag] trunk/dd41a3907cde3ce19fb69bd79c4055233a1e28d3 -> trunk/dd41a3907cde3ce19fb69bd79c4055233a1e28d3 2025-07-17T06:36:53.4737845Z * [new tag] trunk/dd78d6e7eaecf0aa5317076a721bc719c96b41f8 -> trunk/dd78d6e7eaecf0aa5317076a721bc719c96b41f8 2025-07-17T06:36:53.4738770Z * [new tag] trunk/dd93883231226576220a8ec0fa266c9e22eae82c -> trunk/dd93883231226576220a8ec0fa266c9e22eae82c 2025-07-17T06:36:53.4739821Z * [new tag] trunk/ddf502c988133835a89959bef945bf9c5f06b428 -> trunk/ddf502c988133835a89959bef945bf9c5f06b428 2025-07-17T06:36:53.4740739Z * [new tag] trunk/de1930a4290a27f3f03dd1d3454fb6ef9d12f3ea -> trunk/de1930a4290a27f3f03dd1d3454fb6ef9d12f3ea 2025-07-17T06:36:53.4741650Z * [new tag] trunk/de45c5f673ce261e9a82c54280beeda36cff640e -> trunk/de45c5f673ce261e9a82c54280beeda36cff640e 2025-07-17T06:36:53.4742618Z * [new tag] trunk/dea4864ce08115a0cdc871b84dd3080567d8b5e4 -> trunk/dea4864ce08115a0cdc871b84dd3080567d8b5e4 2025-07-17T06:36:53.4743521Z * [new tag] trunk/df72078fe1339751e702c7511c23b4597d022dcc -> trunk/df72078fe1339751e702c7511c23b4597d022dcc 2025-07-17T06:36:53.4943381Z * [new tag] trunk/dfa2649434f539d7580d38f08890176e73d45158 -> trunk/dfa2649434f539d7580d38f08890176e73d45158 2025-07-17T06:36:53.4944223Z * [new tag] trunk/dfc31b3345d78b0a49d446dcc1957404606a3aa2 -> trunk/dfc31b3345d78b0a49d446dcc1957404606a3aa2 2025-07-17T06:36:53.4945078Z * [new tag] trunk/dfcda613b65499e4b593b5bbb64812d57194858e -> trunk/dfcda613b65499e4b593b5bbb64812d57194858e 2025-07-17T06:36:53.4945905Z * [new tag] trunk/dfdd636cfa06ac70c4aa7ad5ee5e854c46b25a8e -> trunk/dfdd636cfa06ac70c4aa7ad5ee5e854c46b25a8e 2025-07-17T06:36:53.4946755Z * [new tag] trunk/dfef1e44085bb156abc4aff0f34a0b82a4a337b8 -> trunk/dfef1e44085bb156abc4aff0f34a0b82a4a337b8 2025-07-17T06:36:53.4947569Z * [new tag] trunk/e01fde82131c7f0b4c122222694911ee6fab36ca -> trunk/e01fde82131c7f0b4c122222694911ee6fab36ca 2025-07-17T06:36:53.4948392Z * [new tag] trunk/e0447bb5f84dca38e7515d1b1fdea42c647e5acd -> trunk/e0447bb5f84dca38e7515d1b1fdea42c647e5acd 2025-07-17T06:36:53.4949223Z * [new tag] trunk/e071837594f26a3bbaeee11eaa74f3bfd9c998ce -> trunk/e071837594f26a3bbaeee11eaa74f3bfd9c998ce 2025-07-17T06:36:53.4950028Z * [new tag] trunk/e0850123355a919427be3cb02f40c9a9e144fc3c -> trunk/e0850123355a919427be3cb02f40c9a9e144fc3c 2025-07-17T06:36:53.4950834Z * [new tag] trunk/e0ab1b538a646bff0739830d74a8e6ea6bf1eddd -> trunk/e0ab1b538a646bff0739830d74a8e6ea6bf1eddd 2025-07-17T06:36:53.4951656Z * [new tag] trunk/e0ae4ecca87928a96c97fb60cbb36aca0fc182f2 -> trunk/e0ae4ecca87928a96c97fb60cbb36aca0fc182f2 2025-07-17T06:36:53.4952487Z * [new tag] trunk/e0fd48be7d526625cacfd093f3db13506ca9cc17 -> trunk/e0fd48be7d526625cacfd093f3db13506ca9cc17 2025-07-17T06:36:53.4953316Z * [new tag] trunk/e1180c7228ba8c8b16cabf78706d4a67ca189a6b -> trunk/e1180c7228ba8c8b16cabf78706d4a67ca189a6b 2025-07-17T06:36:53.4954136Z * [new tag] trunk/e124a0d88ca2aa04bfaca2dcabf5de6244048e45 -> trunk/e124a0d88ca2aa04bfaca2dcabf5de6244048e45 2025-07-17T06:36:53.4954945Z * [new tag] trunk/e12597090c482ebf1eff7739794667a92cbff657 -> trunk/e12597090c482ebf1eff7739794667a92cbff657 2025-07-17T06:36:53.4955972Z * [new tag] trunk/e15848669f84d3767bfca724a29a6a6dde3308b9 -> trunk/e15848669f84d3767bfca724a29a6a6dde3308b9 2025-07-17T06:36:53.4956778Z * [new tag] trunk/e15ea965a1e84029eb900b93f5776767a39fd91e -> trunk/e15ea965a1e84029eb900b93f5776767a39fd91e 2025-07-17T06:36:53.4957593Z * [new tag] trunk/e15f4248ad2797539f1bf965bd0a3500b8ed15ed -> trunk/e15f4248ad2797539f1bf965bd0a3500b8ed15ed 2025-07-17T06:36:53.4958402Z * [new tag] trunk/e1723098805fcbf3ab7f3d20750fb0665bf65004 -> trunk/e1723098805fcbf3ab7f3d20750fb0665bf65004 2025-07-17T06:36:53.4959191Z * [new tag] trunk/e1a20988f3724317a7ee79c1777d574a8282a122 -> trunk/e1a20988f3724317a7ee79c1777d574a8282a122 2025-07-17T06:36:53.4959997Z * [new tag] trunk/e1aee86646aa6d1b9cb9d34351e43936401c5efc -> trunk/e1aee86646aa6d1b9cb9d34351e43936401c5efc 2025-07-17T06:36:53.4960891Z * [new tag] trunk/e1db10e05aa720aef1989773adcf48f311bcf920 -> trunk/e1db10e05aa720aef1989773adcf48f311bcf920 2025-07-17T06:36:53.4961727Z * [new tag] trunk/e1f28fe17bc55389fc5a31bad588d22e5ecca722 -> trunk/e1f28fe17bc55389fc5a31bad588d22e5ecca722 2025-07-17T06:36:53.4962563Z * [new tag] trunk/e20784f228abca24ab263cf0f69534667365ecba -> trunk/e20784f228abca24ab263cf0f69534667365ecba 2025-07-17T06:36:53.4963373Z * [new tag] trunk/e2351f2dcf7d300460edb9d0c2eb0ea11cc547c5 -> trunk/e2351f2dcf7d300460edb9d0c2eb0ea11cc547c5 2025-07-17T06:36:53.4964202Z * [new tag] trunk/e25ce0f928bfdd545323fcc2f88209233309bbbc -> trunk/e25ce0f928bfdd545323fcc2f88209233309bbbc 2025-07-17T06:36:53.4965020Z * [new tag] trunk/e265b719bd67f7c0a2b9001daef442a70232dcc8 -> trunk/e265b719bd67f7c0a2b9001daef442a70232dcc8 2025-07-17T06:36:53.4965887Z * [new tag] trunk/e28925aa7566da3ffe4f13dd8d59a6767bf97b2e -> trunk/e28925aa7566da3ffe4f13dd8d59a6767bf97b2e 2025-07-17T06:36:53.4966716Z * [new tag] trunk/e290a4c645e00926f0bfa44488f9f7dbd7cb2d0b -> trunk/e290a4c645e00926f0bfa44488f9f7dbd7cb2d0b 2025-07-17T06:36:53.4967528Z * [new tag] trunk/e2c9d8d6414927ce754bbc40b767edf103cf16da -> trunk/e2c9d8d6414927ce754bbc40b767edf103cf16da 2025-07-17T06:36:53.4968366Z * [new tag] trunk/e2f64eedafc6f0dcad9256ac1f38c0359477679a -> trunk/e2f64eedafc6f0dcad9256ac1f38c0359477679a 2025-07-17T06:36:53.4969194Z * [new tag] trunk/e311886e3d57c83a88b97a084dd0b95d6d1537a8 -> trunk/e311886e3d57c83a88b97a084dd0b95d6d1537a8 2025-07-17T06:36:53.5174780Z * [new tag] trunk/e31f20529276356092b5c63c2920d5b17ca9f4ba -> trunk/e31f20529276356092b5c63c2920d5b17ca9f4ba 2025-07-17T06:36:53.5175628Z * [new tag] trunk/e323d46b617c1552cc0f017ad8ec80189eacf187 -> trunk/e323d46b617c1552cc0f017ad8ec80189eacf187 2025-07-17T06:36:53.5176460Z * [new tag] trunk/e3320965b48d87b7257997c35db722302d923ead -> trunk/e3320965b48d87b7257997c35db722302d923ead 2025-07-17T06:36:53.5177264Z * [new tag] trunk/e375d21bb9b0ef6fefe7a8af5a054a17de8c63c9 -> trunk/e375d21bb9b0ef6fefe7a8af5a054a17de8c63c9 2025-07-17T06:36:53.5178109Z * [new tag] trunk/e3977e843de6c9c43be00ee8c67c533debfc0dc9 -> trunk/e3977e843de6c9c43be00ee8c67c533debfc0dc9 2025-07-17T06:36:53.5178994Z * [new tag] trunk/e3afbb03623559fa3fa7ba607c07c86ebed889f0 -> trunk/e3afbb03623559fa3fa7ba607c07c86ebed889f0 2025-07-17T06:36:53.5179852Z * [new tag] trunk/e3b44edfd837199880aed3ec802383617da731f3 -> trunk/e3b44edfd837199880aed3ec802383617da731f3 2025-07-17T06:36:53.5180654Z * [new tag] trunk/e3f2597b4529927b812b443cf8da19b44ed8dea4 -> trunk/e3f2597b4529927b812b443cf8da19b44ed8dea4 2025-07-17T06:36:53.5181441Z * [new tag] trunk/e3f8141c25b7213885f0b7b64f2b0ccc7858be95 -> trunk/e3f8141c25b7213885f0b7b64f2b0ccc7858be95 2025-07-17T06:36:53.5182390Z * [new tag] trunk/e3fe001d9e38153a7797ad25377fdfa34e461113 -> trunk/e3fe001d9e38153a7797ad25377fdfa34e461113 2025-07-17T06:36:53.5183214Z * [new tag] trunk/e40ade5182233f548b25f2732effe3719d16e9ad -> trunk/e40ade5182233f548b25f2732effe3719d16e9ad 2025-07-17T06:36:53.5184019Z * [new tag] trunk/e466dab164d9236bfe5817ec8e4d24c7b9d3e392 -> trunk/e466dab164d9236bfe5817ec8e4d24c7b9d3e392 2025-07-17T06:36:53.5184883Z * [new tag] trunk/e472daa80963aae389089f9dc324b04261e2a5ef -> trunk/e472daa80963aae389089f9dc324b04261e2a5ef 2025-07-17T06:36:53.5185739Z * [new tag] trunk/e4ae60a413b99688d308794baaa1c685b5c19025 -> trunk/e4ae60a413b99688d308794baaa1c685b5c19025 2025-07-17T06:36:53.5186551Z * [new tag] trunk/e4c17d5e1ccd0e730caef484af291243bc1d9cde -> trunk/e4c17d5e1ccd0e730caef484af291243bc1d9cde 2025-07-17T06:36:53.5187361Z * [new tag] trunk/e4c9f6d9a286bd367ce3a157428f588e267d2630 -> trunk/e4c9f6d9a286bd367ce3a157428f588e267d2630 2025-07-17T06:36:53.5188239Z * [new tag] trunk/e517066f41342f0f01043121dcb8ac6b235ee40c -> trunk/e517066f41342f0f01043121dcb8ac6b235ee40c 2025-07-17T06:36:53.5189065Z * [new tag] trunk/e53ddaf1f6ef3f1d22075ad33a5922fb8b277fe0 -> trunk/e53ddaf1f6ef3f1d22075ad33a5922fb8b277fe0 2025-07-17T06:36:53.5189893Z * [new tag] trunk/e581f015eebf483eb6f19447caf2d2452a602c2f -> trunk/e581f015eebf483eb6f19447caf2d2452a602c2f 2025-07-17T06:36:53.5190747Z * [new tag] trunk/e583b888194c8c74ebbd332c09c394acebbbbcff -> trunk/e583b888194c8c74ebbd332c09c394acebbbbcff 2025-07-17T06:36:53.5191609Z * [new tag] trunk/e5a0b73ce9e7bc489150932b60f673155d6ddc30 -> trunk/e5a0b73ce9e7bc489150932b60f673155d6ddc30 2025-07-17T06:36:53.5192406Z * [new tag] trunk/e5a11971919009b5e5bd050b3ed52e324f1ce894 -> trunk/e5a11971919009b5e5bd050b3ed52e324f1ce894 2025-07-17T06:36:53.5193239Z * [new tag] trunk/e5ea24fb27e0ef5dbb0c4039d88c0f4faa221fef -> trunk/e5ea24fb27e0ef5dbb0c4039d88c0f4faa221fef 2025-07-17T06:36:53.5194068Z * [new tag] trunk/e5ed267f830ce9fc6579f928082e563fbed37e3f -> trunk/e5ed267f830ce9fc6579f928082e563fbed37e3f 2025-07-17T06:36:53.5194881Z * [new tag] trunk/e5edd013ab418b8b3609cb3cb1df3804b69d8eef -> trunk/e5edd013ab418b8b3609cb3cb1df3804b69d8eef 2025-07-17T06:36:53.5195809Z * [new tag] trunk/e5f6ffd8109bee99416d9b127f961ab0e253a1c2 -> trunk/e5f6ffd8109bee99416d9b127f961ab0e253a1c2 2025-07-17T06:36:53.5196736Z * [new tag] trunk/e600e044a770d29d1fe5d9638b274a7d4f22f969 -> trunk/e600e044a770d29d1fe5d9638b274a7d4f22f969 2025-07-17T06:36:53.5197549Z * [new tag] trunk/e6252f62efa5e6e4ab0d56967d7461f1e8a7eb7c -> trunk/e6252f62efa5e6e4ab0d56967d7461f1e8a7eb7c 2025-07-17T06:36:53.5198361Z * [new tag] trunk/e694280d1215caf70f41575f2611bfa26c69ebdb -> trunk/e694280d1215caf70f41575f2611bfa26c69ebdb 2025-07-17T06:36:53.5199182Z * [new tag] trunk/e6d71f37896e99ced7daf9ee43a30c0ec03d60f2 -> trunk/e6d71f37896e99ced7daf9ee43a30c0ec03d60f2 2025-07-17T06:36:53.5200014Z * [new tag] trunk/e6d8ed02cbeabe961d1a5303973a6d89ee851736 -> trunk/e6d8ed02cbeabe961d1a5303973a6d89ee851736 2025-07-17T06:36:53.5200834Z * [new tag] trunk/e6ed4074e8411000eea2f0de0c0829d909e4701f -> trunk/e6ed4074e8411000eea2f0de0c0829d909e4701f 2025-07-17T06:36:53.5201644Z * [new tag] trunk/e71bb021b9553ddc2db6cb8ea7bf8643552f09fc -> trunk/e71bb021b9553ddc2db6cb8ea7bf8643552f09fc 2025-07-17T06:36:53.5411946Z * [new tag] trunk/e7698ff5cf40729d11df6c32c6df0a163e5d0ce0 -> trunk/e7698ff5cf40729d11df6c32c6df0a163e5d0ce0 2025-07-17T06:36:53.5412829Z * [new tag] trunk/e78f2ac92b709a060aa323d6e527ec2ecc36fb93 -> trunk/e78f2ac92b709a060aa323d6e527ec2ecc36fb93 2025-07-17T06:36:53.5413806Z * [new tag] trunk/e7a66166ce5294a52bf3966aef49562f94343475 -> trunk/e7a66166ce5294a52bf3966aef49562f94343475 2025-07-17T06:36:53.5414622Z * [new tag] trunk/e7da21806fbc96d47ac03ea8f6507deb0ab48481 -> trunk/e7da21806fbc96d47ac03ea8f6507deb0ab48481 2025-07-17T06:36:53.5415437Z * [new tag] trunk/e8217ad8becd2b297682c685a9179997cb0a98cc -> trunk/e8217ad8becd2b297682c685a9179997cb0a98cc 2025-07-17T06:36:53.5416244Z * [new tag] trunk/e895e9689c625cbcd8f46880115e0d093713fa37 -> trunk/e895e9689c625cbcd8f46880115e0d093713fa37 2025-07-17T06:36:53.5417157Z * [new tag] trunk/e8b3dfa7c0b6d74fc84714dbb79cb6a8bad43ae7 -> trunk/e8b3dfa7c0b6d74fc84714dbb79cb6a8bad43ae7 2025-07-17T06:36:53.5417979Z * [new tag] trunk/e8bfce9a43960f417a36636a0e7f6a58b7dc56d2 -> trunk/e8bfce9a43960f417a36636a0e7f6a58b7dc56d2 2025-07-17T06:36:53.5418803Z * [new tag] trunk/e8cf5ff5641c1ce4c3046a85df55b15eaaea38b2 -> trunk/e8cf5ff5641c1ce4c3046a85df55b15eaaea38b2 2025-07-17T06:36:53.5419726Z * [new tag] trunk/e8d29c45e02402bcb4ae7726abd415bebd441852 -> trunk/e8d29c45e02402bcb4ae7726abd415bebd441852 2025-07-17T06:36:53.5420534Z * [new tag] trunk/e90148c91d3b8a759db558374c8539e47338926b -> trunk/e90148c91d3b8a759db558374c8539e47338926b 2025-07-17T06:36:53.5421364Z * [new tag] trunk/e92e3eaf4eb815ea28db9a5af9d9ee48c3f7be3f -> trunk/e92e3eaf4eb815ea28db9a5af9d9ee48c3f7be3f 2025-07-17T06:36:53.5422180Z * [new tag] trunk/e9367a7a4288e626f01fada3912d68756f1ca6d3 -> trunk/e9367a7a4288e626f01fada3912d68756f1ca6d3 2025-07-17T06:36:53.5423090Z * [new tag] trunk/e959dd017d7dcd7c6351c9ef303f3667aebe11f5 -> trunk/e959dd017d7dcd7c6351c9ef303f3667aebe11f5 2025-07-17T06:36:53.5423900Z * [new tag] trunk/e95e8eed0a96f024dc84012494f465b34eae9d22 -> trunk/e95e8eed0a96f024dc84012494f465b34eae9d22 2025-07-17T06:36:53.5424724Z * [new tag] trunk/e96f530af5bf8ceaeaa87ec7f4651490a25bce07 -> trunk/e96f530af5bf8ceaeaa87ec7f4651490a25bce07 2025-07-17T06:36:53.5425544Z * [new tag] trunk/e98dd95446e009ace1722498effbf32250d623e4 -> trunk/e98dd95446e009ace1722498effbf32250d623e4 2025-07-17T06:36:53.5426348Z * [new tag] trunk/e99a2a2dba90c9b6276219104bc99aff2f67e2f7 -> trunk/e99a2a2dba90c9b6276219104bc99aff2f67e2f7 2025-07-17T06:36:53.5427172Z * [new tag] trunk/e99cc126a4f4bd5233ff363f27d14a0fff4b4392 -> trunk/e99cc126a4f4bd5233ff363f27d14a0fff4b4392 2025-07-17T06:36:53.5427994Z * [new tag] trunk/e9fdaf8701b599fd943bb899639b5e8a4966b3c3 -> trunk/e9fdaf8701b599fd943bb899639b5e8a4966b3c3 2025-07-17T06:36:53.5428907Z * [new tag] trunk/ea23eb4b98ae8af40f0c38538a9e63f1b0dc40e2 -> trunk/ea23eb4b98ae8af40f0c38538a9e63f1b0dc40e2 2025-07-17T06:36:53.5429729Z * [new tag] trunk/ea37f720995616d8570045c63486198a021f8285 -> trunk/ea37f720995616d8570045c63486198a021f8285 2025-07-17T06:36:53.5430539Z * [new tag] trunk/ea74fdd24aa7d98433231f4a3d75cfd241d8720e -> trunk/ea74fdd24aa7d98433231f4a3d75cfd241d8720e 2025-07-17T06:36:53.5431343Z * [new tag] trunk/eab45643f22e58ee12d95d8b0162d51ca0a50801 -> trunk/eab45643f22e58ee12d95d8b0162d51ca0a50801 2025-07-17T06:36:53.5432154Z * [new tag] trunk/eabf7cd3c552e6c17321a63d7e5a19da92909910 -> trunk/eabf7cd3c552e6c17321a63d7e5a19da92909910 2025-07-17T06:36:53.5432976Z * [new tag] trunk/eaceb243df6fc17a37a2c1d9f8775d1561a0f67c -> trunk/eaceb243df6fc17a37a2c1d9f8775d1561a0f67c 2025-07-17T06:36:53.5433798Z * [new tag] trunk/eaf32fffb7e83b5331951b254ad213ceb2ae72f8 -> trunk/eaf32fffb7e83b5331951b254ad213ceb2ae72f8 2025-07-17T06:36:53.5434711Z * [new tag] trunk/eaf704914eb63efffafeb402633f76f2cd521ef4 -> trunk/eaf704914eb63efffafeb402633f76f2cd521ef4 2025-07-17T06:36:53.5436502Z * [new tag] trunk/eb152ab1dd9eafc777b6642bb141ab1b8376359a -> trunk/eb152ab1dd9eafc777b6642bb141ab1b8376359a 2025-07-17T06:36:53.5437341Z * [new tag] trunk/eb2af14f8e75c22c0a2fcf407005d2e8173d0df5 -> trunk/eb2af14f8e75c22c0a2fcf407005d2e8173d0df5 2025-07-17T06:36:53.5438152Z * [new tag] trunk/eb331b59fedb7f70229ca491029f2f7f27bbff54 -> trunk/eb331b59fedb7f70229ca491029f2f7f27bbff54 2025-07-17T06:36:53.5438963Z * [new tag] trunk/eb4cf59ecdf69dd53805a37525a7f750c8f1e0dd -> trunk/eb4cf59ecdf69dd53805a37525a7f750c8f1e0dd 2025-07-17T06:36:53.5646474Z * [new tag] trunk/eb9efb37c8f315f1d30e86d5797490c6a8666889 -> trunk/eb9efb37c8f315f1d30e86d5797490c6a8666889 2025-07-17T06:36:53.5647334Z * [new tag] trunk/eba5fc91ac924a7a05569c33b0f90f0faf22696d -> trunk/eba5fc91ac924a7a05569c33b0f90f0faf22696d 2025-07-17T06:36:53.5648161Z * [new tag] trunk/ebab2799423987a16975ab07ee49dd944e5315e6 -> trunk/ebab2799423987a16975ab07ee49dd944e5315e6 2025-07-17T06:36:53.5649106Z * [new tag] trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 -> trunk/ebf83b8b7772632c0558db9a88281ee10ff2df38 2025-07-17T06:36:53.5649919Z * [new tag] trunk/ec0276103fc023b93c6eb17639d4605656ea4f10 -> trunk/ec0276103fc023b93c6eb17639d4605656ea4f10 2025-07-17T06:36:53.5650738Z * [new tag] trunk/ec08eb8ba22e66b113e4f2aba1f6afb738f9d861 -> trunk/ec08eb8ba22e66b113e4f2aba1f6afb738f9d861 2025-07-17T06:36:53.5651547Z * [new tag] trunk/ec816d73b4c8f74a14e275891939de6cfd6891b6 -> trunk/ec816d73b4c8f74a14e275891939de6cfd6891b6 2025-07-17T06:36:53.5652443Z * [new tag] trunk/ecd73c58eeaf7e919316f9b9596f8c677af96c66 -> trunk/ecd73c58eeaf7e919316f9b9596f8c677af96c66 2025-07-17T06:36:53.5653268Z * [new tag] trunk/ed03492238c9ef76f5c1df6cfa54da83a2a384e1 -> trunk/ed03492238c9ef76f5c1df6cfa54da83a2a384e1 2025-07-17T06:36:53.5654080Z * [new tag] trunk/ed051c308464904e07d33c39524b3931dc8c947a -> trunk/ed051c308464904e07d33c39524b3931dc8c947a 2025-07-17T06:36:53.5654880Z * [new tag] trunk/ed508cc0182b923789555d4e1ec1f8b23707b7db -> trunk/ed508cc0182b923789555d4e1ec1f8b23707b7db 2025-07-17T06:36:53.5655677Z * [new tag] trunk/ed5d6d2a200a0f03b164053322341bb10acc051d -> trunk/ed5d6d2a200a0f03b164053322341bb10acc051d 2025-07-17T06:36:53.5656474Z * [new tag] trunk/ed661a5f11de116539f70882f4f59a61d5e3e209 -> trunk/ed661a5f11de116539f70882f4f59a61d5e3e209 2025-07-17T06:36:53.5657266Z * [new tag] trunk/ed6ae20cf0e31d49d54177251293267205e24021 -> trunk/ed6ae20cf0e31d49d54177251293267205e24021 2025-07-17T06:36:53.5658106Z * [new tag] trunk/ed6df0e324233fda094e3c1cb4de4009d1ba2413 -> trunk/ed6df0e324233fda094e3c1cb4de4009d1ba2413 2025-07-17T06:36:53.5658967Z * [new tag] trunk/ed911747c2a56cf84d648d677403d5bf6b2ebd0b -> trunk/ed911747c2a56cf84d648d677403d5bf6b2ebd0b 2025-07-17T06:36:53.5659797Z * [new tag] trunk/eda0a9cc90b9a63127a49d617329f98b6404e90d -> trunk/eda0a9cc90b9a63127a49d617329f98b6404e90d 2025-07-17T06:36:53.5660605Z * [new tag] trunk/edb92e16ba9ad12bd51c4f73389556e163e9cc08 -> trunk/edb92e16ba9ad12bd51c4f73389556e163e9cc08 2025-07-17T06:36:53.5661416Z * [new tag] trunk/edd45f3a020f892c17672cc2d08f64cb960006ad -> trunk/edd45f3a020f892c17672cc2d08f64cb960006ad 2025-07-17T06:36:53.5662230Z * [new tag] trunk/edd9c09e73aaa8d1a1667fa7ea5a337aa31fa6ec -> trunk/edd9c09e73aaa8d1a1667fa7ea5a337aa31fa6ec 2025-07-17T06:36:53.5663061Z * [new tag] trunk/eddddea9087a8840ce5ae1bbb3c6f59556d7c0f0 -> trunk/eddddea9087a8840ce5ae1bbb3c6f59556d7c0f0 2025-07-17T06:36:53.5663994Z * [new tag] trunk/ede6ead8cd8e925cb093f2b3016342e645bd728d -> trunk/ede6ead8cd8e925cb093f2b3016342e645bd728d 2025-07-17T06:36:53.5664814Z * [new tag] trunk/edf7bb4f514220f96ddfa646ae6e9e930a305ec1 -> trunk/edf7bb4f514220f96ddfa646ae6e9e930a305ec1 2025-07-17T06:36:53.5665729Z * [new tag] trunk/ee0992871c99fc6a1e19eb839ab65391a168d2f8 -> trunk/ee0992871c99fc6a1e19eb839ab65391a168d2f8 2025-07-17T06:36:53.5666538Z * [new tag] trunk/ee4d343499c80be16a58d5ac604da6e2130cd94d -> trunk/ee4d343499c80be16a58d5ac604da6e2130cd94d 2025-07-17T06:36:53.5667352Z * [new tag] trunk/ee56e9f8a8202bfa02c2d9ae3cfa07d4a41ab567 -> trunk/ee56e9f8a8202bfa02c2d9ae3cfa07d4a41ab567 2025-07-17T06:36:53.5668189Z * [new tag] trunk/ee5c2908cbfcbda6e8a5737d9939d36ba417d627 -> trunk/ee5c2908cbfcbda6e8a5737d9939d36ba417d627 2025-07-17T06:36:53.5669001Z * [new tag] trunk/ee9ac36c2316f430c4de2a0982bde3cb8087cbe7 -> trunk/ee9ac36c2316f430c4de2a0982bde3cb8087cbe7 2025-07-17T06:36:53.5669924Z * [new tag] trunk/eea3bcb3d146f16a8f8c91a9e2a8f1b76c5917f4 -> trunk/eea3bcb3d146f16a8f8c91a9e2a8f1b76c5917f4 2025-07-17T06:36:53.5670839Z * [new tag] trunk/eeaefa133694811aac1fd215bcae2e7f1e098d1d -> trunk/eeaefa133694811aac1fd215bcae2e7f1e098d1d 2025-07-17T06:36:53.5671658Z * [new tag] trunk/eecaa0bbc6a39c89366f9ec97797479c27f6d760 -> trunk/eecaa0bbc6a39c89366f9ec97797479c27f6d760 2025-07-17T06:36:53.5672473Z * [new tag] trunk/eef253d9f6fc8b9774d199889a817f50e89572c2 -> trunk/eef253d9f6fc8b9774d199889a817f50e89572c2 2025-07-17T06:36:53.5673287Z * [new tag] trunk/ef4cca2d79eba61441da46906b30f8f6165cc455 -> trunk/ef4cca2d79eba61441da46906b30f8f6165cc455 2025-07-17T06:36:53.5872149Z * [new tag] trunk/ef6d2cee7a93c1e8f52a7595b6f630d0fcd83692 -> trunk/ef6d2cee7a93c1e8f52a7595b6f630d0fcd83692 2025-07-17T06:36:53.5873049Z * [new tag] trunk/ef6dfa06a9ff84bf04b0d83cfab4cb396a508a0e -> trunk/ef6dfa06a9ff84bf04b0d83cfab4cb396a508a0e 2025-07-17T06:36:53.5873888Z * [new tag] trunk/ef97bd47131423e0819b293dc227b62d0c376023 -> trunk/ef97bd47131423e0819b293dc227b62d0c376023 2025-07-17T06:36:53.5874726Z * [new tag] trunk/efbf07e7ea46c33c936cac882eb1c8b782d1d070 -> trunk/efbf07e7ea46c33c936cac882eb1c8b782d1d070 2025-07-17T06:36:53.5875712Z * [new tag] trunk/effe376db07c7071fa4d704dd0787a394a5eda50 -> trunk/effe376db07c7071fa4d704dd0787a394a5eda50 2025-07-17T06:36:53.5876528Z * [new tag] trunk/f04fd4dc4eaf16557f9212240bdaa8377d51bad1 -> trunk/f04fd4dc4eaf16557f9212240bdaa8377d51bad1 2025-07-17T06:36:53.5877343Z * [new tag] trunk/f096820d0f845f36529fe774cf761d5fc4ad02a8 -> trunk/f096820d0f845f36529fe774cf761d5fc4ad02a8 2025-07-17T06:36:53.5878162Z * [new tag] trunk/f0b388665efd20c1ec35fc48afb115a0f15116ce -> trunk/f0b388665efd20c1ec35fc48afb115a0f15116ce 2025-07-17T06:36:53.5878971Z * [new tag] trunk/f0bee87eea03f6ded538590e2a073cc62ecd2818 -> trunk/f0bee87eea03f6ded538590e2a073cc62ecd2818 2025-07-17T06:36:53.5879790Z * [new tag] trunk/f1331f3f1b43d1848341a0f0da66a13cb05570d0 -> trunk/f1331f3f1b43d1848341a0f0da66a13cb05570d0 2025-07-17T06:36:53.5880602Z * [new tag] trunk/f140fac8dcfa6ec20d594bc4637417a83bc90036 -> trunk/f140fac8dcfa6ec20d594bc4637417a83bc90036 2025-07-17T06:36:53.5881514Z * [new tag] trunk/f151b201236f959e3874b73dde9bfae5e10dae78 -> trunk/f151b201236f959e3874b73dde9bfae5e10dae78 2025-07-17T06:36:53.5882317Z * [new tag] trunk/f154f9b3040369a7979d5de7acb6fe21433eda83 -> trunk/f154f9b3040369a7979d5de7acb6fe21433eda83 2025-07-17T06:36:53.5883124Z * [new tag] trunk/f16053f0c9a09fa337fbf85aaf64f88712b8dcdb -> trunk/f16053f0c9a09fa337fbf85aaf64f88712b8dcdb 2025-07-17T06:36:53.5883936Z * [new tag] trunk/f179b7198522e6d93bd103efba1a1ebd5a2cf891 -> trunk/f179b7198522e6d93bd103efba1a1ebd5a2cf891 2025-07-17T06:36:53.5884751Z * [new tag] trunk/f17f6581252ff07e75f33fdce0b4248acdb5da0b -> trunk/f17f6581252ff07e75f33fdce0b4248acdb5da0b 2025-07-17T06:36:53.5885725Z * [new tag] trunk/f1f49e56b079bfc73b1b2fb061d150ec787ee716 -> trunk/f1f49e56b079bfc73b1b2fb061d150ec787ee716 2025-07-17T06:36:53.5886556Z * [new tag] trunk/f2b44424a1f3481ddc066e8dd62c0cafa1298e92 -> trunk/f2b44424a1f3481ddc066e8dd62c0cafa1298e92 2025-07-17T06:36:53.5887375Z * [new tag] trunk/f2d70898c6fad6c6e867d9bf60eced6aacfa9782 -> trunk/f2d70898c6fad6c6e867d9bf60eced6aacfa9782 2025-07-17T06:36:53.5888212Z * [new tag] trunk/f2e712ca14dbbb8435427fd536b0dd63994a9265 -> trunk/f2e712ca14dbbb8435427fd536b0dd63994a9265 2025-07-17T06:36:53.5889038Z * [new tag] trunk/f2ecf6145fde55baa8a91e27b6b3489172f0e639 -> trunk/f2ecf6145fde55baa8a91e27b6b3489172f0e639 2025-07-17T06:36:53.5889853Z * [new tag] trunk/f34335bf3373301ba3af3ff8268cd0cd1715bd2e -> trunk/f34335bf3373301ba3af3ff8268cd0cd1715bd2e 2025-07-17T06:36:53.5890665Z * [new tag] trunk/f34ab1628b6798cc62f55260dfad872f5df8fd94 -> trunk/f34ab1628b6798cc62f55260dfad872f5df8fd94 2025-07-17T06:36:53.5892148Z * [new tag] trunk/f3e6c8e834a49f738e329b802b4b10912e33915f -> trunk/f3e6c8e834a49f738e329b802b4b10912e33915f 2025-07-17T06:36:53.5892987Z * [new tag] trunk/f3ec16c26a24bcbdcb96c692e321be1a4464067c -> trunk/f3ec16c26a24bcbdcb96c692e321be1a4464067c 2025-07-17T06:36:53.5893830Z * [new tag] trunk/f402eed4d9515dee5bb9b11a2b157de57a5988c1 -> trunk/f402eed4d9515dee5bb9b11a2b157de57a5988c1 2025-07-17T06:36:53.5894655Z * [new tag] trunk/f40efde2a474ffd77c021686da2f14864d6aeb6d -> trunk/f40efde2a474ffd77c021686da2f14864d6aeb6d 2025-07-17T06:36:53.5895484Z * [new tag] trunk/f41d017aa6ca1bd121cee6e428875b7fd31a7ad0 -> trunk/f41d017aa6ca1bd121cee6e428875b7fd31a7ad0 2025-07-17T06:36:53.5896381Z * [new tag] trunk/f4376cac54978b9d7c859c1e3495a57d72ab9601 -> trunk/f4376cac54978b9d7c859c1e3495a57d72ab9601 2025-07-17T06:36:53.5897201Z * [new tag] trunk/f4406689b8805ed23dfef34c6320bb99ea6d3767 -> trunk/f4406689b8805ed23dfef34c6320bb99ea6d3767 2025-07-17T06:36:53.5898096Z * [new tag] trunk/f44a9eee4778d2a2aafe3a0beeea7a37ab8d380e -> trunk/f44a9eee4778d2a2aafe3a0beeea7a37ab8d380e 2025-07-17T06:36:53.5898966Z * [new tag] trunk/f45f483884ef524f2d8260dcf2b2ba2c203eab2f -> trunk/f45f483884ef524f2d8260dcf2b2ba2c203eab2f 2025-07-17T06:36:53.6106163Z * [new tag] trunk/f45f6e86b9ef3d9c94b87c2240dbe9a07bb9fd3d -> trunk/f45f6e86b9ef3d9c94b87c2240dbe9a07bb9fd3d 2025-07-17T06:36:53.6107021Z * [new tag] trunk/f48a1576606186cf2104c82be367b617912322de -> trunk/f48a1576606186cf2104c82be367b617912322de 2025-07-17T06:36:53.6107842Z * [new tag] trunk/f4d60a68dd2fb9fda92af83df016f4cfe3af00ba -> trunk/f4d60a68dd2fb9fda92af83df016f4cfe3af00ba 2025-07-17T06:36:53.6108734Z * [new tag] trunk/f56bfb3030acff03e21d568089f3af9e09ec7cb2 -> trunk/f56bfb3030acff03e21d568089f3af9e09ec7cb2 2025-07-17T06:36:53.6109624Z * [new tag] trunk/f58a680d09e13658a52c6ba05c63c15759846bcc -> trunk/f58a680d09e13658a52c6ba05c63c15759846bcc 2025-07-17T06:36:53.6110426Z * [new tag] trunk/f59c76b5494f83abbb2ca169e13201439396c1aa -> trunk/f59c76b5494f83abbb2ca169e13201439396c1aa 2025-07-17T06:36:53.6111241Z * [new tag] trunk/f5bbaa22536437e9f689db8ee7a5ca472fdf4bd0 -> trunk/f5bbaa22536437e9f689db8ee7a5ca472fdf4bd0 2025-07-17T06:36:53.6112058Z * [new tag] trunk/f5e1b24945cf7852a1425923ca543e1f83be14b1 -> trunk/f5e1b24945cf7852a1425923ca543e1f83be14b1 2025-07-17T06:36:53.6112858Z * [new tag] trunk/f5e6e52f2504d0d2c553fd292c89d999b2033616 -> trunk/f5e6e52f2504d0d2c553fd292c89d999b2033616 2025-07-17T06:36:53.6113662Z * [new tag] trunk/f5eb42e4c0405141134e9c52919ebb36ec77ca5f -> trunk/f5eb42e4c0405141134e9c52919ebb36ec77ca5f 2025-07-17T06:36:53.6114672Z * [new tag] trunk/f5f4beaf562911b5cf1a9e8b9eae5e5946681f3c -> trunk/f5f4beaf562911b5cf1a9e8b9eae5e5946681f3c 2025-07-17T06:36:53.6115589Z * [new tag] trunk/f6d138807f138868de0397936e2bee482c1fb987 -> trunk/f6d138807f138868de0397936e2bee482c1fb987 2025-07-17T06:36:53.6116388Z * [new tag] trunk/f6e18bc1054624bb148632a85c10371d6cc62492 -> trunk/f6e18bc1054624bb148632a85c10371d6cc62492 2025-07-17T06:36:53.6117181Z * [new tag] trunk/f70c80105ebc2a118af848c80a18d6efff820f72 -> trunk/f70c80105ebc2a118af848c80a18d6efff820f72 2025-07-17T06:36:53.6117994Z * [new tag] trunk/f7127b9b940a98596599acda1f89fc5153635a5d -> trunk/f7127b9b940a98596599acda1f89fc5153635a5d 2025-07-17T06:36:53.6118796Z * [new tag] trunk/f7130c097efa826313df44f0dcfa7d4d2e4253ec -> trunk/f7130c097efa826313df44f0dcfa7d4d2e4253ec 2025-07-17T06:36:53.6119605Z * [new tag] trunk/f742b32a2ff6326f67512d2b426cdc2da8413a75 -> trunk/f742b32a2ff6326f67512d2b426cdc2da8413a75 2025-07-17T06:36:53.6120545Z * [new tag] trunk/f79689bd3d145e76746e4cf81e99c40df8272a72 -> trunk/f79689bd3d145e76746e4cf81e99c40df8272a72 2025-07-17T06:36:53.6121407Z * [new tag] trunk/f7a5ad6c2987ee5a83aa5d868cee3b8067d3de94 -> trunk/f7a5ad6c2987ee5a83aa5d868cee3b8067d3de94 2025-07-17T06:36:53.6122238Z * [new tag] trunk/f80a61adf57badf999387efe47b8b2ff3388bd96 -> trunk/f80a61adf57badf999387efe47b8b2ff3388bd96 2025-07-17T06:36:53.6123067Z * [new tag] trunk/f810480dbefabbff6cf0852c9f610f84dd440b8d -> trunk/f810480dbefabbff6cf0852c9f610f84dd440b8d 2025-07-17T06:36:53.6123870Z * [new tag] trunk/f810e98143b7b1fe3436d5315101b22aa8438775 -> trunk/f810e98143b7b1fe3436d5315101b22aa8438775 2025-07-17T06:36:53.6124662Z * [new tag] trunk/f8293116f55a9ad399e4938f0fe3e34c6faa47c4 -> trunk/f8293116f55a9ad399e4938f0fe3e34c6faa47c4 2025-07-17T06:36:53.6125468Z * [new tag] trunk/f85954e043a5b6affb589012e8cc5eff8fdb5358 -> trunk/f85954e043a5b6affb589012e8cc5eff8fdb5358 2025-07-17T06:36:53.6126371Z * [new tag] trunk/f860992db5601a78f73eefc0a56af1d7158d6953 -> trunk/f860992db5601a78f73eefc0a56af1d7158d6953 2025-07-17T06:36:53.6127167Z * [new tag] trunk/f87d1179391d66854e3c6ca20717803cfa22f878 -> trunk/f87d1179391d66854e3c6ca20717803cfa22f878 2025-07-17T06:36:53.6127961Z * [new tag] trunk/f88d7a7a34d5a54d58f0a7edc01ff69f46221b6c -> trunk/f88d7a7a34d5a54d58f0a7edc01ff69f46221b6c 2025-07-17T06:36:53.6128784Z * [new tag] trunk/f8baec8984ed90b526fdc03eec19d8039e7d373b -> trunk/f8baec8984ed90b526fdc03eec19d8039e7d373b 2025-07-17T06:36:53.6129595Z * [new tag] trunk/f8c0a4bd28087b02958b92d7b4f41ebc607292b7 -> trunk/f8c0a4bd28087b02958b92d7b4f41ebc607292b7 2025-07-17T06:36:53.6130401Z * [new tag] trunk/f8cc4c0af802269fbe16a418386a94b3b6547c74 -> trunk/f8cc4c0af802269fbe16a418386a94b3b6547c74 2025-07-17T06:36:53.6131242Z * [new tag] trunk/f97f03c7efcf2b7a45384b9094eb6be4cb419546 -> trunk/f97f03c7efcf2b7a45384b9094eb6be4cb419546 2025-07-17T06:36:53.6132164Z * [new tag] trunk/fa0ea57f5e083daab1eb9cda39ab53a5159b077d -> trunk/fa0ea57f5e083daab1eb9cda39ab53a5159b077d 2025-07-17T06:36:53.6132987Z * [new tag] trunk/fa1c20ae9285f7994a73d2d06025065f96b67a57 -> trunk/fa1c20ae9285f7994a73d2d06025065f96b67a57 2025-07-17T06:36:53.6338777Z * [new tag] trunk/fa3c38c7ae17b8d8fccd0958831f9f1ced9e46b3 -> trunk/fa3c38c7ae17b8d8fccd0958831f9f1ced9e46b3 2025-07-17T06:36:53.6339648Z * [new tag] trunk/fa4f07b5b80bdcf99a1c7452de41939d2ab5886f -> trunk/fa4f07b5b80bdcf99a1c7452de41939d2ab5886f 2025-07-17T06:36:53.6340478Z * [new tag] trunk/fa705f791249c5eee912096f1d7ac7b2d5b60e8c -> trunk/fa705f791249c5eee912096f1d7ac7b2d5b60e8c 2025-07-17T06:36:53.6341459Z * [new tag] trunk/fab53dfdf1d89cecd5e82b12cced9b6dd217e87c -> trunk/fab53dfdf1d89cecd5e82b12cced9b6dd217e87c 2025-07-17T06:36:53.6342307Z * [new tag] trunk/fab85fc5f995ef79e67dc4b083f8cfabe7a90798 -> trunk/fab85fc5f995ef79e67dc4b083f8cfabe7a90798 2025-07-17T06:36:53.6343139Z * [new tag] trunk/fac0cc16efd342637a3d1953caf2ecfa8a89947c -> trunk/fac0cc16efd342637a3d1953caf2ecfa8a89947c 2025-07-17T06:36:53.6343967Z * [new tag] trunk/fadc936fad0793e931ed2eb89577e1d10d212f71 -> trunk/fadc936fad0793e931ed2eb89577e1d10d212f71 2025-07-17T06:36:53.6344791Z * [new tag] trunk/fb45649df7267e97efffec8305cddcb23e97d53f -> trunk/fb45649df7267e97efffec8305cddcb23e97d53f 2025-07-17T06:36:53.6345610Z * [new tag] trunk/fb462cec8d8674ad547c55dbe90710bde1dc2019 -> trunk/fb462cec8d8674ad547c55dbe90710bde1dc2019 2025-07-17T06:36:53.6346424Z * [new tag] trunk/fb731fe371cb1b5bf95de84b19c213590526acb2 -> trunk/fb731fe371cb1b5bf95de84b19c213590526acb2 2025-07-17T06:36:53.6347337Z * [new tag] trunk/fb75dea2c1b93c78dccf08d5fd5e20b362ecd405 -> trunk/fb75dea2c1b93c78dccf08d5fd5e20b362ecd405 2025-07-17T06:36:53.6348173Z * [new tag] trunk/fb9a5d248f36ddce041025c8fc5be0d8bee454b0 -> trunk/fb9a5d248f36ddce041025c8fc5be0d8bee454b0 2025-07-17T06:36:53.6349003Z * [new tag] trunk/fbbab794ef6befbe7ffab3648e9b1f2042942fed -> trunk/fbbab794ef6befbe7ffab3648e9b1f2042942fed 2025-07-17T06:36:53.6349847Z * [new tag] trunk/fbd88ae2b5f444cb4b419c415258caeaef4b7325 -> trunk/fbd88ae2b5f444cb4b419c415258caeaef4b7325 2025-07-17T06:36:53.6350658Z * [new tag] trunk/fc0376e8b162d8fcf4375ae30566139eae7d48ed -> trunk/fc0376e8b162d8fcf4375ae30566139eae7d48ed 2025-07-17T06:36:53.6351473Z * [new tag] trunk/fc10d4b1d649f1460b587f3ab45ad4403d84518c -> trunk/fc10d4b1d649f1460b587f3ab45ad4403d84518c 2025-07-17T06:36:53.6352287Z * [new tag] trunk/fc177801afcbf12543b5e193e736b155f79d4ad3 -> trunk/fc177801afcbf12543b5e193e736b155f79d4ad3 2025-07-17T06:36:53.6353088Z * [new tag] trunk/fc5ae1229341ca2841a977197c644733c6a5c789 -> trunk/fc5ae1229341ca2841a977197c644733c6a5c789 2025-07-17T06:36:53.6353878Z * [new tag] trunk/fc772692622e89335dc28638c512bb33dbed1729 -> trunk/fc772692622e89335dc28638c512bb33dbed1729 2025-07-17T06:36:53.6354689Z * [new tag] trunk/fca7013f85d4e7ac07bdd461f490aa159feac6a0 -> trunk/fca7013f85d4e7ac07bdd461f490aa159feac6a0 2025-07-17T06:36:53.6355580Z * [new tag] trunk/fcbf7c749a839cc817927ceba8ea2887cc28dbf5 -> trunk/fcbf7c749a839cc817927ceba8ea2887cc28dbf5 2025-07-17T06:36:53.6356407Z * [new tag] trunk/fcc682be4bda58894a15fee1d9041c6043fea66f -> trunk/fcc682be4bda58894a15fee1d9041c6043fea66f 2025-07-17T06:36:53.6357219Z * [new tag] trunk/fd4bb29410c035b31ca55262c3012cadb1194aae -> trunk/fd4bb29410c035b31ca55262c3012cadb1194aae 2025-07-17T06:36:53.6358046Z * [new tag] trunk/fd4f704905f95b46c4c8fb4108461ff56ce750c5 -> trunk/fd4f704905f95b46c4c8fb4108461ff56ce750c5 2025-07-17T06:36:53.6358867Z * [new tag] trunk/fd8ea3c8a35e5b4aea3ebd712f2c7ee28c5a3655 -> trunk/fd8ea3c8a35e5b4aea3ebd712f2c7ee28c5a3655 2025-07-17T06:36:53.6359686Z * [new tag] trunk/fdc5b42a8fa2b15526c81f2c83f614e086056320 -> trunk/fdc5b42a8fa2b15526c81f2c83f614e086056320 2025-07-17T06:36:53.6360507Z * [new tag] trunk/fdf5d97fa8393f56aea2779877efd8a264ad5811 -> trunk/fdf5d97fa8393f56aea2779877efd8a264ad5811 2025-07-17T06:36:53.6361326Z * [new tag] trunk/fe1f1a38dff7c59ec0ec5b05fef058629845d061 -> trunk/fe1f1a38dff7c59ec0ec5b05fef058629845d061 2025-07-17T06:36:53.6362155Z * [new tag] trunk/fec571cfd458c4644a2f483dbf9f5480feca7939 -> trunk/fec571cfd458c4644a2f483dbf9f5480feca7939 2025-07-17T06:36:53.6362975Z * [new tag] trunk/fec8af8b98f5e17740ff947e9f8a1c447a497413 -> trunk/fec8af8b98f5e17740ff947e9f8a1c447a497413 2025-07-17T06:36:53.6363884Z * [new tag] trunk/fedbd1a48e1e474cf9da5637aae89b5bc4c20626 -> trunk/fedbd1a48e1e474cf9da5637aae89b5bc4c20626 2025-07-17T06:36:53.6364721Z * [new tag] trunk/fee2377f9ea62223f69ea9904c5e25ccb2af5961 -> trunk/fee2377f9ea62223f69ea9904c5e25ccb2af5961 2025-07-17T06:36:53.8031363Z * [new tag] trunk/feea575082439a0496dd404a4925b7d551039065 -> trunk/feea575082439a0496dd404a4925b7d551039065 2025-07-17T06:36:53.8032208Z * [new tag] trunk/ff611d971fe5362a71c15109cf020d30e6c4b2b9 -> trunk/ff611d971fe5362a71c15109cf020d30e6c4b2b9 2025-07-17T06:36:53.8033103Z * [new tag] trunk/ff7dd1776f9cb8448336338b19b9b53073f2fbda -> trunk/ff7dd1776f9cb8448336338b19b9b53073f2fbda 2025-07-17T06:36:53.8033960Z * [new tag] trunk/ff8b53c056e6556187690a37c944c92feb964d2d -> trunk/ff8b53c056e6556187690a37c944c92feb964d2d 2025-07-17T06:36:53.8034966Z * [new tag] trunk/ffac0de07e0173a073c92c157f43c515009c0de1 -> trunk/ffac0de07e0173a073c92c157f43c515009c0de1 2025-07-17T06:36:53.8035889Z * [new tag] trunk/ffaed8c569406839335bf46dafc4c3e8871e4b8a -> trunk/ffaed8c569406839335bf46dafc4c3e8871e4b8a 2025-07-17T06:36:53.8036712Z * [new tag] trunk/ffc6cbfaf78ca219092ce64dcf113377ae698300 -> trunk/ffc6cbfaf78ca219092ce64dcf113377ae698300 2025-07-17T06:36:53.8037306Z * [new tag] v0.1.1 -> v0.1.1 2025-07-17T06:36:53.8037657Z * [new tag] v0.1.10 -> v0.1.10 2025-07-17T06:36:53.8037994Z * [new tag] v0.1.11 -> v0.1.11 2025-07-17T06:36:53.8038339Z * [new tag] v0.1.12 -> v0.1.12 2025-07-17T06:36:53.8038663Z * [new tag] v0.1.2 -> v0.1.2 2025-07-17T06:36:53.8039053Z * [new tag] v0.1.3 -> v0.1.3 2025-07-17T06:36:53.8039403Z * [new tag] v0.1.4 -> v0.1.4 2025-07-17T06:36:53.8039790Z * [new tag] v0.1.5 -> v0.1.5 2025-07-17T06:36:53.8040126Z * [new tag] v0.1.6 -> v0.1.6 2025-07-17T06:36:53.8040448Z * [new tag] v0.1.7 -> v0.1.7 2025-07-17T06:36:53.8040780Z * [new tag] v0.1.8 -> v0.1.8 2025-07-17T06:36:53.8041105Z * [new tag] v0.1.9 -> v0.1.9 2025-07-17T06:36:53.8041435Z * [new tag] v0.2.0 -> v0.2.0 2025-07-17T06:36:53.8041764Z * [new tag] v0.3.0 -> v0.3.0 2025-07-17T06:36:53.8042084Z * [new tag] v0.3.1 -> v0.3.1 2025-07-17T06:36:53.8042411Z * [new tag] v0.4.0 -> v0.4.0 2025-07-17T06:36:53.8042739Z * [new tag] v0.4.1 -> v0.4.1 2025-07-17T06:36:53.8043081Z * [new tag] v1.0.0 -> v1.0.0 2025-07-17T06:36:53.8043416Z * [new tag] v1.0.0a0 -> v1.0.0a0 2025-07-17T06:36:53.8043757Z * [new tag] v1.0.1 -> v1.0.1 2025-07-17T06:36:53.8044096Z * [new tag] v1.0rc0 -> v1.0rc0 2025-07-17T06:36:53.8044433Z * [new tag] v1.0rc1 -> v1.0rc1 2025-07-17T06:36:53.8044815Z * [new tag] v1.1.0 -> v1.1.0 2025-07-17T06:36:53.8045154Z * [new tag] v1.1.0a0 -> v1.1.0a0 2025-07-17T06:36:53.8045570Z * [new tag] v1.10.0 -> v1.10.0 2025-07-17T06:36:53.8045911Z * [new tag] v1.10.0-rc1 -> v1.10.0-rc1 2025-07-17T06:36:53.8046273Z * [new tag] v1.10.0-rc2 -> v1.10.0-rc2 2025-07-17T06:36:53.8046757Z * [new tag] v1.10.0-rc3 -> v1.10.0-rc3 2025-07-17T06:36:53.8047119Z * [new tag] v1.10.1 -> v1.10.1 2025-07-17T06:36:53.8047471Z * [new tag] v1.10.1-rc1 -> v1.10.1-rc1 2025-07-17T06:36:53.8047811Z * [new tag] v1.10.2 -> v1.10.2 2025-07-17T06:36:53.8048165Z * [new tag] v1.10.2-rc1 -> v1.10.2-rc1 2025-07-17T06:36:53.8048505Z * [new tag] v1.11.0 -> v1.11.0 2025-07-17T06:36:53.8048851Z * [new tag] v1.11.0-rc1 -> v1.11.0-rc1 2025-07-17T06:36:53.8049198Z * [new tag] v1.11.0-rc2 -> v1.11.0-rc2 2025-07-17T06:36:53.8049553Z * [new tag] v1.11.0-rc3 -> v1.11.0-rc3 2025-07-17T06:36:53.8049909Z * [new tag] v1.11.0-rc4 -> v1.11.0-rc4 2025-07-17T06:36:53.8050258Z * [new tag] v1.11.0-rc5 -> v1.11.0-rc5 2025-07-17T06:36:53.8050742Z * [new tag] v1.11.0-rc6 -> v1.11.0-rc6 2025-07-17T06:36:53.8051144Z * [new tag] v1.11.0-rc7 -> v1.11.0-rc7 2025-07-17T06:36:53.8051492Z * [new tag] v1.12.0 -> v1.12.0 2025-07-17T06:36:53.8051841Z * [new tag] v1.12.0-rc1 -> v1.12.0-rc1 2025-07-17T06:36:53.8052190Z * [new tag] v1.12.0-rc2 -> v1.12.0-rc2 2025-07-17T06:36:53.8052542Z * [new tag] v1.12.0-rc3 -> v1.12.0-rc3 2025-07-17T06:36:53.8052883Z * [new tag] v1.12.0-rc4 -> v1.12.0-rc4 2025-07-17T06:36:53.8053239Z * [new tag] v1.12.0-rc5 -> v1.12.0-rc5 2025-07-17T06:36:53.8053585Z * [new tag] v1.12.0-rc6 -> v1.12.0-rc6 2025-07-17T06:36:53.9399420Z * [new tag] v1.12.0-rc7 -> v1.12.0-rc7 2025-07-17T06:36:53.9399884Z * [new tag] v1.12.0-rc8 -> v1.12.0-rc8 2025-07-17T06:36:53.9400256Z * [new tag] v1.12.1 -> v1.12.1 2025-07-17T06:36:53.9400626Z * [new tag] v1.12.1-rc1 -> v1.12.1-rc1 2025-07-17T06:36:53.9400975Z * [new tag] v1.12.1-rc2 -> v1.12.1-rc2 2025-07-17T06:36:53.9401331Z * [new tag] v1.12.1-rc3 -> v1.12.1-rc3 2025-07-17T06:36:53.9401678Z * [new tag] v1.12.1-rc4 -> v1.12.1-rc4 2025-07-17T06:36:53.9402040Z * [new tag] v1.12.1-rc5 -> v1.12.1-rc5 2025-07-17T06:36:53.9402383Z * [new tag] v1.13.0 -> v1.13.0 2025-07-17T06:36:53.9402730Z * [new tag] v1.13.0-rc1 -> v1.13.0-rc1 2025-07-17T06:36:53.9403165Z * [new tag] v1.13.0-rc2 -> v1.13.0-rc2 2025-07-17T06:36:53.9403519Z * [new tag] v1.13.0-rc3 -> v1.13.0-rc3 2025-07-17T06:36:53.9403918Z * [new tag] v1.13.0-rc4 -> v1.13.0-rc4 2025-07-17T06:36:53.9404272Z * [new tag] v1.13.0-rc5 -> v1.13.0-rc5 2025-07-17T06:36:53.9404615Z * [new tag] v1.13.0-rc6 -> v1.13.0-rc6 2025-07-17T06:36:53.9404972Z * [new tag] v1.13.1 -> v1.13.1 2025-07-17T06:36:53.9405316Z * [new tag] v1.13.1-rc1 -> v1.13.1-rc1 2025-07-17T06:36:53.9405662Z * [new tag] v1.2.0 -> v1.2.0 2025-07-17T06:36:53.9406000Z * [new tag] v1.2.0a0 -> v1.2.0a0 2025-07-17T06:36:53.9406340Z * [new tag] v1.3.0 -> v1.3.0 2025-07-17T06:36:53.9406892Z * [new tag] v1.3.0a0 -> v1.3.0a0 2025-07-17T06:36:53.9407235Z * [new tag] v1.3.1 -> v1.3.1 2025-07-17T06:36:53.9407573Z * [new tag] v1.4.0 -> v1.4.0 2025-07-17T06:36:53.9407909Z * [new tag] v1.4.0a0 -> v1.4.0a0 2025-07-17T06:36:53.9408261Z * [new tag] v1.4.1 -> v1.4.1 2025-07-17T06:36:53.9408584Z * [new tag] v1.5.0 -> v1.5.0 2025-07-17T06:36:53.9408926Z * [new tag] v1.5.0-rc1 -> v1.5.0-rc1 2025-07-17T06:36:53.9409329Z * [new tag] v1.5.0-rc2 -> v1.5.0-rc2 2025-07-17T06:36:53.9409716Z * [new tag] v1.5.0-rc3 -> v1.5.0-rc3 2025-07-17T06:36:53.9410108Z * [new tag] v1.5.0-rc4 -> v1.5.0-rc4 2025-07-17T06:36:53.9410495Z * [new tag] v1.5.0-rc5 -> v1.5.0-rc5 2025-07-17T06:36:53.9411035Z * [new tag] v1.5.1 -> v1.5.1 2025-07-17T06:36:53.9411418Z * [new tag] v1.5.1-rc1 -> v1.5.1-rc1 2025-07-17T06:36:53.9411804Z * [new tag] v1.6.0 -> v1.6.0 2025-07-17T06:36:53.9412188Z * [new tag] v1.6.0-rc1 -> v1.6.0-rc1 2025-07-17T06:36:53.9412573Z * [new tag] v1.6.0-rc2 -> v1.6.0-rc2 2025-07-17T06:36:53.9412964Z * [new tag] v1.6.0-rc3 -> v1.6.0-rc3 2025-07-17T06:36:53.9413343Z * [new tag] v1.6.0-rc4 -> v1.6.0-rc4 2025-07-17T06:36:53.9413731Z * [new tag] v1.6.0-rc5 -> v1.6.0-rc5 2025-07-17T06:36:53.9414122Z * [new tag] v1.6.0-rc6 -> v1.6.0-rc6 2025-07-17T06:36:53.9414500Z * [new tag] v1.6.0-rc7 -> v1.6.0-rc7 2025-07-17T06:36:53.9414900Z * [new tag] v1.7.0 -> v1.7.0 2025-07-17T06:36:53.9415280Z * [new tag] v1.7.0-rc1 -> v1.7.0-rc1 2025-07-17T06:36:53.9415670Z * [new tag] v1.7.0-rc2 -> v1.7.0-rc2 2025-07-17T06:36:53.9416058Z * [new tag] v1.7.0-rc3 -> v1.7.0-rc3 2025-07-17T06:36:53.9416408Z * [new tag] v1.7.0-rc4 -> v1.7.0-rc4 2025-07-17T06:36:53.9416802Z * [new tag] v1.7.1 -> v1.7.1 2025-07-17T06:36:53.9417184Z * [new tag] v1.7.1-rc1 -> v1.7.1-rc1 2025-07-17T06:36:53.9417576Z * [new tag] v1.7.1-rc2 -> v1.7.1-rc2 2025-07-17T06:36:53.9417958Z * [new tag] v1.7.1-rc3 -> v1.7.1-rc3 2025-07-17T06:36:53.9418349Z * [new tag] v1.8.0 -> v1.8.0 2025-07-17T06:36:53.9418732Z * [new tag] v1.8.0-rc1 -> v1.8.0-rc1 2025-07-17T06:36:53.9419129Z * [new tag] v1.8.0-rc2 -> v1.8.0-rc2 2025-07-17T06:36:53.9419519Z * [new tag] v1.8.0-rc3 -> v1.8.0-rc3 2025-07-17T06:36:53.9419909Z * [new tag] v1.8.0-rc4 -> v1.8.0-rc4 2025-07-17T06:36:53.9420303Z * [new tag] v1.8.0-rc5 -> v1.8.0-rc5 2025-07-17T06:36:53.9420688Z * [new tag] v1.8.1 -> v1.8.1 2025-07-17T06:36:53.9421076Z * [new tag] v1.8.1-rc1 -> v1.8.1-rc1 2025-07-17T06:36:53.9421463Z * [new tag] v1.8.1-rc2 -> v1.8.1-rc2 2025-07-17T06:36:53.9995986Z * [new tag] v1.8.1-rc3 -> v1.8.1-rc3 2025-07-17T06:36:53.9996401Z * [new tag] v1.8.2 -> v1.8.2 2025-07-17T06:36:53.9996971Z * [new tag] v1.8.2-rc1 -> v1.8.2-rc1 2025-07-17T06:36:53.9997355Z * [new tag] v1.9.0 -> v1.9.0 2025-07-17T06:36:53.9997706Z * [new tag] v1.9.0-rc1 -> v1.9.0-rc1 2025-07-17T06:36:53.9998069Z * [new tag] v1.9.0-rc2 -> v1.9.0-rc2 2025-07-17T06:36:53.9998425Z * [new tag] v1.9.0-rc3 -> v1.9.0-rc3 2025-07-17T06:36:53.9998768Z * [new tag] v1.9.0-rc4 -> v1.9.0-rc4 2025-07-17T06:36:53.9999113Z * [new tag] v1.9.1 -> v1.9.1 2025-07-17T06:36:54.0007824Z * [new tag] v1.9.1-rc1 -> v1.9.1-rc1 2025-07-17T06:36:54.0008354Z * [new tag] v1.9.1-rc2 -> v1.9.1-rc2 2025-07-17T06:36:54.0008714Z * [new tag] v2.0.0 -> v2.0.0 2025-07-17T06:36:54.0009075Z * [new tag] v2.0.0-rc1 -> v2.0.0-rc1 2025-07-17T06:36:54.0009660Z * [new tag] v2.0.0-rc2 -> v2.0.0-rc2 2025-07-17T06:36:54.0010029Z * [new tag] v2.0.0-rc3 -> v2.0.0-rc3 2025-07-17T06:36:54.0010395Z * [new tag] v2.0.0-rc4 -> v2.0.0-rc4 2025-07-17T06:36:54.0010742Z * [new tag] v2.0.0-rc5 -> v2.0.0-rc5 2025-07-17T06:36:54.0011108Z * [new tag] v2.0.0-rc6 -> v2.0.0-rc6 2025-07-17T06:36:54.0011457Z * [new tag] v2.0.1 -> v2.0.1 2025-07-17T06:36:54.0011802Z * [new tag] v2.0.1-rc1 -> v2.0.1-rc1 2025-07-17T06:36:54.0012156Z * [new tag] v2.0.1-rc2 -> v2.0.1-rc2 2025-07-17T06:36:54.0012500Z * [new tag] v2.0.1-rc3 -> v2.0.1-rc3 2025-07-17T06:36:54.0012862Z * [new tag] v2.0.1-rc4 -> v2.0.1-rc4 2025-07-17T06:36:54.0013206Z * [new tag] v2.1.0 -> v2.1.0 2025-07-17T06:36:54.0013635Z * [new tag] v2.1.0-rc1 -> v2.1.0-rc1 2025-07-17T06:36:54.0014036Z * [new tag] v2.1.0-rc2 -> v2.1.0-rc2 2025-07-17T06:36:54.0014384Z * [new tag] v2.1.0-rc3 -> v2.1.0-rc3 2025-07-17T06:36:54.0014740Z * [new tag] v2.1.0-rc4 -> v2.1.0-rc4 2025-07-17T06:36:54.0015085Z * [new tag] v2.1.0-rc5 -> v2.1.0-rc5 2025-07-17T06:36:54.0015447Z * [new tag] v2.1.0-rc6 -> v2.1.0-rc6 2025-07-17T06:36:54.0015798Z * [new tag] v2.1.1 -> v2.1.1 2025-07-17T06:36:54.0016143Z * [new tag] v2.1.1-rc1 -> v2.1.1-rc1 2025-07-17T06:36:54.0016503Z * [new tag] v2.1.1-rc2 -> v2.1.1-rc2 2025-07-17T06:36:54.0016855Z * [new tag] v2.1.1-rc3 -> v2.1.1-rc3 2025-07-17T06:36:54.0017212Z * [new tag] v2.1.1-rc4 -> v2.1.1-rc4 2025-07-17T06:36:54.0017558Z * [new tag] v2.1.1-rc5 -> v2.1.1-rc5 2025-07-17T06:36:54.0017912Z * [new tag] v2.1.1-rc6 -> v2.1.1-rc6 2025-07-17T06:36:54.0018263Z * [new tag] v2.1.2 -> v2.1.2 2025-07-17T06:36:54.0018598Z * [new tag] v2.1.2-rc1 -> v2.1.2-rc1 2025-07-17T06:36:54.0018946Z * [new tag] v2.1.2-rc2 -> v2.1.2-rc2 2025-07-17T06:36:54.0019333Z * [new tag] v2.1.2-rc3 -> v2.1.2-rc3 2025-07-17T06:36:54.0019725Z * [new tag] v2.2.0 -> v2.2.0 2025-07-17T06:36:54.0020061Z * [new tag] v2.2.0-rc1 -> v2.2.0-rc1 2025-07-17T06:36:54.0020523Z * [new tag] v2.2.0-rc2 -> v2.2.0-rc2 2025-07-17T06:36:54.0020878Z * [new tag] v2.2.0-rc3 -> v2.2.0-rc3 2025-07-17T06:36:54.0021228Z * [new tag] v2.2.0-rc4 -> v2.2.0-rc4 2025-07-17T06:36:54.0021583Z * [new tag] v2.2.0-rc5 -> v2.2.0-rc5 2025-07-17T06:36:54.0021934Z * [new tag] v2.2.0-rc6 -> v2.2.0-rc6 2025-07-17T06:36:54.0022287Z * [new tag] v2.2.0-rc7 -> v2.2.0-rc7 2025-07-17T06:36:54.0022630Z * [new tag] v2.2.0-rc8 -> v2.2.0-rc8 2025-07-17T06:36:54.0022979Z * [new tag] v2.2.1 -> v2.2.1 2025-07-17T06:36:54.0023325Z * [new tag] v2.2.1-rc1 -> v2.2.1-rc1 2025-07-17T06:36:54.0023674Z * [new tag] v2.2.1-rc2 -> v2.2.1-rc2 2025-07-17T06:36:54.0024024Z * [new tag] v2.2.1-rc3 -> v2.2.1-rc3 2025-07-17T06:36:54.0024452Z * [new tag] v2.2.2 -> v2.2.2 2025-07-17T06:36:54.0024843Z * [new tag] v2.2.2-rc1 -> v2.2.2-rc1 2025-07-17T06:36:54.0025205Z * [new tag] v2.2.2-rc2 -> v2.2.2-rc2 2025-07-17T06:36:54.0025589Z * [new tag] v2.2.2-rc3 -> v2.2.2-rc3 2025-07-17T06:36:54.0542709Z * [new tag] v2.3.0 -> v2.3.0 2025-07-17T06:36:54.0543147Z * [new tag] v2.3.0-rc1 -> v2.3.0-rc1 2025-07-17T06:36:54.0543554Z * [new tag] v2.3.0-rc10 -> v2.3.0-rc10 2025-07-17T06:36:54.0543930Z * [new tag] v2.3.0-rc11 -> v2.3.0-rc11 2025-07-17T06:36:54.0544282Z * [new tag] v2.3.0-rc12 -> v2.3.0-rc12 2025-07-17T06:36:54.0544644Z * [new tag] v2.3.0-rc2 -> v2.3.0-rc2 2025-07-17T06:36:54.0545023Z * [new tag] v2.3.0-rc3 -> v2.3.0-rc3 2025-07-17T06:36:54.0545379Z * [new tag] v2.3.0-rc4 -> v2.3.0-rc4 2025-07-17T06:36:54.0545730Z * [new tag] v2.3.0-rc5 -> v2.3.0-rc5 2025-07-17T06:36:54.0546071Z * [new tag] v2.3.0-rc6 -> v2.3.0-rc6 2025-07-17T06:36:54.0546428Z * [new tag] v2.3.0-rc7 -> v2.3.0-rc7 2025-07-17T06:36:54.0546771Z * [new tag] v2.3.0-rc8 -> v2.3.0-rc8 2025-07-17T06:36:54.0547121Z * [new tag] v2.3.0-rc9 -> v2.3.0-rc9 2025-07-17T06:36:54.0547465Z * [new tag] v2.3.1 -> v2.3.1 2025-07-17T06:36:54.0547819Z * [new tag] v2.3.1-rc1 -> v2.3.1-rc1 2025-07-17T06:36:54.0548174Z * [new tag] v2.3.1-rc2 -> v2.3.1-rc2 2025-07-17T06:36:54.0548522Z * [new tag] v2.3.1-rc3 -> v2.3.1-rc3 2025-07-17T06:36:54.0548915Z * [new tag] v2.4.0 -> v2.4.0 2025-07-17T06:36:54.0549253Z * [new tag] v2.4.0-rc1 -> v2.4.0-rc1 2025-07-17T06:36:54.0549647Z * [new tag] v2.4.0-rc2 -> v2.4.0-rc2 2025-07-17T06:36:54.0550001Z * [new tag] v2.4.0-rc3 -> v2.4.0-rc3 2025-07-17T06:36:54.0550348Z * [new tag] v2.4.0-rc4 -> v2.4.0-rc4 2025-07-17T06:36:54.0550707Z * [new tag] v2.4.0-rc5 -> v2.4.0-rc5 2025-07-17T06:36:54.0551052Z * [new tag] v2.4.0-rc6 -> v2.4.0-rc6 2025-07-17T06:36:54.0551425Z * [new tag] v2.4.0-rc7 -> v2.4.0-rc7 2025-07-17T06:36:54.0551781Z * [new tag] v2.4.0-rc8 -> v2.4.0-rc8 2025-07-17T06:36:54.0552284Z * [new tag] v2.4.0-rc9 -> v2.4.0-rc9 2025-07-17T06:36:54.0552646Z * [new tag] v2.4.1 -> v2.4.1 2025-07-17T06:36:54.0552994Z * [new tag] v2.4.1-rc1 -> v2.4.1-rc1 2025-07-17T06:36:54.0553359Z * [new tag] v2.4.1-rc2 -> v2.4.1-rc2 2025-07-17T06:36:54.0553704Z * [new tag] v2.4.1-rc3 -> v2.4.1-rc3 2025-07-17T06:36:54.0554062Z * [new tag] v2.5.0 -> v2.5.0 2025-07-17T06:36:54.0554402Z * [new tag] v2.5.0-rc1 -> v2.5.0-rc1 2025-07-17T06:36:54.0554791Z * [new tag] v2.5.0-rc10 -> v2.5.0-rc10 2025-07-17T06:36:54.0555268Z * [new tag] v2.5.0-rc2 -> v2.5.0-rc2 2025-07-17T06:36:54.0555660Z * [new tag] v2.5.0-rc3 -> v2.5.0-rc3 2025-07-17T06:36:54.0556018Z * [new tag] v2.5.0-rc4 -> v2.5.0-rc4 2025-07-17T06:36:54.0556485Z * [new tag] v2.5.0-rc5 -> v2.5.0-rc5 2025-07-17T06:36:54.0556832Z * [new tag] v2.5.0-rc6 -> v2.5.0-rc6 2025-07-17T06:36:54.0557189Z * [new tag] v2.5.0-rc7 -> v2.5.0-rc7 2025-07-17T06:36:54.0557536Z * [new tag] v2.5.0-rc8 -> v2.5.0-rc8 2025-07-17T06:36:54.0557888Z * [new tag] v2.5.0-rc9 -> v2.5.0-rc9 2025-07-17T06:36:54.0558232Z * [new tag] v2.5.1 -> v2.5.1 2025-07-17T06:36:54.0558573Z * [new tag] v2.5.1-rc1 -> v2.5.1-rc1 2025-07-17T06:36:54.0558913Z * [new tag] v2.6.0 -> v2.6.0 2025-07-17T06:36:54.0559249Z * [new tag] v2.6.0-rc1 -> v2.6.0-rc1 2025-07-17T06:36:54.0559614Z * [new tag] v2.6.0-rc2 -> v2.6.0-rc2 2025-07-17T06:36:54.0559961Z * [new tag] v2.6.0-rc3 -> v2.6.0-rc3 2025-07-17T06:36:54.0560315Z * [new tag] v2.6.0-rc4 -> v2.6.0-rc4 2025-07-17T06:36:54.0560664Z * [new tag] v2.6.0-rc5 -> v2.6.0-rc5 2025-07-17T06:36:54.0561061Z * [new tag] v2.6.0-rc6 -> v2.6.0-rc6 2025-07-17T06:36:54.0561453Z * [new tag] v2.6.0-rc7 -> v2.6.0-rc7 2025-07-17T06:36:54.0561793Z * [new tag] v2.6.0-rc8 -> v2.6.0-rc8 2025-07-17T06:36:54.0562139Z * [new tag] v2.6.0-rc9 -> v2.6.0-rc9 2025-07-17T06:36:54.0562473Z * [new tag] v2.7.0 -> v2.7.0 2025-07-17T06:36:54.0562824Z * [new tag] v2.7.0-rc1 -> v2.7.0-rc1 2025-07-17T06:36:54.0563172Z * [new tag] v2.7.0-rc10 -> v2.7.0-rc10 2025-07-17T06:36:54.0563543Z * [new tag] v2.7.0-rc2 -> v2.7.0-rc2 2025-07-17T06:36:54.5341626Z * [new tag] v2.7.0-rc3 -> v2.7.0-rc3 2025-07-17T06:36:54.5342034Z * [new tag] v2.7.0-rc4 -> v2.7.0-rc4 2025-07-17T06:36:54.5342393Z * [new tag] v2.7.0-rc5 -> v2.7.0-rc5 2025-07-17T06:36:54.5342763Z * [new tag] v2.7.0-rc6 -> v2.7.0-rc6 2025-07-17T06:36:54.5343112Z * [new tag] v2.7.0-rc7 -> v2.7.0-rc7 2025-07-17T06:36:54.5343462Z * [new tag] v2.7.0-rc8 -> v2.7.0-rc8 2025-07-17T06:36:54.5343806Z * [new tag] v2.7.0-rc9 -> v2.7.0-rc9 2025-07-17T06:36:54.5344151Z * [new tag] v2.7.1 -> v2.7.1 2025-07-17T06:36:54.5344495Z * [new tag] v2.7.1-rc1 -> v2.7.1-rc1 2025-07-17T06:36:54.5345084Z * [new tag] v2.7.1-rc2 -> v2.7.1-rc2 2025-07-17T06:36:54.5345454Z * [new tag] v2.7.1-rc3 -> v2.7.1-rc3 2025-07-17T06:36:54.5345801Z * [new tag] v2.7.1-rc4 -> v2.7.1-rc4 2025-07-17T06:36:54.5346160Z * [new tag] v2.7.1-rc5 -> v2.7.1-rc5 2025-07-17T06:36:54.5346503Z * [new tag] v2.8.0-rc1 -> v2.8.0-rc1 2025-07-17T06:36:54.5346862Z * [new tag] v2.8.0-rc2 -> v2.8.0-rc2 2025-07-17T06:36:54.5347211Z * [new tag] v2.8.0-rc3 -> v2.8.0-rc3 2025-07-17T06:36:54.5347555Z * [new tag] v2.8.0-rc4 -> v2.8.0-rc4 2025-07-17T06:36:54.5347903Z * [new tag] v2.8.0-rc5 -> v2.8.0-rc5 2025-07-17T06:36:54.5348320Z * [new tag] whc_flight_1 -> whc_flight_1 2025-07-17T06:36:54.5348743Z * [new tag] whc_flight_2 -> whc_flight_2 2025-07-17T06:36:54.5349286Z * [new tag] whc_flight_4 -> whc_flight_4 2025-07-17T06:36:54.5540690Z [command]"C:\Program Files\Git\cmd\git.exe" rev-parse --verify --quiet a38f433be2e94a64b095a44ba39879d02d0c2316^{object} 2025-07-17T06:36:54.5739774Z a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:36:54.5771290Z ##[endgroup] 2025-07-17T06:36:54.5771656Z ##[group]Determining the checkout info 2025-07-17T06:36:54.5773071Z ##[endgroup] 2025-07-17T06:36:54.5783319Z [command]"C:\Program Files\Git\cmd\git.exe" sparse-checkout disable 2025-07-17T06:36:54.6073671Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all extensions.worktreeConfig 2025-07-17T06:36:54.6321093Z ##[group]Checking out the ref 2025-07-17T06:36:54.6334490Z [command]"C:\Program Files\Git\cmd\git.exe" checkout --progress --force a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:36:55.9697556Z Updating files: 3% (624/19589) 2025-07-17T06:36:56.1992291Z Updating files: 4% (784/19589) 2025-07-17T06:36:56.5209103Z Updating files: 5% (980/19589) 2025-07-17T06:36:56.6784480Z Updating files: 6% (1176/19589) 2025-07-17T06:36:56.9556284Z Updating files: 6% (1247/19589) 2025-07-17T06:36:57.3408509Z Updating files: 7% (1372/19589) 2025-07-17T06:36:57.6827622Z Updating files: 8% (1568/19589) 2025-07-17T06:36:57.7241410Z Updating files: 8% (1703/19589) 2025-07-17T06:36:57.9770976Z Updating files: 9% (1764/19589) 2025-07-17T06:36:58.4129175Z Updating files: 10% (1959/19589) 2025-07-17T06:36:58.6344317Z Updating files: 11% (2155/19589) 2025-07-17T06:36:58.6876586Z Updating files: 12% (2351/19589) 2025-07-17T06:36:58.9322209Z Updating files: 12% (2385/19589) 2025-07-17T06:36:59.1885671Z Updating files: 13% (2547/19589) 2025-07-17T06:36:59.5183202Z Updating files: 14% (2743/19589) 2025-07-17T06:36:59.7143438Z Updating files: 15% (2939/19589) 2025-07-17T06:36:59.8868347Z Updating files: 15% (2981/19589) 2025-07-17T06:37:00.2944344Z Updating files: 16% (3135/19589) 2025-07-17T06:37:00.6241344Z Updating files: 17% (3331/19589) 2025-07-17T06:37:00.6845376Z Updating files: 18% (3527/19589) 2025-07-17T06:37:00.9078654Z Updating files: 18% (3564/19589) 2025-07-17T06:37:01.2335683Z Updating files: 19% (3722/19589) 2025-07-17T06:37:01.6881355Z Updating files: 20% (3918/19589) 2025-07-17T06:37:01.7191337Z Updating files: 20% (4044/19589) 2025-07-17T06:37:01.8541078Z Updating files: 21% (4114/19589) 2025-07-17T06:37:02.0472810Z Updating files: 22% (4310/19589) 2025-07-17T06:37:02.2149376Z Updating files: 23% (4506/19589) 2025-07-17T06:37:02.5900532Z Updating files: 24% (4702/19589) 2025-07-17T06:37:02.6344095Z Updating files: 25% (4898/19589) 2025-07-17T06:37:02.7376458Z Updating files: 26% (5094/19589) 2025-07-17T06:37:02.7624922Z Updating files: 26% (5162/19589) 2025-07-17T06:37:02.8088220Z Updating files: 27% (5290/19589) 2025-07-17T06:37:02.9816804Z Updating files: 28% (5485/19589) 2025-07-17T06:37:03.0258303Z Updating files: 29% (5681/19589) 2025-07-17T06:37:03.0774030Z Updating files: 30% (5877/19589) 2025-07-17T06:37:03.2319980Z Updating files: 31% (6073/19589) 2025-07-17T06:37:03.3157355Z Updating files: 32% (6269/19589) 2025-07-17T06:37:03.4622024Z Updating files: 33% (6465/19589) 2025-07-17T06:37:03.7311902Z Updating files: 34% (6661/19589) 2025-07-17T06:37:03.7487465Z Updating files: 34% (6817/19589) 2025-07-17T06:37:03.7930784Z Updating files: 35% (6857/19589) 2025-07-17T06:37:03.9201146Z Updating files: 36% (7053/19589) 2025-07-17T06:37:04.0707828Z Updating files: 37% (7248/19589) 2025-07-17T06:37:04.2636630Z Updating files: 38% (7444/19589) 2025-07-17T06:37:04.3390484Z Updating files: 39% (7640/19589) 2025-07-17T06:37:04.4211302Z Updating files: 40% (7836/19589) 2025-07-17T06:37:04.5535138Z Updating files: 41% (8032/19589) 2025-07-17T06:37:04.6287647Z Updating files: 42% (8228/19589) 2025-07-17T06:37:04.6685247Z Updating files: 43% (8424/19589) 2025-07-17T06:37:04.7386921Z Updating files: 44% (8620/19589) 2025-07-17T06:37:04.7549386Z Updating files: 44% (8752/19589) 2025-07-17T06:37:04.8018585Z Updating files: 45% (8816/19589) 2025-07-17T06:37:04.8521173Z Updating files: 46% (9011/19589) 2025-07-17T06:37:04.9384770Z Updating files: 47% (9207/19589) 2025-07-17T06:37:04.9941882Z Updating files: 48% (9403/19589) 2025-07-17T06:37:05.1286721Z Updating files: 49% (9599/19589) 2025-07-17T06:37:05.2005269Z Updating files: 50% (9795/19589) 2025-07-17T06:37:05.3786316Z Updating files: 51% (9991/19589) 2025-07-17T06:37:05.4221734Z Updating files: 52% (10187/19589) 2025-07-17T06:37:05.4656644Z Updating files: 53% (10383/19589) 2025-07-17T06:37:05.5721946Z Updating files: 54% (10579/19589) 2025-07-17T06:37:05.7065211Z Updating files: 55% (10774/19589) 2025-07-17T06:37:05.7076317Z Updating files: 56% (10970/19589) 2025-07-17T06:37:05.7526221Z Updating files: 56% (10975/19589) 2025-07-17T06:37:05.8836849Z Updating files: 57% (11166/19589) 2025-07-17T06:37:05.9286373Z Updating files: 58% (11362/19589) 2025-07-17T06:37:06.0235359Z Updating files: 59% (11558/19589) 2025-07-17T06:37:06.0731288Z Updating files: 60% (11754/19589) 2025-07-17T06:37:06.1180485Z Updating files: 61% (11950/19589) 2025-07-17T06:37:06.2485917Z Updating files: 62% (12146/19589) 2025-07-17T06:37:06.2980445Z Updating files: 63% (12342/19589) 2025-07-17T06:37:06.4530149Z Updating files: 64% (12537/19589) 2025-07-17T06:37:06.5381839Z Updating files: 65% (12733/19589) 2025-07-17T06:37:06.5859603Z Updating files: 66% (12929/19589) 2025-07-17T06:37:06.7859975Z Updating files: 67% (13125/19589) 2025-07-17T06:37:06.8048215Z Updating files: 67% (13243/19589) 2025-07-17T06:37:06.8849342Z Updating files: 68% (13321/19589) 2025-07-17T06:37:07.0068644Z Updating files: 69% (13517/19589) 2025-07-17T06:37:07.2007318Z Updating files: 70% (13713/19589) 2025-07-17T06:37:07.3046933Z Updating files: 71% (13909/19589) 2025-07-17T06:37:07.4764840Z Updating files: 72% (14105/19589) 2025-07-17T06:37:07.5321680Z Updating files: 73% (14300/19589) 2025-07-17T06:37:07.6506243Z Updating files: 74% (14496/19589) 2025-07-17T06:37:07.7714178Z Updating files: 75% (14692/19589) 2025-07-17T06:37:07.8884237Z Updating files: 75% (14723/19589) 2025-07-17T06:37:08.0178421Z Updating files: 76% (14888/19589) 2025-07-17T06:37:08.2853599Z Updating files: 77% (15084/19589) 2025-07-17T06:37:08.3562696Z Updating files: 78% (15280/19589) 2025-07-17T06:37:08.5266395Z Updating files: 79% (15476/19589) 2025-07-17T06:37:08.6205174Z Updating files: 80% (15672/19589) 2025-07-17T06:37:08.7143727Z Updating files: 81% (15868/19589) 2025-07-17T06:37:08.7207171Z Updating files: 81% (16053/19589) 2025-07-17T06:37:08.9021298Z Updating files: 82% (16063/19589) 2025-07-17T06:37:08.9839118Z Updating files: 83% (16259/19589) 2025-07-17T06:37:09.1646941Z Updating files: 84% (16455/19589) 2025-07-17T06:37:09.3858070Z Updating files: 85% (16651/19589) 2025-07-17T06:37:09.7136198Z Updating files: 86% (16847/19589) 2025-07-17T06:37:09.7199182Z Updating files: 87% (17043/19589) 2025-07-17T06:37:09.7860109Z Updating files: 87% (17056/19589) 2025-07-17T06:37:09.9920261Z Updating files: 88% (17239/19589) 2025-07-17T06:37:10.1172829Z Updating files: 89% (17435/19589) 2025-07-17T06:37:10.1922206Z Updating files: 90% (17631/19589) 2025-07-17T06:37:10.3977345Z Updating files: 91% (17826/19589) 2025-07-17T06:37:10.4860703Z Updating files: 92% (18022/19589) 2025-07-17T06:37:10.6520426Z Updating files: 93% (18218/19589) 2025-07-17T06:37:10.7394183Z Updating files: 94% (18414/19589) 2025-07-17T06:37:10.8712356Z Updating files: 94% (18415/19589) 2025-07-17T06:37:10.9862782Z Updating files: 95% (18610/19589) 2025-07-17T06:37:11.1472682Z Updating files: 96% (18806/19589) 2025-07-17T06:37:11.2252877Z Updating files: 97% (19002/19589) 2025-07-17T06:37:11.4497930Z Updating files: 98% (19198/19589) 2025-07-17T06:37:11.5338705Z Updating files: 99% (19394/19589) 2025-07-17T06:37:11.5339016Z Updating files: 100% (19589/19589) 2025-07-17T06:37:11.5339504Z Updating files: 100% (19589/19589), done. 2025-07-17T06:37:11.5835860Z Note: switching to 'a38f433be2e94a64b095a44ba39879d02d0c2316'. 2025-07-17T06:37:11.5836174Z 2025-07-17T06:37:11.5836377Z You are in 'detached HEAD' state. You can look around, make experimental 2025-07-17T06:37:11.5836883Z changes and commit them, and you can discard any commits you make in this 2025-07-17T06:37:11.5837372Z state without impacting any branches by switching back to a branch. 2025-07-17T06:37:11.5837673Z 2025-07-17T06:37:11.5837857Z If you want to create a new branch to retain commits you create, you may 2025-07-17T06:37:11.5838303Z do so (now or later) by using -c with the switch command. Example: 2025-07-17T06:37:11.5838572Z 2025-07-17T06:37:11.5838666Z git switch -c 2025-07-17T06:37:11.5838839Z 2025-07-17T06:37:11.5838938Z Or undo this operation with: 2025-07-17T06:37:11.5839118Z 2025-07-17T06:37:11.5839187Z git switch - 2025-07-17T06:37:11.5839307Z 2025-07-17T06:37:11.5839532Z Turn off this advice by setting config variable advice.detachedHead to false 2025-07-17T06:37:11.5839853Z 2025-07-17T06:37:11.5840092Z HEAD is now at a38f433be2e [Docker builds] Move from Miniconda to Miniforge (#158370) 2025-07-17T06:37:11.6015299Z ##[endgroup] 2025-07-17T06:37:11.6015684Z ##[group]Setting up auth for fetching submodules 2025-07-17T06:37:11.6026671Z [command]"C:\Program Files\Git\cmd\git.exe" config --global http.https://github.com/.extraheader "AUTHORIZATION: basic ***" 2025-07-17T06:37:11.6279342Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --unset-all url.https://github.com/.insteadOf 2025-07-17T06:37:11.6522128Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf git@github.com: 2025-07-17T06:37:11.6761352Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-07-17T06:37:11.6992899Z ##[endgroup] 2025-07-17T06:37:11.6993278Z ##[group]Fetching submodules 2025-07-17T06:37:11.7003113Z [command]"C:\Program Files\Git\cmd\git.exe" submodule sync --recursive 2025-07-17T06:37:12.1095115Z [command]"C:\Program Files\Git\cmd\git.exe" -c protocol.version=2 submodule update --init --force --recursive 2025-07-17T06:37:12.5780540Z Submodule 'android/libs/fbjni' (https://github.com/facebookincubator/fbjni.git) registered for path 'android/libs/fbjni' 2025-07-17T06:37:12.5781513Z Submodule 'third_party/NNPACK_deps/FP16' (https://github.com/Maratyszcza/FP16.git) registered for path 'third_party/FP16' 2025-07-17T06:37:12.5782437Z Submodule 'third_party/NNPACK_deps/FXdiv' (https://github.com/Maratyszcza/FXdiv.git) registered for path 'third_party/FXdiv' 2025-07-17T06:37:12.5783350Z Submodule 'third_party/NNPACK' (https://github.com/Maratyszcza/NNPACK.git) registered for path 'third_party/NNPACK' 2025-07-17T06:37:12.5784376Z Submodule 'third_party/NVTX' (https://github.com/NVIDIA/NVTX.git) registered for path 'third_party/NVTX' 2025-07-17T06:37:12.5785618Z Submodule 'third_party/VulkanMemoryAllocator' (https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git) registered for path 'third_party/VulkanMemoryAllocator' 2025-07-17T06:37:12.5786793Z Submodule 'third_party/XNNPACK' (https://github.com/google/XNNPACK.git) registered for path 'third_party/XNNPACK' 2025-07-17T06:37:12.5787597Z Submodule 'third_party/aiter' (https://github.com/ROCm/aiter.git) registered for path 'third_party/aiter' 2025-07-17T06:37:12.5788443Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/benchmark' 2025-07-17T06:37:12.5789438Z Submodule 'third_party/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/composable_kernel' 2025-07-17T06:37:12.5790490Z Submodule 'third_party/cpp-httplib' (https://github.com/yhirose/cpp-httplib.git) registered for path 'third_party/cpp-httplib' 2025-07-17T06:37:12.5791579Z Submodule 'third_party/cpuinfo' (https://github.com/pytorch/cpuinfo.git) registered for path 'third_party/cpuinfo' 2025-07-17T06:37:12.5792519Z Submodule 'third_party/cudnn_frontend' (https://github.com/NVIDIA/cudnn-frontend.git) registered for path 'third_party/cudnn_frontend' 2025-07-17T06:37:12.5793452Z Submodule 'third_party/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/cutlass' 2025-07-17T06:37:12.5794266Z Submodule 'third_party/fbgemm' (https://github.com/pytorch/fbgemm) registered for path 'third_party/fbgemm' 2025-07-17T06:37:12.5795194Z Submodule 'third_party/flash-attention' (https://github.com/Dao-AILab/flash-attention.git) registered for path 'third_party/flash-attention' 2025-07-17T06:37:12.5796301Z Submodule 'third_party/flatbuffers' (https://github.com/google/flatbuffers.git) registered for path 'third_party/flatbuffers' 2025-07-17T06:37:12.5797287Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/fmt' 2025-07-17T06:37:12.5798173Z Submodule 'third_party/gemmlowp/gemmlowp' (https://github.com/google/gemmlowp.git) registered for path 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:37:12.5799058Z Submodule 'third_party/gloo' (https://github.com/pytorch/gloo) registered for path 'third_party/gloo' 2025-07-17T06:37:12.5799886Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest' 2025-07-17T06:37:12.5800736Z Submodule 'third_party/ideep' (https://github.com/intel/ideep) registered for path 'third_party/ideep' 2025-07-17T06:37:12.5801511Z Submodule 'third_party/ittapi' (https://github.com/intel/ittapi.git) registered for path 'third_party/ittapi' 2025-07-17T06:37:12.5802348Z Submodule 'third_party/kineto' (https://github.com/pytorch/kineto) registered for path 'third_party/kineto' 2025-07-17T06:37:12.5803254Z Submodule 'third_party/kleidiai' (https://github.com/ARM-software/kleidiai.git) registered for path 'third_party/kleidiai' 2025-07-17T06:37:12.5804179Z Submodule 'third_party/mimalloc' (https://github.com/microsoft/mimalloc.git) registered for path 'third_party/mimalloc' 2025-07-17T06:37:12.5805058Z Submodule 'third_party/nlohmann' (https://github.com/nlohmann/json.git) registered for path 'third_party/nlohmann' 2025-07-17T06:37:12.5805857Z Submodule 'third_party/onnx' (https://github.com/onnx/onnx.git) registered for path 'third_party/onnx' 2025-07-17T06:37:12.5806821Z Submodule 'third_party/opentelemetry-cpp' (https://github.com/open-telemetry/opentelemetry-cpp.git) registered for path 'third_party/opentelemetry-cpp' 2025-07-17T06:37:12.5807875Z Submodule 'third_party/pocketfft' (https://github.com/mreineck/pocketfft) registered for path 'third_party/pocketfft' 2025-07-17T06:37:12.5808906Z Submodule 'third_party/protobuf' (https://github.com/protocolbuffers/protobuf.git) registered for path 'third_party/protobuf' 2025-07-17T06:37:12.5810000Z Submodule 'third_party/NNPACK_deps/psimd' (https://github.com/Maratyszcza/psimd.git) registered for path 'third_party/psimd' 2025-07-17T06:37:12.5811037Z Submodule 'third_party/NNPACK_deps/pthreadpool' (https://github.com/Maratyszcza/pthreadpool.git) registered for path 'third_party/pthreadpool' 2025-07-17T06:37:12.5852980Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/pybind11' 2025-07-17T06:37:12.5853963Z Submodule 'third_party/python-peachpy' (https://github.com/malfet/PeachPy.git) registered for path 'third_party/python-peachpy' 2025-07-17T06:37:12.5854844Z Submodule 'third_party/sleef' (https://github.com/shibatch/sleef) registered for path 'third_party/sleef' 2025-07-17T06:37:12.5855747Z Submodule 'third_party/tensorpipe' (https://github.com/pytorch/tensorpipe.git) registered for path 'third_party/tensorpipe' 2025-07-17T06:37:12.7072716Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/android/libs/fbjni'... 2025-07-17T06:37:13.0907139Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FXdiv'... 2025-07-17T06:37:13.0908394Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/FP16'... 2025-07-17T06:37:13.1061029Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fmt'... 2025-07-17T06:37:17.3375574Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NNPACK'... 2025-07-17T06:37:17.3411895Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/benchmark'... 2025-07-17T06:37:17.3413388Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX'... 2025-07-17T06:37:17.3450811Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpp-httplib'... 2025-07-17T06:37:17.3653442Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gemmlowp/gemmlowp'... 2025-07-17T06:37:17.3655329Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/gloo'... 2025-07-17T06:37:17.3662863Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention'... 2025-07-17T06:37:17.3664084Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cpuinfo'... 2025-07-17T06:37:17.7007106Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flatbuffers'... 2025-07-17T06:37:20.7313390Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cudnn_frontend'... 2025-07-17T06:37:20.7315128Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/VulkanMemoryAllocator'... 2025-07-17T06:37:20.7316241Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep'... 2025-07-17T06:37:20.7317278Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kleidiai'... 2025-07-17T06:37:20.7318225Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm'... 2025-07-17T06:37:20.7320840Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ittapi'... 2025-07-17T06:37:20.7321821Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/mimalloc'... 2025-07-17T06:37:21.5025590Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/psimd'... 2025-07-17T06:37:40.0557097Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pocketfft'... 2025-07-17T06:37:40.0557731Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/googletest'... 2025-07-17T06:37:40.0558322Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf'... 2025-07-17T06:37:40.0558864Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter'... 2025-07-17T06:37:40.0559423Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/cutlass'... 2025-07-17T06:37:40.0559995Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pthreadpool'... 2025-07-17T06:37:40.0560600Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/python-peachpy'... 2025-07-17T06:37:40.0561187Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto'... 2025-07-17T06:37:40.0563052Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/composable_kernel'... 2025-07-17T06:37:40.0563678Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/pybind11'... 2025-07-17T06:37:40.0564255Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe'... 2025-07-17T06:37:40.0564808Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/sleef'... 2025-07-17T06:37:40.0565344Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx'... 2025-07-17T06:37:40.0565873Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/nlohmann'... 2025-07-17T06:37:40.0566436Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/XNNPACK'... 2025-07-17T06:37:40.0567021Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp'... 2025-07-17T06:37:40.3789366Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-07-17T06:37:40.4797246Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-07-17T06:37:40.5455162Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-07-17T06:37:40.7113647Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-07-17T06:37:41.1193541Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-07-17T06:37:41.3919932Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-07-17T06:37:51.9613528Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-07-17T06:37:52.9468105Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-07-17T06:37:52.9585992Z Submodule '3rdparty/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:37:55.9568128Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/aiter/3rdparty/composable_kernel'... 2025-07-17T06:37:58.6423386Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-07-17T06:37:58.7914552Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-07-17T06:38:02.2153037Z Submodule path 'third_party/composable_kernel': checked out '434d19f696da62c12b5372b32cbc9ba968588d7e' 2025-07-17T06:38:02.4825025Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-07-17T06:38:02.9263158Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-07-17T06:38:03.2379795Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-07-17T06:38:08.2583816Z Submodule path 'third_party/cutlass': checked out 'b995f933179c22d3fe0d871c3a53d11e4681950f' 2025-07-17T06:38:09.6826427Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-07-17T06:38:09.7033163Z Submodule 'external/asmjit' (https://github.com/asmjit/asmjit.git) registered for path 'third_party/fbgemm/external/asmjit' 2025-07-17T06:38:09.7034287Z Submodule 'external/composable_kernel' (https://github.com/jwfromm/composable_kernel.git) registered for path 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:38:09.7035406Z Submodule 'external/cpuinfo' (https://github.com/pytorch/cpuinfo) registered for path 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:38:09.7036405Z Submodule 'external/cutlass' (https://github.com/jwfromm/cutlass) registered for path 'third_party/fbgemm/external/cutlass' 2025-07-17T06:38:09.7037387Z Submodule 'external/googletest' (https://github.com/google/googletest) registered for path 'third_party/fbgemm/external/googletest' 2025-07-17T06:38:09.7038515Z Submodule 'external/hipify_torch' (https://github.com/ROCmSoftwarePlatform/hipify_torch.git) registered for path 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:38:09.7039789Z Submodule 'external/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/fbgemm/external/json' 2025-07-17T06:38:09.7494630Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit'... 2025-07-17T06:38:18.6985712Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/hipify_torch'... 2025-07-17T06:38:18.6986564Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cpuinfo'... 2025-07-17T06:38:18.6987409Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/composable_kernel'... 2025-07-17T06:38:18.6988256Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/googletest'... 2025-07-17T06:38:18.6989049Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/cutlass'... 2025-07-17T06:38:18.6989849Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/json'... 2025-07-17T06:38:18.9237984Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-07-17T06:38:21.4256470Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-07-17T06:38:21.9969588Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-07-17T06:38:22.5758386Z From https://github.com/jwfromm/cutlass 2025-07-17T06:38:22.5758838Z * branch 3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3 -> FETCH_HEAD 2025-07-17T06:38:27.1616740Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-07-17T06:38:27.4236953Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-07-17T06:38:27.5097622Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-07-17T06:38:28.3106542Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-07-17T06:38:28.8493646Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-07-17T06:38:28.8620400Z Submodule 'csrc/composable_kernel' (https://github.com/ROCm/composable_kernel.git) registered for path 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:38:28.8621516Z Submodule 'csrc/cutlass' (https://github.com/NVIDIA/cutlass.git) registered for path 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:38:33.1842174Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/composable_kernel'... 2025-07-17T06:38:33.1843008Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/flash-attention/csrc/cutlass'... 2025-07-17T06:38:35.8953945Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-07-17T06:38:40.8081184Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-07-17T06:38:43.6210810Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-07-17T06:38:43.7851143Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-07-17T06:38:43.9984197Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-07-17T06:38:44.1741854Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-07-17T06:38:44.4602803Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-07-17T06:38:44.5501251Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-07-17T06:38:44.5605357Z Submodule 'mkl-dnn' (https://github.com/intel/mkl-dnn.git) registered for path 'third_party/ideep/mkl-dnn' 2025-07-17T06:38:56.0420509Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/ideep/mkl-dnn'... 2025-07-17T06:38:59.6162692Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-07-17T06:38:59.7584940Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-07-17T06:39:00.4302726Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-07-17T06:39:00.4454422Z Submodule 'libkineto/third_party/dynolog' (https://github.com/facebookincubator/dynolog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:39:00.4455623Z Submodule 'libkineto/third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:39:00.4457910Z Submodule 'libkineto/third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:39:02.2080163Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog'... 2025-07-17T06:39:02.2081021Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/fmt'... 2025-07-17T06:39:02.2081825Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/googletest'... 2025-07-17T06:39:02.5741236Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-07-17T06:39:02.5972946Z Submodule 'third_party/DCGM' (https://github.com/NVIDIA/DCGM.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:39:02.5974327Z Submodule 'third_party/cpr' (https://github.com/libcpr/cpr.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:39:02.5975626Z Submodule 'third_party/fmt' (https://github.com/fmtlib/fmt.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:39:02.5976922Z Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:39:02.5978110Z Submodule 'third_party/glog' (https://github.com/google/glog.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:39:02.5979339Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:39:02.5980594Z Submodule 'third_party/json' (https://github.com/nlohmann/json.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:39:02.5981760Z Submodule 'third_party/pfs' (https://github.com/dtrugman/pfs.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:39:02.6428810Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM'... 2025-07-17T06:39:10.7993364Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags'... 2025-07-17T06:39:10.7994418Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/pfs'... 2025-07-17T06:39:10.7995420Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/cpr'... 2025-07-17T06:39:10.7996377Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/glog'... 2025-07-17T06:39:10.7997339Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/googletest'... 2025-07-17T06:39:10.7998616Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/fmt'... 2025-07-17T06:39:10.7999572Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/json'... 2025-07-17T06:39:12.3425548Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-07-17T06:39:12.4618090Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-07-17T06:39:12.6462360Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-07-17T06:39:12.7630571Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-07-17T06:39:12.7739131Z Submodule 'doc' (https://github.com/gflags/gflags.git) registered for path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:39:13.1904260Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc'... 2025-07-17T06:39:13.2430516Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-07-17T06:39:13.3671831Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-07-17T06:39:13.6454083Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-07-17T06:39:14.2052623Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-07-17T06:39:14.3099719Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-07-17T06:39:14.4756954Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-07-17T06:39:14.7119830Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-07-17T06:39:14.9706294Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-07-17T06:39:15.2196986Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-07-17T06:39:15.7644425Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-07-17T06:39:19.0531137Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-07-17T06:39:19.0660852Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/onnx/third_party/pybind11' 2025-07-17T06:39:20.2042694Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/onnx/third_party/pybind11'... 2025-07-17T06:39:20.3683343Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-17T06:39:20.8379326Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-07-17T06:39:20.8609143Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:39:20.8610332Z Submodule 'third_party/googletest' (https://github.com/google/googletest) registered for path 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:39:20.8611425Z Submodule 'third_party/ms-gsl' (https://github.com/microsoft/GSL) registered for path 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:39:20.8612816Z Submodule 'third_party/nlohmann-json' (https://github.com/nlohmann/json) registered for path 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:39:20.8614186Z Submodule 'third_party/opentelemetry-proto' (https://github.com/open-telemetry/opentelemetry-proto) registered for path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:39:20.8615608Z Submodule 'third_party/opentracing-cpp' (https://github.com/opentracing/opentracing-cpp.git) registered for path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:39:20.8616923Z Submodule 'third_party/prometheus-cpp' (https://github.com/jupp0r/prometheus-cpp) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:39:20.8618023Z Submodule 'tools/vcpkg' (https://github.com/Microsoft/vcpkg) registered for path 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:39:20.9025395Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/benchmark'... 2025-07-17T06:39:31.0939641Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentracing-cpp'... 2025-07-17T06:39:31.0940562Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/ms-gsl'... 2025-07-17T06:39:31.0941446Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/opentelemetry-proto'... 2025-07-17T06:39:31.0942356Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp'... 2025-07-17T06:39:31.0943225Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/googletest'... 2025-07-17T06:39:31.0944078Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/nlohmann-json'... 2025-07-17T06:39:31.0944878Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/tools/vcpkg'... 2025-07-17T06:39:31.2440061Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-07-17T06:39:31.4071866Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-07-17T06:39:31.4923500Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-07-17T06:39:32.0559336Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-07-17T06:39:32.1470447Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-07-17T06:39:32.2415037Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-07-17T06:39:32.3558452Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-07-17T06:39:32.3676923Z Submodule 'civetweb' (https://github.com/civetweb/civetweb.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:39:32.3678417Z Submodule 'googletest' (https://github.com/google/googletest.git) registered for path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:39:34.5080329Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb'... 2025-07-17T06:39:34.5081418Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest'... 2025-07-17T06:39:35.2745891Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-07-17T06:39:35.4724932Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-07-17T06:39:41.4037713Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-07-17T06:39:41.5122792Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-07-17T06:39:42.9873828Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-07-17T06:39:43.0003213Z Submodule 'third_party/benchmark' (https://github.com/google/benchmark.git) registered for path 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:39:43.0004359Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/protobuf/third_party/googletest' 2025-07-17T06:39:44.1863768Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/benchmark'... 2025-07-17T06:39:44.1864816Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/protobuf/third_party/googletest'... 2025-07-17T06:39:44.2729888Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-07-17T06:39:44.5373152Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-07-17T06:39:44.6990924Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-07-17T06:39:44.7847437Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-07-17T06:39:44.9678667Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-17T06:39:45.9904124Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-07-17T06:39:46.4258168Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-07-17T06:39:46.6012464Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-07-17T06:39:46.6185631Z Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:39:46.6186743Z Submodule 'third_party/libnop' (https://github.com/google/libnop.git) registered for path 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:39:46.6187743Z Submodule 'third_party/libuv' (https://github.com/libuv/libuv.git) registered for path 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:39:46.6188804Z Submodule 'third_party/pybind11' (https://github.com/pybind/pybind11.git) registered for path 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:39:48.6973824Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/googletest'... 2025-07-17T06:39:48.6974636Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libnop'... 2025-07-17T06:39:48.6975449Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11'... 2025-07-17T06:39:48.9795816Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/libuv'... 2025-07-17T06:39:48.9796761Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-07-17T06:39:49.0956815Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-07-17T06:39:49.3502848Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-07-17T06:39:49.4888950Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-07-17T06:39:49.5013457Z Submodule 'tools/clang' (https://github.com/wjakob/clang-cindex-python3) registered for path 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:39:49.8019157Z Cloning into 'C:/actions-runner/_work/pytorch/pytorch/third_party/tensorpipe/third_party/pybind11/tools/clang'... 2025-07-17T06:39:49.8595222Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-07-17T06:39:49.8825945Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local gc.auto 0" 2025-07-17T06:39:50.2452656Z Entering 'android/libs/fbjni' 2025-07-17T06:39:50.2822829Z Entering 'third_party/FP16' 2025-07-17T06:39:50.3184255Z Entering 'third_party/FXdiv' 2025-07-17T06:39:50.3560702Z Entering 'third_party/NNPACK' 2025-07-17T06:39:50.3922935Z Entering 'third_party/NVTX' 2025-07-17T06:39:50.4285859Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:39:50.4648391Z Entering 'third_party/XNNPACK' 2025-07-17T06:39:50.5023260Z Entering 'third_party/aiter' 2025-07-17T06:39:50.5387515Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:39:50.5774927Z Entering 'third_party/benchmark' 2025-07-17T06:39:50.6151590Z Entering 'third_party/composable_kernel' 2025-07-17T06:39:50.6519444Z Entering 'third_party/cpp-httplib' 2025-07-17T06:39:50.6908165Z Entering 'third_party/cpuinfo' 2025-07-17T06:39:50.7264570Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:39:50.7618197Z Entering 'third_party/cutlass' 2025-07-17T06:39:50.8004480Z Entering 'third_party/fbgemm' 2025-07-17T06:39:50.8354174Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:39:50.8724886Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:39:50.9121068Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:39:50.9488280Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:39:50.9861211Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:39:51.0223375Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:39:51.0582051Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:39:51.0971193Z Entering 'third_party/flash-attention' 2025-07-17T06:39:51.1324629Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:39:51.1694572Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:39:51.2072744Z Entering 'third_party/flatbuffers' 2025-07-17T06:39:51.2437422Z Entering 'third_party/fmt' 2025-07-17T06:39:51.2844145Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:39:51.3209778Z Entering 'third_party/gloo' 2025-07-17T06:39:51.3566106Z Entering 'third_party/googletest' 2025-07-17T06:39:51.3950897Z Entering 'third_party/ideep' 2025-07-17T06:39:51.4315316Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:39:51.4705799Z Entering 'third_party/ittapi' 2025-07-17T06:39:51.5065517Z Entering 'third_party/kineto' 2025-07-17T06:39:51.5421563Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:39:51.5779234Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:39:51.6151233Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:39:51.6517610Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:39:51.6918523Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:39:51.7264035Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:39:51.7650639Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:39:51.8010383Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:39:51.8373290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:39:51.8735432Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:39:51.9116235Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:39:51.9484944Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:39:51.9903948Z Entering 'third_party/kleidiai' 2025-07-17T06:39:52.0267436Z Entering 'third_party/mimalloc' 2025-07-17T06:39:52.0626776Z Entering 'third_party/nlohmann' 2025-07-17T06:39:52.1005916Z Entering 'third_party/onnx' 2025-07-17T06:39:52.1380168Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:39:52.1767949Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:39:52.2114541Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:39:52.2476298Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:39:52.2834809Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:39:52.3191404Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:39:52.3549248Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:39:52.3907694Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:39:52.4280889Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:39:52.4635245Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:39:52.5013250Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:39:52.5398800Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:39:52.5861612Z Entering 'third_party/pocketfft' 2025-07-17T06:39:52.6234797Z Entering 'third_party/protobuf' 2025-07-17T06:39:52.6600466Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:39:52.6989492Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:39:52.7378697Z Entering 'third_party/psimd' 2025-07-17T06:39:52.7748263Z Entering 'third_party/pthreadpool' 2025-07-17T06:39:52.8117883Z Entering 'third_party/pybind11' 2025-07-17T06:39:52.8482958Z Entering 'third_party/python-peachpy' 2025-07-17T06:39:52.8844824Z Entering 'third_party/sleef' 2025-07-17T06:39:52.9211480Z Entering 'third_party/tensorpipe' 2025-07-17T06:39:52.9568797Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:39:52.9934679Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:39:53.0303065Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:39:53.0689136Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:39:53.1051359Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:39:53.1532004Z ##[endgroup] 2025-07-17T06:39:53.1532414Z ##[group]Persisting credentials for submodules 2025-07-17T06:39:53.1546124Z [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-07-17T06:39:53.5272973Z Entering 'android/libs/fbjni' 2025-07-17T06:39:53.5833126Z Entering 'third_party/FP16' 2025-07-17T06:39:53.6393196Z Entering 'third_party/FXdiv' 2025-07-17T06:39:53.6961692Z Entering 'third_party/NNPACK' 2025-07-17T06:39:53.7510829Z Entering 'third_party/NVTX' 2025-07-17T06:39:53.8065888Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:39:53.8623726Z Entering 'third_party/XNNPACK' 2025-07-17T06:39:53.9212842Z Entering 'third_party/aiter' 2025-07-17T06:39:53.9804744Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:39:54.0391925Z Entering 'third_party/benchmark' 2025-07-17T06:39:54.0948894Z Entering 'third_party/composable_kernel' 2025-07-17T06:39:54.1534781Z Entering 'third_party/cpp-httplib' 2025-07-17T06:39:54.2099468Z Entering 'third_party/cpuinfo' 2025-07-17T06:39:54.2717140Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:39:54.3276897Z Entering 'third_party/cutlass' 2025-07-17T06:39:54.3899013Z Entering 'third_party/fbgemm' 2025-07-17T06:39:54.4441662Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:39:54.5000215Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:39:54.5577184Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:39:54.6124975Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:39:54.6682563Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:39:54.7229926Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:39:54.7773265Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:39:54.8356256Z Entering 'third_party/flash-attention' 2025-07-17T06:39:54.8889414Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:39:54.9455518Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:39:55.0053744Z Entering 'third_party/flatbuffers' 2025-07-17T06:39:55.0630124Z Entering 'third_party/fmt' 2025-07-17T06:39:55.1189754Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:39:55.1778859Z Entering 'third_party/gloo' 2025-07-17T06:39:55.2354927Z Entering 'third_party/googletest' 2025-07-17T06:39:55.2931978Z Entering 'third_party/ideep' 2025-07-17T06:39:55.3471657Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:39:55.4093160Z Entering 'third_party/ittapi' 2025-07-17T06:39:55.4638609Z Entering 'third_party/kineto' 2025-07-17T06:39:55.5176773Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:39:55.5713048Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:39:55.6264576Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:39:55.6814343Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:39:55.7378355Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:39:55.7961502Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:39:55.8534608Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:39:55.9084150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:39:55.9636756Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:39:56.0180257Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:39:56.0745205Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:39:56.1298780Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:39:56.1898222Z Entering 'third_party/kleidiai' 2025-07-17T06:39:56.2441554Z Entering 'third_party/mimalloc' 2025-07-17T06:39:56.2991121Z Entering 'third_party/nlohmann' 2025-07-17T06:39:56.3533251Z Entering 'third_party/onnx' 2025-07-17T06:39:56.4114123Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:39:56.4733748Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:39:56.5334260Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:39:56.5924039Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:39:56.6496314Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:39:56.7054496Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:39:56.7622348Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:39:56.8191329Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:39:56.8753515Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:39:56.9301739Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:39:56.9903943Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:39:57.0497829Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:39:57.1112035Z Entering 'third_party/pocketfft' 2025-07-17T06:39:57.1684755Z Entering 'third_party/protobuf' 2025-07-17T06:39:57.2243102Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:39:57.2832213Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:39:57.3421024Z Entering 'third_party/psimd' 2025-07-17T06:39:57.3989155Z Entering 'third_party/pthreadpool' 2025-07-17T06:39:57.4569979Z Entering 'third_party/pybind11' 2025-07-17T06:39:57.5128907Z Entering 'third_party/python-peachpy' 2025-07-17T06:39:57.5685306Z Entering 'third_party/sleef' 2025-07-17T06:39:57.6249824Z Entering 'third_party/tensorpipe' 2025-07-17T06:39:57.6802485Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:39:57.7402939Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:39:57.8027584Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:39:57.8597716Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:39:57.9146471Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:39:57.9844995Z [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-07-17T06:39:58.3646556Z Entering 'android/libs/fbjni' 2025-07-17T06:39:58.4192839Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-07-17T06:39:58.4345278Z Entering 'third_party/FP16' 2025-07-17T06:39:58.4859803Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-07-17T06:39:58.4994637Z Entering 'third_party/FXdiv' 2025-07-17T06:39:58.5510907Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-07-17T06:39:58.5651590Z Entering 'third_party/NNPACK' 2025-07-17T06:39:58.6217648Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-07-17T06:39:58.6351428Z Entering 'third_party/NVTX' 2025-07-17T06:39:58.6875204Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-07-17T06:39:58.7010913Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:39:58.7529638Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-07-17T06:39:58.7669566Z Entering 'third_party/XNNPACK' 2025-07-17T06:39:58.8225045Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-07-17T06:39:58.8381033Z Entering 'third_party/aiter' 2025-07-17T06:39:58.8905523Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-07-17T06:39:58.9027627Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:39:58.9607956Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-07-17T06:39:58.9820924Z Entering 'third_party/benchmark' 2025-07-17T06:39:59.0340333Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-07-17T06:39:59.0479508Z Entering 'third_party/composable_kernel' 2025-07-17T06:39:59.1002077Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-07-17T06:39:59.1150243Z Entering 'third_party/cpp-httplib' 2025-07-17T06:39:59.1690056Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-07-17T06:39:59.1834190Z Entering 'third_party/cpuinfo' 2025-07-17T06:39:59.2364191Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-07-17T06:39:59.2508543Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:39:59.3099474Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-07-17T06:39:59.3239386Z Entering 'third_party/cutlass' 2025-07-17T06:39:59.3773104Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-07-17T06:39:59.3915475Z Entering 'third_party/fbgemm' 2025-07-17T06:39:59.4432922Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-07-17T06:39:59.4558865Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:39:59.5086569Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-07-17T06:39:59.5248957Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:39:59.5785935Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-07-17T06:39:59.5926954Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:39:59.6466011Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-07-17T06:39:59.6605627Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:39:59.7151663Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-07-17T06:39:59.7300335Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:39:59.7823301Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-07-17T06:39:59.7957446Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:39:59.8493755Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-07-17T06:39:59.8630669Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:39:59.9161323Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-07-17T06:39:59.9317597Z Entering 'third_party/flash-attention' 2025-07-17T06:40:00.4957608Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-07-17T06:40:00.5085317Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:40:00.5645711Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-07-17T06:40:00.5811621Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:40:00.6342033Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-07-17T06:40:00.6505968Z Entering 'third_party/flatbuffers' 2025-07-17T06:40:00.7403799Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-07-17T06:40:00.7544838Z Entering 'third_party/fmt' 2025-07-17T06:40:00.8064138Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-07-17T06:40:00.8203598Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:40:00.8735437Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-07-17T06:40:00.8869738Z Entering 'third_party/gloo' 2025-07-17T06:40:00.9394420Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-07-17T06:40:00.9527093Z Entering 'third_party/googletest' 2025-07-17T06:40:01.0086810Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:40:01.0225790Z Entering 'third_party/ideep' 2025-07-17T06:40:01.0748515Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-07-17T06:40:01.0890802Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:40:01.1435101Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-07-17T06:40:01.1592429Z Entering 'third_party/ittapi' 2025-07-17T06:40:01.2113244Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-07-17T06:40:01.2249194Z Entering 'third_party/kineto' 2025-07-17T06:40:01.2785303Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-07-17T06:40:01.2908556Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:40:01.3468756Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-07-17T06:40:01.3592202Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:40:01.4136905Z 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-07-17T06:40:01.4280454Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:40:01.4855178Z 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-07-17T06:40:01.4992449Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:40:01.5585955Z 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-07-17T06:40:01.5730952Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:40:01.6277193Z 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-07-17T06:40:01.6406081Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:40:01.6985548Z 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-07-17T06:40:01.7140659Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:40:01.7679954Z 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-07-17T06:40:01.7817086Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:40:01.8363532Z 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-07-17T06:40:01.8512679Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:40:01.9079482Z 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-07-17T06:40:01.9224803Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:40:01.9790287Z 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-07-17T06:40:01.9961858Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:40:02.0537843Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-07-17T06:40:02.0676624Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:40:02.1289496Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-07-17T06:40:02.1449125Z Entering 'third_party/kleidiai' 2025-07-17T06:40:02.2000167Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-07-17T06:40:02.2141792Z Entering 'third_party/mimalloc' 2025-07-17T06:40:02.2670200Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-07-17T06:40:02.2808399Z Entering 'third_party/nlohmann' 2025-07-17T06:40:02.3339916Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-07-17T06:40:02.3477972Z Entering 'third_party/onnx' 2025-07-17T06:40:02.4020310Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-07-17T06:40:02.4164275Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:40:02.4750783Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-07-17T06:40:02.4915795Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:40:02.5448021Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-07-17T06:40:02.5574082Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:40:02.6118294Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-07-17T06:40:02.6259971Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:40:02.6834135Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:40:02.6973975Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:40:02.7763024Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-07-17T06:40:02.7906551Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:40:02.8449768Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-07-17T06:40:02.8587044Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:40:02.9121907Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-07-17T06:40:02.9258406Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:40:02.9803053Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-07-17T06:40:02.9945990Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:40:03.0508864Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-07-17T06:40:03.0632199Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:40:03.1209960Z 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-07-17T06:40:03.1350769Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:40:03.1880365Z 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-07-17T06:40:03.2036403Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:40:03.2581942Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-07-17T06:40:03.2760212Z Entering 'third_party/pocketfft' 2025-07-17T06:40:03.3295096Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-07-17T06:40:03.3434147Z Entering 'third_party/protobuf' 2025-07-17T06:40:03.4115929Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-07-17T06:40:03.4246158Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:40:03.4787801Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-07-17T06:40:03.4932978Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:40:03.5477118Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:40:03.5632055Z Entering 'third_party/psimd' 2025-07-17T06:40:03.6180630Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-07-17T06:40:03.6337220Z Entering 'third_party/pthreadpool' 2025-07-17T06:40:03.6874926Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-07-17T06:40:03.7008383Z Entering 'third_party/pybind11' 2025-07-17T06:40:03.7583489Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-07-17T06:40:03.7725428Z Entering 'third_party/python-peachpy' 2025-07-17T06:40:03.8258139Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-07-17T06:40:03.8394689Z Entering 'third_party/sleef' 2025-07-17T06:40:03.8946487Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-07-17T06:40:03.9087222Z Entering 'third_party/tensorpipe' 2025-07-17T06:40:03.9677780Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-07-17T06:40:03.9811228Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:40:04.0380404Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-07-17T06:40:04.0523437Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:40:04.1058532Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-07-17T06:40:04.1194543Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:40:04.1735181Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-07-17T06:40:04.1877640Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:40:04.2410557Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-07-17T06:40:04.2537289Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:40:04.3081595Z file:C:/actions-runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-07-17T06:40:04.3676639Z [command]"C:\Program Files\Git\cmd\git.exe" submodule foreach --recursive "git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:'" 2025-07-17T06:40:04.7489626Z Entering 'android/libs/fbjni' 2025-07-17T06:40:04.7869889Z Entering 'third_party/FP16' 2025-07-17T06:40:04.8301716Z Entering 'third_party/FXdiv' 2025-07-17T06:40:04.8690282Z Entering 'third_party/NNPACK' 2025-07-17T06:40:04.9092846Z Entering 'third_party/NVTX' 2025-07-17T06:40:04.9484796Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:40:04.9860295Z Entering 'third_party/XNNPACK' 2025-07-17T06:40:05.0261616Z Entering 'third_party/aiter' 2025-07-17T06:40:05.0650423Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:40:05.1074165Z Entering 'third_party/benchmark' 2025-07-17T06:40:05.1466293Z Entering 'third_party/composable_kernel' 2025-07-17T06:40:05.1853085Z Entering 'third_party/cpp-httplib' 2025-07-17T06:40:05.2239951Z Entering 'third_party/cpuinfo' 2025-07-17T06:40:05.2625352Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:40:05.2991978Z Entering 'third_party/cutlass' 2025-07-17T06:40:05.3371902Z Entering 'third_party/fbgemm' 2025-07-17T06:40:05.3741938Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:40:05.4133317Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:40:05.4555937Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:40:05.4921714Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:40:05.5301848Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:40:05.5686529Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:40:05.6056993Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:40:05.6437266Z Entering 'third_party/flash-attention' 2025-07-17T06:40:05.6852666Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:40:05.7244059Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:40:05.7653356Z Entering 'third_party/flatbuffers' 2025-07-17T06:40:05.8032554Z Entering 'third_party/fmt' 2025-07-17T06:40:05.8395327Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:40:05.8818829Z Entering 'third_party/gloo' 2025-07-17T06:40:05.9185898Z Entering 'third_party/googletest' 2025-07-17T06:40:05.9548754Z Entering 'third_party/ideep' 2025-07-17T06:40:05.9938582Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:40:06.0338805Z Entering 'third_party/ittapi' 2025-07-17T06:40:06.0713817Z Entering 'third_party/kineto' 2025-07-17T06:40:06.1070354Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:40:06.1441660Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:40:06.1838199Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:40:06.2226994Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:40:06.2609129Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:40:06.2990831Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:40:06.3404788Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:40:06.3778285Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:40:06.4176542Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:40:06.4553360Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:40:06.4989227Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:40:06.5359338Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:40:06.5790148Z Entering 'third_party/kleidiai' 2025-07-17T06:40:06.6179837Z Entering 'third_party/mimalloc' 2025-07-17T06:40:06.6578896Z Entering 'third_party/nlohmann' 2025-07-17T06:40:06.6958475Z Entering 'third_party/onnx' 2025-07-17T06:40:06.7349038Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:40:06.7753710Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:40:06.8114587Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:40:06.8511357Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:40:06.8913744Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:40:06.9311122Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:40:06.9686718Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:40:07.0048671Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:40:07.0425463Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:40:07.0785096Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:40:07.1189591Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:40:07.1585029Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:40:07.2018725Z Entering 'third_party/pocketfft' 2025-07-17T06:40:07.2409354Z Entering 'third_party/protobuf' 2025-07-17T06:40:07.2773537Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:40:07.3179019Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:40:07.3564573Z Entering 'third_party/psimd' 2025-07-17T06:40:07.3933163Z Entering 'third_party/pthreadpool' 2025-07-17T06:40:07.4332682Z Entering 'third_party/pybind11' 2025-07-17T06:40:07.4755528Z Entering 'third_party/python-peachpy' 2025-07-17T06:40:07.5154200Z Entering 'third_party/sleef' 2025-07-17T06:40:07.5532904Z Entering 'third_party/tensorpipe' 2025-07-17T06:40:07.5895917Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:40:07.6284623Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:40:07.6677833Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:40:07.7042946Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:40:07.7404942Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:40:07.7892175Z [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-07-17T06:40:08.1596148Z Entering 'android/libs/fbjni' 2025-07-17T06:40:08.1974585Z Entering 'third_party/FP16' 2025-07-17T06:40:08.2342969Z Entering 'third_party/FXdiv' 2025-07-17T06:40:08.2735456Z Entering 'third_party/NNPACK' 2025-07-17T06:40:08.3097652Z Entering 'third_party/NVTX' 2025-07-17T06:40:08.3468694Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-17T06:40:08.3859089Z Entering 'third_party/XNNPACK' 2025-07-17T06:40:08.4252201Z Entering 'third_party/aiter' 2025-07-17T06:40:08.4628817Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-17T06:40:08.5038506Z Entering 'third_party/benchmark' 2025-07-17T06:40:08.5411067Z Entering 'third_party/composable_kernel' 2025-07-17T06:40:08.5810595Z Entering 'third_party/cpp-httplib' 2025-07-17T06:40:08.6177535Z Entering 'third_party/cpuinfo' 2025-07-17T06:40:08.6574080Z Entering 'third_party/cudnn_frontend' 2025-07-17T06:40:08.6952756Z Entering 'third_party/cutlass' 2025-07-17T06:40:08.7345022Z Entering 'third_party/fbgemm' 2025-07-17T06:40:08.7696237Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-17T06:40:08.8067380Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-17T06:40:08.8470434Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-17T06:40:08.8849055Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-17T06:40:08.9237809Z Entering 'third_party/fbgemm/external/googletest' 2025-07-17T06:40:08.9625743Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-17T06:40:09.0050675Z Entering 'third_party/fbgemm/external/json' 2025-07-17T06:40:09.0443078Z Entering 'third_party/flash-attention' 2025-07-17T06:40:09.0805131Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-17T06:40:09.1391622Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-17T06:40:09.1797977Z Entering 'third_party/flatbuffers' 2025-07-17T06:40:09.2149397Z Entering 'third_party/fmt' 2025-07-17T06:40:09.2497873Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-17T06:40:09.2879849Z Entering 'third_party/gloo' 2025-07-17T06:40:09.3226648Z Entering 'third_party/googletest' 2025-07-17T06:40:09.3578516Z Entering 'third_party/ideep' 2025-07-17T06:40:09.3911585Z Entering 'third_party/ideep/mkl-dnn' 2025-07-17T06:40:09.4288657Z Entering 'third_party/ittapi' 2025-07-17T06:40:09.4637756Z Entering 'third_party/kineto' 2025-07-17T06:40:09.4971458Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-17T06:40:09.5327866Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-17T06:40:09.5706774Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-17T06:40:09.6096164Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-17T06:40:09.6487413Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-17T06:40:09.6836280Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-17T06:40:09.7214643Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-17T06:40:09.8217683Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-17T06:40:09.8570640Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-17T06:40:10.0270319Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-17T06:40:10.0662639Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-17T06:40:10.1062188Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-17T06:40:10.1456946Z Entering 'third_party/kleidiai' 2025-07-17T06:40:10.1824123Z Entering 'third_party/mimalloc' 2025-07-17T06:40:10.2180470Z Entering 'third_party/nlohmann' 2025-07-17T06:40:10.2551015Z Entering 'third_party/onnx' 2025-07-17T06:40:10.2977409Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-17T06:40:10.3384244Z Entering 'third_party/opentelemetry-cpp' 2025-07-17T06:40:10.3749555Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-17T06:40:10.4774661Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-17T06:40:10.5726686Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-17T06:40:10.6086703Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-17T06:40:10.6467868Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-17T06:40:10.7324226Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-17T06:40:10.8367438Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-17T06:40:10.8718889Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-17T06:40:10.9095559Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-17T06:40:10.9486831Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-17T06:40:10.9897607Z Entering 'third_party/pocketfft' 2025-07-17T06:40:11.0263284Z Entering 'third_party/protobuf' 2025-07-17T06:40:11.0673847Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-17T06:40:11.1096213Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-17T06:40:11.1517691Z Entering 'third_party/psimd' 2025-07-17T06:40:11.1894066Z Entering 'third_party/pthreadpool' 2025-07-17T06:40:11.2257085Z Entering 'third_party/pybind11' 2025-07-17T06:40:11.2630426Z Entering 'third_party/python-peachpy' 2025-07-17T06:40:11.3003022Z Entering 'third_party/sleef' 2025-07-17T06:40:11.3375664Z Entering 'third_party/tensorpipe' 2025-07-17T06:40:11.3743313Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-17T06:40:11.4138396Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-17T06:40:11.4555075Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-17T06:40:11.4927327Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-17T06:40:11.5281402Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-17T06:40:11.5769452Z ##[endgroup] 2025-07-17T06:40:11.6050624Z [command]"C:\Program Files\Git\cmd\git.exe" log -1 --format=%H 2025-07-17T06:40:11.6256004Z a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:40:11.6546188Z Prepare all required actions 2025-07-17T06:40:11.6609507Z ##[group]Run ./.github/actions/setup-win 2025-07-17T06:40:11.6609790Z with: 2025-07-17T06:40:11.6609966Z cuda-version: 12.6 2025-07-17T06:40:11.6610161Z env: 2025-07-17T06:40:11.6610332Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:11.6610547Z ##[endgroup] 2025-07-17T06:40:11.6679394Z ##[group]Run set -euo pipefail 2025-07-17T06:40:11.6679682Z set -euo pipefail 2025-07-17T06:40:11.6680078Z function get_ec2_metadata() { 2025-07-17T06:40:11.6680416Z  # Pulled from instance metadata endpoint for EC2 2025-07-17T06:40:11.6681001Z  # see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html 2025-07-17T06:40:11.6681533Z  category=$1 2025-07-17T06:40:11.6682379Z  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-07-17T06:40:11.6683379Z } 2025-07-17T06:40:11.6683628Z echo "ami-id: $(get_ec2_metadata ami-id)" 2025-07-17T06:40:11.6684013Z echo "instance-id: $(get_ec2_metadata instance-id)" 2025-07-17T06:40:11.6684434Z echo "instance-type: $(get_ec2_metadata instance-type)" 2025-07-17T06:40:11.6684809Z echo "system info $(uname -a)" 2025-07-17T06:40:11.6704287Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:11.6704723Z env: 2025-07-17T06:40:11.6704898Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:11.6705200Z ##[endgroup] 2025-07-17T06:40:11.7329705Z ami-id: ami-0d9ca55f96fe08fd6 2025-07-17T06:40:11.7843496Z instance-id: i-03ad2eed2849e5734 2025-07-17T06:40:11.8196314Z instance-type: c5d.4xlarge 2025-07-17T06:40:11.8377702Z system info MSYS_NT-10.0-17763 EC2AMAZ-IFQ8336 3.5.7-463ebcdc.x86_64 2025-03-03 17:26 UTC x86_64 Msys 2025-07-17T06:40:11.8520004Z ##[group]Run Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-07-17T06:40:11.8520929Z Set-ItemProperty -Path "HKLM:\\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 2025-07-17T06:40:11.8536892Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T06:40:11.8537335Z env: 2025-07-17T06:40:11.8537521Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:11.8537765Z ##[endgroup] 2025-07-17T06:40:12.2280978Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T06:40:12.2352146Z Finished 2025-07-17T06:40:12.2670714Z ##[group]Run # Windows conda is baked into the AMI at this location 2025-07-17T06:40:12.2671211Z # Windows conda is baked into the AMI at this location 2025-07-17T06:40:12.2671621Z CONDA="C:\Jenkins\Miniconda3\condabin\conda.bat" 2025-07-17T06:40:12.2671948Z  2025-07-17T06:40:12.2672132Z { 2025-07-17T06:40:12.2672399Z  echo "CONDA_RUN=${CONDA} run --no-capture-output"; 2025-07-17T06:40:12.2672782Z  echo "CONDA_BUILD=${CONDA} run conda-build"; 2025-07-17T06:40:12.2673136Z  echo "CONDA_INSTALL=${CONDA} install"; 2025-07-17T06:40:12.2673434Z } >> "${GITHUB_ENV}" 2025-07-17T06:40:12.2691911Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:12.2692335Z env: 2025-07-17T06:40:12.2692557Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:12.2692780Z ##[endgroup] 2025-07-17T06:40:12.2959827Z ##[group]Run set +e 2025-07-17T06:40:12.2960084Z set +e 2025-07-17T06:40:12.2960289Z set -x 2025-07-17T06:40:12.2960471Z  2025-07-17T06:40:12.2960703Z PYTHON3=$(${CONDA_RUN} which python3) 2025-07-17T06:40:12.2961002Z EXIT_CODE=$? 2025-07-17T06:40:12.2961211Z  2025-07-17T06:40:12.2972512Z if [[ "${EXIT_CODE}" == "0" ]]; then 2025-07-17T06:40:12.2972947Z  echo "Found Python3 at ${PYTHON3}, adding it into GITHUB_PATH" 2025-07-17T06:40:12.2973316Z  2025-07-17T06:40:12.2973531Z  PYTHON_PATH=$(dirname "${PYTHON3}") 2025-07-17T06:40:12.2973849Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-07-17T06:40:12.2974134Z else 2025-07-17T06:40:12.2974551Z  # According to https://docs.conda.io/en/latest/miniconda.html, we are using the Miniconda3 2025-07-17T06:40:12.2975394Z  # installation, which is Python 3 based. Its Python is default to Python 3. Further, there 2025-07-17T06:40:12.2976053Z  # is also the Miniconda installation that is Python 2 based, and both can be installed if 2025-07-17T06:40:12.2976604Z  # needed. In both cases, Python binary is just called python 2025-07-17T06:40:12.2976990Z  PYTHON=$(${CONDA_RUN} which python) 2025-07-17T06:40:12.2977267Z  EXIT_CODE=$? 2025-07-17T06:40:12.2977490Z  2025-07-17T06:40:12.2977677Z  if [[ "${EXIT_CODE}" == "0" ]]; then 2025-07-17T06:40:12.2978114Z  echo "Found Python at ${PYTHON}, set Python3 alias and add it into GITHUB_PATH" 2025-07-17T06:40:12.2978523Z  2025-07-17T06:40:12.2978767Z  PYTHON3=$(echo "${PYTHON}" | sed "s/python/python3/") 2025-07-17T06:40:12.2979269Z  # It's difficult to setup alias across GitHub action steps, so I just add a softlink 2025-07-17T06:40:12.2979712Z  # here pointing to Python 2025-07-17T06:40:12.2979996Z  ln -s "${PYTHON}" "${PYTHON3}" 2025-07-17T06:40:12.2980253Z  2025-07-17T06:40:12.2980449Z  PYTHON_PATH=$(dirname "${PYTHON}") 2025-07-17T06:40:12.2980782Z  echo "${PYTHON_PATH}" >> "${GITHUB_PATH}" 2025-07-17T06:40:12.2981057Z  else 2025-07-17T06:40:12.2981289Z  echo "Found no Python using ${CONDA_RUN}" 2025-07-17T06:40:12.2981581Z  fi 2025-07-17T06:40:12.2981757Z fi 2025-07-17T06:40:12.3001296Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:12.3001721Z env: 2025-07-17T06:40:12.3001889Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:12.3002258Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:12.3002762Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:12.3003263Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:12.3003598Z ##[endgroup] 2025-07-17T06:40:12.3237502Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python3 2025-07-17T06:40:20.0593535Z 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-07-17T06:40:20.0620020Z ERROR conda.cli.main_run:execute(49): `conda run which python3` failed. (See above for error) 2025-07-17T06:40:20.1280375Z + PYTHON3= 2025-07-17T06:40:20.1280606Z + EXIT_CODE=1 2025-07-17T06:40:20.1280948Z + [[ 1 == \0 ]] 2025-07-17T06:40:20.1354016Z ++ 'C:\Jenkins\Miniconda3\condabin\conda.bat' run --no-capture-output which python 2025-07-17T06:40:21.7953605Z + PYTHON=/c/Jenkins/Miniconda3/python 2025-07-17T06:40:21.7953944Z + EXIT_CODE=0 2025-07-17T06:40:21.7954119Z + [[ 0 == \0 ]] 2025-07-17T06:40:21.7954545Z + echo 'Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH' 2025-07-17T06:40:21.7956077Z Found Python at /c/Jenkins/Miniconda3/python, set Python3 alias and add it into GITHUB_PATH 2025-07-17T06:40:21.8072914Z ++ echo /c/Jenkins/Miniconda3/python 2025-07-17T06:40:21.8135717Z ++ sed s/python/python3/ 2025-07-17T06:40:21.8317997Z + PYTHON3=/c/Jenkins/Miniconda3/python3 2025-07-17T06:40:21.8318441Z + ln -s /c/Jenkins/Miniconda3/python /c/Jenkins/Miniconda3/python3 2025-07-17T06:40:21.8498559Z ++ dirname /c/Jenkins/Miniconda3/python 2025-07-17T06:40:21.8570683Z + PYTHON_PATH=/c/Jenkins/Miniconda3 2025-07-17T06:40:21.8571070Z + echo /c/Jenkins/Miniconda3 2025-07-17T06:40:21.8678865Z ##[group]Run TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-07-17T06:40:21.8679475Z TMPDIR=$(python -c 'import tempfile; print(tempfile.gettempdir());') 2025-07-17T06:40:21.8679931Z echo "TMPDIR=${TMPDIR}" >> "${GITHUB_ENV}" 2025-07-17T06:40:21.8700907Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:21.8701349Z env: 2025-07-17T06:40:21.8701545Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:21.8701926Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:21.8702438Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:21.8702917Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:21.8703267Z ##[endgroup] 2025-07-17T06:40:21.9559236Z ##[group]Run Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-07-17T06:40:21.9560220Z Add-MpPreference -ExclusionPath $(Get-Location).tostring(),$Env:TMPDIR,"C:\Jenkins\Miniconda3" -ErrorAction Ignore 2025-07-17T06:40:21.9560980Z # Let's both exclude the path and disable Windows Defender completely just to be sure 2025-07-17T06:40:21.9561432Z # that it doesn't interfere 2025-07-17T06:40:21.9561874Z Set-MpPreference -DisableRealtimeMonitoring $True -ErrorAction Ignore 2025-07-17T06:40:21.9577648Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T06:40:21.9578091Z env: 2025-07-17T06:40:21.9578270Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:21.9578639Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:21.9579141Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:21.9579605Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:21.9580007Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:21.9580285Z ##[endgroup] 2025-07-17T06:40:22.3158464Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T06:40:22.3215359Z Finished 2025-07-17T06:40:23.2677095Z ##[group]Run choco install handle -y 2025-07-17T06:40:23.2677459Z choco install handle -y 2025-07-17T06:40:23.2677862Z handle C:\actions-runner\_work\ 2025-07-17T06:40:23.2694726Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T06:40:23.2695219Z env: 2025-07-17T06:40:23.2695459Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:23.2695876Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:23.2696439Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:23.2696996Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:23.2697452Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:23.2697784Z ##[endgroup] 2025-07-17T06:40:23.6158384Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T06:40:23.6212664Z Finished 2025-07-17T06:40:25.6020715Z Chocolatey v2.4.3 2025-07-17T06:40:25.7620502Z Installing the following packages: 2025-07-17T06:40:25.7625371Z handle 2025-07-17T06:40:25.7629281Z By installing, you accept licenses for the packages. 2025-07-17T06:40:26.9020734Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-17T06:40:27.0216484Z 2025-07-17T06:40:27.0217133Z Progress: Downloading Handle 5.0... 15% 2025-07-17T06:40:27.0217476Z Progress: Downloading Handle 5.0... 45% 2025-07-17T06:40:27.0217779Z Progress: Downloading Handle 5.0... 75% 2025-07-17T06:40:27.0218063Z Progress: Downloading Handle 5.0... 100% 2025-07-17T06:40:27.2616895Z 2025-07-17T06:40:27.2617275Z handle v5.0.0 [Approved] 2025-07-17T06:40:27.2816361Z handle package files install completed. Performing other installation steps. 2025-07-17T06:40:28.4750484Z Downloading Handle 2025-07-17T06:40:28.4750864Z from 'https://download.sysinternals.com/files/Handle.zip' 2025-07-17T06:40:28.5654650Z 2025-07-17T06:40:28.5673131Z Progress: 19% - Saving 143.51 KB of 729.82 KB 2025-07-17T06:40:28.5688197Z Progress: 41% - Saving 303.51 KB of 729.82 KB 2025-07-17T06:40:28.5703638Z Progress: 63% - Saving 463.51 KB of 729.82 KB 2025-07-17T06:40:28.5721788Z Progress: 85% - Saving 623.51 KB of 729.82 KB 2025-07-17T06:40:28.5725644Z Progress: 100% - Completed download of C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip (729.82 KB). 2025-07-17T06:40:28.5733147Z Download of Handle.zip (729.82 KB) completed. 2025-07-17T06:40:31.7028984Z Hashes match. 2025-07-17T06:40:31.7287680Z Extracting C:\Users\runneruser\AppData\Local\Temp\chocolatey\Handle\5.0.0\Handle.zip to C:\ProgramData\chocolatey\lib\Handle\tools... 2025-07-17T06:40:32.0242731Z C:\ProgramData\chocolatey\lib\Handle\tools 2025-07-17T06:40:32.0293161Z HKEY_CURRENT_USER\Software\Sysinternals 2025-07-17T06:40:32.0323296Z HKEY_CURRENT_USER\Software\Sysinternals\Handle 2025-07-17T06:40:32.4646057Z ShimGen has successfully created a shim for handle.exe 2025-07-17T06:40:32.6473920Z ShimGen has successfully created a shim for handle64.exe 2025-07-17T06:40:32.8142537Z ShimGen has successfully created a shim for handle64a.exe 2025-07-17T06:40:32.8405712Z The install of handle was successful. 2025-07-17T06:40:32.8408624Z Deployed to 'C:\ProgramData\chocolatey\lib\Handle\tools' 2025-07-17T06:40:32.8516701Z 2025-07-17T06:40:32.8516827Z Chocolatey installed 1/1 packages. 2025-07-17T06:40:32.8517245Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-17T06:40:32.9726851Z 2025-07-17T06:40:32.9727255Z Nthandle v5.0 - Handle viewer 2025-07-17T06:40:32.9727592Z Copyright (C) 1997-2022 Mark Russinovich 2025-07-17T06:40:32.9727922Z Sysinternals - www.sysinternals.com 2025-07-17T06:40:32.9728117Z 2025-07-17T06:40:33.0730317Z powershell.exe pid: 5220 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:40:33.0730959Z handle.exe pid: 5288 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:40:33.0731504Z handle.exe pid: 1324 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:40:33.0732078Z handle64.exe pid: 5904 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:40:33.1038326Z ##[group]Run python3 .github/scripts/parse_ref.py 2025-07-17T06:40:33.1038729Z python3 .github/scripts/parse_ref.py 2025-07-17T06:40:33.1057945Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:33.1058361Z env: 2025-07-17T06:40:33.1058548Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:33.1058982Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:33.1059552Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:33.1060020Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:33.1060403Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:33.1060684Z ##[endgroup] 2025-07-17T06:40:33.1686834Z Setting output branch=main 2025-07-17T06:40:33.1842756Z Prepare all required actions 2025-07-17T06:40:33.1877745Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-07-17T06:40:33.1878044Z with: 2025-07-17T06:40:33.1878650Z github-token: *** 2025-07-17T06:40:33.1878845Z env: 2025-07-17T06:40:33.1879011Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:33.1879386Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:33.1879891Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:33.1880362Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:33.1880996Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:33.1881329Z ##[endgroup] 2025-07-17T06:40:33.1953746Z ##[group]Run set -eux 2025-07-17T06:40:33.1953981Z set -eux 2025-07-17T06:40:33.1954366Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-07-17T06:40:33.1972710Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:33.1973130Z env: 2025-07-17T06:40:33.1973320Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:33.1973678Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:33.1974196Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:33.1974656Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:33.1975043Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:33.1975518Z GITHUB_TOKEN: *** 2025-07-17T06:40:33.1975704Z ##[endgroup] 2025-07-17T06:40:33.2153999Z + python3 .github/scripts/get_workflow_job_id.py 16337959945 i-03ad2eed2849e5734 2025-07-17T06:40:33.7123158Z Setting output job-id=46153715429 2025-07-17T06:40:33.7123554Z Setting output job-name=win-vs2022-cuda12.6-py3 / build 2025-07-17T06:40:33.7453631Z Prepare all required actions 2025-07-17T06:40:33.7454032Z Getting action download info 2025-07-17T06:40:33.8723567Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-07-17T06:40:34.0665683Z ##[group]Run ./.github/actions/filter-test-configs 2025-07-17T06:40:34.0665995Z with: 2025-07-17T06:40:34.0666373Z github-token: *** 2025-07-17T06:40:34.0666607Z job-name: win-vs2022-cuda12.6-py3 / build 2025-07-17T06:40:34.0666883Z env: 2025-07-17T06:40:34.0667061Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:34.0667424Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:34.0667940Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:34.0668415Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:34.0668800Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:34.0669080Z ##[endgroup] 2025-07-17T06:40:34.0759326Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-17T06:40:34.0759589Z with: 2025-07-17T06:40:34.0759755Z shell: bash 2025-07-17T06:40:34.0760006Z timeout_minutes: 10 2025-07-17T06:40:34.0760214Z max_attempts: 5 2025-07-17T06:40:34.0760449Z retry_wait_seconds: 30 2025-07-17T06:40:34.0761182Z 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-07-17T06:40:34.0761960Z polling_interval_seconds: 1 2025-07-17T06:40:34.0762200Z warning_on_retry: true 2025-07-17T06:40:34.0762424Z continue_on_error: false 2025-07-17T06:40:34.0762628Z env: 2025-07-17T06:40:34.0762804Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:34.0763173Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:34.0763691Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:34.0764163Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:34.0764541Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:34.0764998Z GITHUB_TOKEN: *** 2025-07-17T06:40:34.0765184Z ##[endgroup] 2025-07-17T06:40:34.2107962Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-17T06:40:37.3108288Z Collecting requests==2.27.1 2025-07-17T06:40:37.4961564Z Downloading requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-07-17T06:40:37.5972068Z Collecting pyyaml==6.0.1 2025-07-17T06:40:37.6022654Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl.metadata (2.1 kB) 2025-07-17T06:40:37.6215383Z 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-07-17T06:40:37.6221861Z Requirement already satisfied: certifi>=2017.4.17 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2025.4.26) 2025-07-17T06:40:37.6233826Z Requirement already satisfied: charset-normalizer~=2.0.0 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (2.0.4) 2025-07-17T06:40:37.6247664Z Requirement already satisfied: idna<4,>=2.5 in c:\jenkins\miniconda3\lib\site-packages (from requests==2.27.1) (3.7) 2025-07-17T06:40:37.6863227Z Downloading requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-07-17T06:40:37.7686069Z ---------------------------------------- 63.1/63.1 kB 678.1 kB/s eta 0:00:00 2025-07-17T06:40:37.7731355Z Downloading PyYAML-6.0.1-cp39-cp39-win_amd64.whl (152 kB) 2025-07-17T06:40:38.0832347Z -------------------------------------- 152.8/152.8 kB 481.5 kB/s eta 0:00:00 2025-07-17T06:40:39.4901294Z Installing collected packages: requests, pyyaml 2025-07-17T06:40:39.4902756Z Attempting uninstall: requests 2025-07-17T06:40:39.4913070Z Found existing installation: requests 2.32.3 2025-07-17T06:40:39.8235073Z Uninstalling requests-2.32.3: 2025-07-17T06:40:39.8257335Z Successfully uninstalled requests-2.32.3 2025-07-17T06:40:40.2909381Z Attempting uninstall: pyyaml 2025-07-17T06:40:40.2915417Z Found existing installation: PyYAML 6.0.2 2025-07-17T06:40:40.2991434Z Uninstalling PyYAML-6.0.2: 2025-07-17T06:40:40.3018896Z Successfully uninstalled PyYAML-6.0.2 2025-07-17T06:40:40.4053050Z Successfully installed pyyaml-6.0.1 requests-2.27.1 2025-07-17T06:40:41.2107589Z Command completed after 1 attempt(s). 2025-07-17T06:40:41.2254910Z ##[group]Run set -x 2025-07-17T06:40:41.2255146Z set -x 2025-07-17T06:40:41.2255329Z  2025-07-17T06:40:41.2255670Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-17T06:40:41.2256109Z # in runner workspace 2025-07-17T06:40:41.2256442Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-07-17T06:40:41.2275242Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:41.2275671Z env: 2025-07-17T06:40:41.2275945Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:41.2276346Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:41.2276856Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:41.2277383Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:41.2277818Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:41.2278099Z ##[endgroup] 2025-07-17T06:40:41.2473849Z + python3 'C:\actions-runner\_work\pytorch\pytorch\./.github/actions/filter-test-configs/../../scripts/parse_ref.py' 2025-07-17T06:40:41.2892855Z Setting output branch=main 2025-07-17T06:40:41.3054772Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-17T06:40:41.3055117Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-17T06:40:41.3055447Z echo "Job name: ${JOB_NAME}" 2025-07-17T06:40:41.3055707Z  2025-07-17T06:40:41.3056033Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-17T06:40:41.3056475Z # in runner workspace 2025-07-17T06:40:41.3056858Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-07-17T06:40:41.3057304Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-07-17T06:40:41.3057588Z  --job-name "${JOB_NAME}" \ 2025-07-17T06:40:41.3057854Z  --test-matrix "" \ 2025-07-17T06:40:41.3058114Z  --selected-test-configs "" \ 2025-07-17T06:40:41.3058401Z  --pr-number "${PR_NUMBER}" \ 2025-07-17T06:40:41.3058668Z  --tag "${TAG}" \ 2025-07-17T06:40:41.3058909Z  --event-name "${EVENT_NAME}" \ 2025-07-17T06:40:41.3059186Z  --schedule "${SCHEDULE}" \ 2025-07-17T06:40:41.3059445Z  --branch "${HEAD_BRANCH}" 2025-07-17T06:40:41.3081763Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:41.3083358Z env: 2025-07-17T06:40:41.3083548Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:41.3083924Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:41.3084441Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:41.3084908Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:41.3085298Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:41.3085834Z GITHUB_TOKEN: *** 2025-07-17T06:40:41.3086054Z JOB_NAME: win-vs2022-cuda12.6-py3 / build 2025-07-17T06:40:41.3086327Z PR_NUMBER: 2025-07-17T06:40:41.3086496Z TAG: 2025-07-17T06:40:41.3086661Z EVENT_NAME: push 2025-07-17T06:40:41.3086846Z SCHEDULE: 2025-07-17T06:40:41.3087017Z HEAD_BRANCH: main 2025-07-17T06:40:41.3087198Z ##[endgroup] 2025-07-17T06:40:41.3279253Z Workflow: trunk 2025-07-17T06:40:41.3280141Z Job name: win-vs2022-cuda12.6-py3 / build 2025-07-17T06:40:41.4460535Z C:\actions-runner\_work\pytorch\pytorch\.github\scripts\filter_test_configs.py:565: UserWarning: Invalid test matrix input '', exiting 2025-07-17T06:40:41.4463053Z warnings.warn(f"Invalid test matrix input '{args.test_matrix}', exiting") 2025-07-17T06:40:41.4463537Z Setting output is-test-matrix-empty=True 2025-07-17T06:40:41.4665445Z ##[group]Run echo "Filtered matrix:" 2025-07-17T06:40:41.4665751Z echo "Filtered matrix:" 2025-07-17T06:40:41.4665991Z echo "" 2025-07-17T06:40:41.4666170Z  2025-07-17T06:40:41.4666344Z echo 2025-07-17T06:40:41.4666551Z echo "Is the current job unstable? " 2025-07-17T06:40:41.4666836Z  2025-07-17T06:40:41.4666990Z echo 2025-07-17T06:40:41.4667197Z echo "Is keep-going label set? " 2025-07-17T06:40:41.4667457Z  2025-07-17T06:40:41.4667633Z echo 2025-07-17T06:40:41.4667817Z echo "Reenabled issues? " 2025-07-17T06:40:41.4686902Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:41.4687316Z env: 2025-07-17T06:40:41.4687514Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:41.4687875Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:41.4688384Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:41.4688854Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:41.4689234Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:41.4689517Z ##[endgroup] 2025-07-17T06:40:41.4869891Z Filtered matrix: 2025-07-17T06:40:41.4870053Z 2025-07-17T06:40:41.4870058Z 2025-07-17T06:40:41.4870151Z Is the current job unstable? 2025-07-17T06:40:41.4870320Z 2025-07-17T06:40:41.4870413Z Is keep-going label set? 2025-07-17T06:40:41.4870575Z 2025-07-17T06:40:41.4870737Z Reenabled issues? 2025-07-17T06:40:41.4980213Z Prepare all required actions 2025-07-17T06:40:41.4980587Z Getting action download info 2025-07-17T06:40:41.6163714Z ##[group]Run ./.github/actions/pytest-cache-download 2025-07-17T06:40:41.6164023Z with: 2025-07-17T06:40:41.6164212Z cache_dir: .pytest_cache 2025-07-17T06:40:41.6164472Z job_identifier: trunk_win-vs2022-cuda12.6-py3 2025-07-17T06:40:41.6164785Z s3_bucket: gha-artifacts 2025-07-17T06:40:41.6164990Z env: 2025-07-17T06:40:41.6165167Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:41.6165522Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:41.6166049Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:41.6166517Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:41.6166900Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:41.6167190Z ##[endgroup] 2025-07-17T06:40:41.6264910Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-17T06:40:41.6265385Z with: 2025-07-17T06:40:41.6265556Z shell: bash 2025-07-17T06:40:41.6265742Z timeout_minutes: 5 2025-07-17T06:40:41.6265937Z max_attempts: 5 2025-07-17T06:40:41.6266132Z retry_wait_seconds: 30 2025-07-17T06:40:41.6266410Z command: set -eu python3 -m pip install boto3==1.35.42 2025-07-17T06:40:41.6266753Z polling_interval_seconds: 1 2025-07-17T06:40:41.6266998Z warning_on_retry: true 2025-07-17T06:40:41.6267890Z continue_on_error: false 2025-07-17T06:40:41.6268514Z env: 2025-07-17T06:40:41.6268688Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:41.6269053Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:41.6269560Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:41.6270032Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:41.6270425Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:41.6270704Z ##[endgroup] 2025-07-17T06:40:43.1470835Z Collecting boto3==1.35.42 2025-07-17T06:40:43.3350071Z Downloading boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-07-17T06:40:44.0516855Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42) 2025-07-17T06:40:44.0564645Z Downloading botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-07-17T06:40:44.0631374Z 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-07-17T06:40:44.0891427Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42) 2025-07-17T06:40:44.0935627Z Downloading s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-07-17T06:40:44.1086289Z 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-07-17T06:40:44.1098181Z 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-07-17T06:40:44.2935354Z Requirement already satisfied: six>=1.5 in c:\jenkins\miniconda3\lib\site-packages (from python-dateutil<3.0.0,>=2.1->botocore<1.36.0,>=1.35.42->boto3==1.35.42) (1.17.0) 2025-07-17T06:40:44.3186073Z Downloading boto3-1.35.42-py3-none-any.whl (139 kB) 2025-07-17T06:40:44.4129274Z ---------------------------------------- 139.2/139.2 kB 2.0 MB/s eta 0:00:00 2025-07-17T06:40:44.4174157Z Downloading botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-07-17T06:40:44.5361531Z ---------------------------------------- 13.3/13.3 MB 129.4 MB/s eta 0:00:00 2025-07-17T06:40:44.5409034Z Downloading s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-07-17T06:40:44.5503249Z ---------------------------------------- 83.2/83.2 kB ? eta 0:00:00 2025-07-17T06:40:45.4340896Z Installing collected packages: botocore, s3transfer, boto3 2025-07-17T06:40:45.4342224Z Attempting uninstall: botocore 2025-07-17T06:40:45.4351604Z Found existing installation: botocore 1.37.10 2025-07-17T06:40:45.6377558Z Uninstalling botocore-1.37.10: 2025-07-17T06:40:45.7184108Z Successfully uninstalled botocore-1.37.10 2025-07-17T06:40:48.2578470Z Attempting uninstall: s3transfer 2025-07-17T06:40:48.2587993Z Found existing installation: s3transfer 0.11.2 2025-07-17T06:40:48.2658869Z Uninstalling s3transfer-0.11.2: 2025-07-17T06:40:48.2681418Z Successfully uninstalled s3transfer-0.11.2 2025-07-17T06:40:48.3603030Z Attempting uninstall: boto3 2025-07-17T06:40:48.3610588Z Found existing installation: boto3 1.37.10 2025-07-17T06:40:48.6238747Z Uninstalling boto3-1.37.10: 2025-07-17T06:40:48.6303779Z Successfully uninstalled boto3-1.37.10 2025-07-17T06:40:49.0701394Z Successfully installed boto3-1.35.42 botocore-1.35.99 s3transfer-0.10.4 2025-07-17T06:40:49.7562253Z Command completed after 1 attempt(s). 2025-07-17T06:40:49.7717145Z ##[group]Run python3 .github/scripts/pytest_cache.py \ 2025-07-17T06:40:49.7717566Z python3 .github/scripts/pytest_cache.py \ 2025-07-17T06:40:49.7718034Z  --download \ 2025-07-17T06:40:49.7718304Z  --cache_dir $GITHUB_WORKSPACE/$CACHE_DIR \ 2025-07-17T06:40:49.7718635Z  --pr_identifier $GITHUB_REF \ 2025-07-17T06:40:49.7718936Z  --job_identifier $JOB_IDENTIFIER \ 2025-07-17T06:40:49.7719242Z  --temp_dir $RUNNER_TEMP \ 2025-07-17T06:40:49.7719500Z  --repo $REPO \ 2025-07-17T06:40:49.7719729Z  --bucket $BUCKET \ 2025-07-17T06:40:49.7738117Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:49.7738554Z env: 2025-07-17T06:40:49.7738729Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:49.7739102Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:49.7739607Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:49.7740078Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:49.7740502Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:49.7740788Z CACHE_DIR: .pytest_cache 2025-07-17T06:40:49.7741055Z JOB_IDENTIFIER: trunk_win-vs2022-cuda12.6-py3 2025-07-17T06:40:49.7741348Z REPO: pytorch/pytorch 2025-07-17T06:40:49.7741560Z BUCKET: gha-artifacts 2025-07-17T06:40:49.7741758Z ##[endgroup] 2025-07-17T06:40:50.9262057Z PR identifier for `refs/heads/main` is `96e092540d6b3c4076e3d2bc6f1f9013` 2025-07-17T06:40:50.9263625Z Downloading cache with args Namespace(upload=False, download=True, cache_dir='C:\\actions-runner\\_work\\pytorch\\pytorch/.pytest_cache', pr_identifier='refs/heads/main', job_identifier='trunk_win-vs2022-cuda12.6-py3', sha=None, test_config=None, shard=None, repo='pytorch/pytorch', temp_dir='C:\\actions-runner\\_work\\_temp', bucket='gha-artifacts') 2025-07-17T06:40:50.9265533Z There were no files matching the prefix `pytest_cache/pytorch/pytorch/96e092540d6b3c4076e3d2bc6f1f9013/trunk_win-vs2022-cuda12_6-py3` in bucket `gha-artifacts` 2025-07-17T06:40:50.9980918Z ##[group]Run .ci/pytorch/win-build.sh 2025-07-17T06:40:50.9981256Z .ci/pytorch/win-build.sh 2025-07-17T06:40:50.9999536Z shell: C:\Program Files\Git\usr\bin\bash.EXE --noprofile --norc -e -o pipefail {0} 2025-07-17T06:40:50.9999966Z env: 2025-07-17T06:40:51.0000145Z GIT_DEFAULT_BRANCH: main 2025-07-17T06:40:51.0000519Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:40:51.0001025Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:40:51.0001505Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:40:51.0001889Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:40:51.0002254Z PYTORCH_FINAL_PACKAGE_DIR: /c/16337959945/build-results/ 2025-07-17T06:40:51.0002579Z BRANCH: main 2025-07-17T06:40:51.0002795Z BUILD_ENVIRONMENT: win-vs2022-cuda12.6-py3 2025-07-17T06:40:51.0003073Z BUILD_WHEEL: 1 2025-07-17T06:40:51.0003265Z MAX_JOBS: 8 2025-07-17T06:40:51.0003487Z CUDA_VERSION: 12.6 2025-07-17T06:40:51.0003683Z PYTHON_VERSION: 3.9 2025-07-17T06:40:51.0003921Z SCCACHE_BUCKET: ossci-compiler-cache 2025-07-17T06:40:51.0004194Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-17T06:40:51.0004443Z SCCACHE_REGION: us-east-1 2025-07-17T06:40:51.0004664Z VC_PRODUCT: BuildTools 2025-07-17T06:40:51.0004876Z VC_VERSION: 2025-07-17T06:40:51.0005053Z VC_YEAR: 2022 2025-07-17T06:40:51.0005368Z ALPINE_IMAGE: 308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-07-17T06:40:51.0005764Z AWS_DEFAULT_REGION: us-east-1 2025-07-17T06:40:51.0006006Z PR_NUMBER: 2025-07-17T06:40:51.0006232Z SHA1: a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:40:51.0006513Z DEBUG: 0 2025-07-17T06:40:51.0006690Z TORCH_CUDA_ARCH_LIST: 8.6 2025-07-17T06:40:51.0006905Z USE_CUDA: 1 2025-07-17T06:40:51.0007083Z USE_XPU: 0 2025-07-17T06:40:51.0007246Z XPU_VERSION: 2025-07-17T06:40:51.0007444Z OUR_GITHUB_JOB_ID: 46153715429 2025-07-17T06:40:51.0007912Z ##[endgroup] 2025-07-17T06:40:51.0704496Z ++ [[ win-vs2022-cuda12.6-py3 == *rocm* ]] 2025-07-17T06:40:51.0704829Z ++ BUILD_TEST_LIBTORCH=0 2025-07-17T06:40:51.0705198Z + source /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/common-build.sh 2025-07-17T06:40:51.0707585Z ++ [[ win-vs2022-cuda12.6-py3 != *win-* ]] 2025-07-17T06:40:51.0707992Z + export TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-17T06:40:51.0708460Z + TMP_DIR=/c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-17T06:40:51.0763544Z ++ cygpath -w /c/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-17T06:40:51.0856876Z + TMP_DIR_WIN='C:\actions-runner\_work\pytorch\pytorch\build\win_tmp' 2025-07-17T06:40:51.0857282Z + export TMP_DIR_WIN 2025-07-17T06:40:51.0857577Z + export PYTORCH_FINAL_PACKAGE_DIR=/c/16337959945/build-results/ 2025-07-17T06:40:51.0857995Z + PYTORCH_FINAL_PACKAGE_DIR=/c/16337959945/build-results/ 2025-07-17T06:40:51.0858379Z + [[ -n /c/16337959945/build-results/ ]] 2025-07-17T06:40:51.0858674Z + mkdir -p /c/16337959945/build-results/ 2025-07-17T06:40:51.1006977Z + export SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-17T06:40:51.1007682Z + SCRIPT_HELPERS_DIR=/c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-17T06:40:51.1008157Z + set +ex 2025-07-17T06:40:52.2969608Z + /c/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-07-17T06:40:52.3140918Z 2025-07-17T06:40:52.3141655Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" (set BUILD_TYPE=debug ) ELSE (set BUILD_TYPE=release ) 2025-07-17T06:40:52.3144732Z 2025-07-17T06:40:52.3148631Z 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-07-17T06:40:52.3151175Z 2025-07-17T06:40:52.3151688Z C:\actions-runner\_work\pytorch\pytorch>set INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-07-17T06:40:52.3152401Z 2025-07-17T06:40:52.3153256Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_magma.bat 2025-07-17T06:40:52.3162517Z 2025-07-17T06:40:52.3162860Z C:\actions-runner\_work\pytorch\pytorch>if "12.6" == "cpu" ( 2025-07-17T06:40:52.3163255Z echo skip magma installation for cpu builds 2025-07-17T06:40:52.3163571Z exit /b 0 2025-07-17T06:40:52.3163729Z ) 2025-07-17T06:40:52.3163932Z 2025-07-17T06:40:52.3164271Z C:\actions-runner\_work\pytorch\pytorch>rem remove dot in cuda_version, fox example 11.1 to 111 2025-07-17T06:40:52.3165413Z 2025-07-17T06:40:52.3165716Z C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" (exit /b 0 ) 2025-07-17T06:40:52.3166901Z 2025-07-17T06:40:52.3167143Z C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-07-17T06:40:52.3167600Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-07-17T06:40:52.3167974Z exit /b 1 2025-07-17T06:40:52.3168144Z ) 2025-07-17T06:40:52.3169011Z 2025-07-17T06:40:52.3169443Z C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=126 2025-07-17T06:40:52.3171520Z 2025-07-17T06:40:52.3171883Z C:\actions-runner\_work\pytorch\pytorch>set CUDA_SUFFIX=cuda126 2025-07-17T06:40:52.3174157Z 2025-07-17T06:40:52.3174561Z C:\actions-runner\_work\pytorch\pytorch>if "cuda126" == "" ( 2025-07-17T06:40:52.3175277Z echo unknown CUDA version, please set `CUDA_VERSION` higher than 10.2 2025-07-17T06:40:52.3175664Z exit /b 1 2025-07-17T06:40:52.3175831Z ) 2025-07-17T06:40:52.3177001Z 2025-07-17T06:40:52.3177279Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-07-17T06:40:52.3178975Z if "win-vs2022-cuda12.6-py3" == "" (curl --retry 3 --retry-all-errors -k https://s3.amazonaws.com/ossci-windows/magma_2.5.4_cuda126_release.7z --output C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z & REM @lint-ignore ) else (aws s3 cp s3://ossci-windows/magma_2.5.4_cuda126_release.7z C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z --quiet ) 2025-07-17T06:40:52.3180535Z if errorlevel 1 exit /b 2025-07-17T06:40:52.3180773Z if not errorlevel 0 exit /b 2025-07-17T06:40:52.3181443Z 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-07-17T06:40:52.3182119Z if errorlevel 1 exit /b 2025-07-17T06:40:52.3182356Z if not errorlevel 0 exit /b 2025-07-17T06:40:52.3182566Z ) 2025-07-17T06:40:56.5623702Z 2025-07-17T06:40:56.5624194Z 7-Zip 24.09 (x64) : Copyright (c) 1999-2024 Igor Pavlov : 2024-11-29 2025-07-17T06:40:56.5624507Z 2025-07-17T06:40:56.5624604Z Scanning the drive for archives: 2025-07-17T06:40:56.5624871Z 1 file, 62070579 bytes (60 MiB) 2025-07-17T06:40:56.5625031Z 2025-07-17T06:40:56.5625361Z Extracting archive: C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-07-17T06:40:57.8225730Z -- 2025-07-17T06:40:57.8226222Z Path = C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma_2.5.4_cuda126_release.7z 2025-07-17T06:40:57.8227724Z Type = 7z 2025-07-17T06:40:57.8227930Z Physical Size = 62070579 2025-07-17T06:40:57.8228147Z Headers Size = 931 2025-07-17T06:40:57.8228348Z Method = LZMA2:24 2025-07-17T06:40:57.8228569Z Solid = + 2025-07-17T06:40:57.8229467Z Blocks = 1 2025-07-17T06:40:57.8229589Z 2025-07-17T06:40:57.8229675Z Everything is Ok 2025-07-17T06:40:57.8229798Z 2025-07-17T06:40:57.8229870Z Folders: 2 2025-07-17T06:40:57.8230038Z Files: 68 2025-07-17T06:40:57.8230202Z Size: 144236024 2025-07-17T06:40:57.8230408Z Compressed: 62070579 2025-07-17T06:40:57.8251210Z 2025-07-17T06:40:57.8251974Z C:\actions-runner\_work\pytorch\pytorch>set MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-07-17T06:40:57.8255578Z 2025-07-17T06:40:57.8255892Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-17T06:40:57.8257425Z 2025-07-17T06:40:57.8257679Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-17T06:40:57.8258992Z 2025-07-17T06:40:57.8259612Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\install_sccache.bat 2025-07-17T06:40:57.8270854Z 2025-07-17T06:40:57.8271299Z C:\actions-runner\_work\pytorch\pytorch>mkdir C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin 2025-07-17T06:40:57.8276418Z 2025-07-17T06:40:57.8276936Z C:\actions-runner\_work\pytorch\pytorch>if "" == "" ( 2025-07-17T06:40:57.8277418Z IF EXIST C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe ( 2025-07-17T06:40:57.8277871Z taskkill /im sccache.exe /f /t || ver 1>nul 2025-07-17T06:40:57.8278359Z del C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin\sccache.exe || ver 1>nul 2025-07-17T06:40:57.8278837Z ) 2025-07-17T06:40:57.8280137Z 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-07-17T06:40:57.8281448Z ) 2025-07-17T06:40:59.1030517Z Completed 256.0 KiB/18.8 MiB (753.6 KiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1048923Z Completed 512.0 KiB/18.8 MiB (1.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1053121Z Completed 768.0 KiB/18.8 MiB (2.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1055842Z Completed 1.0 MiB/18.8 MiB (2.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1069673Z Completed 1.2 MiB/18.8 MiB (3.6 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1076810Z Completed 1.5 MiB/18.8 MiB (4.4 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1079726Z Completed 1.8 MiB/18.8 MiB (5.1 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1084247Z Completed 2.0 MiB/18.8 MiB (5.8 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1092661Z Completed 2.2 MiB/18.8 MiB (6.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1099904Z Completed 2.5 MiB/18.8 MiB (7.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1102912Z Completed 2.8 MiB/18.8 MiB (7.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1108559Z Completed 3.0 MiB/18.8 MiB (8.6 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1116089Z Completed 3.2 MiB/18.8 MiB (9.3 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1119599Z Completed 3.5 MiB/18.8 MiB (10.0 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1127041Z Completed 3.8 MiB/18.8 MiB (10.7 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1129292Z Completed 4.0 MiB/18.8 MiB (11.4 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1132722Z Completed 4.2 MiB/18.8 MiB (12.1 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1141268Z Completed 4.5 MiB/18.8 MiB (12.8 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1145938Z Completed 4.8 MiB/18.8 MiB (13.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1149399Z Completed 5.0 MiB/18.8 MiB (14.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1155402Z Completed 5.2 MiB/18.8 MiB (14.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1158331Z Completed 5.5 MiB/18.8 MiB (15.6 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1161919Z Completed 5.8 MiB/18.8 MiB (16.3 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1167182Z Completed 6.0 MiB/18.8 MiB (17.0 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1172410Z Completed 6.2 MiB/18.8 MiB (17.6 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1173216Z Completed 6.3 MiB/18.8 MiB (17.8 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1176857Z Completed 6.6 MiB/18.8 MiB (18.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1187556Z Completed 6.8 MiB/18.8 MiB (19.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1190094Z Completed 7.1 MiB/18.8 MiB (19.8 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1197999Z Completed 7.3 MiB/18.8 MiB (20.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1199246Z Completed 7.6 MiB/18.8 MiB (21.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1208607Z Completed 7.8 MiB/18.8 MiB (21.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1209682Z Completed 8.1 MiB/18.8 MiB (22.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1216812Z Completed 8.3 MiB/18.8 MiB (23.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1220566Z Completed 8.6 MiB/18.8 MiB (23.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1226567Z Completed 8.8 MiB/18.8 MiB (24.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1230303Z Completed 9.1 MiB/18.8 MiB (25.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1235244Z Completed 9.3 MiB/18.8 MiB (25.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1242230Z Completed 9.6 MiB/18.8 MiB (26.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1247259Z Completed 9.8 MiB/18.8 MiB (27.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1256354Z Completed 10.1 MiB/18.8 MiB (27.8 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1260861Z Completed 10.3 MiB/18.8 MiB (28.4 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1264929Z Completed 10.6 MiB/18.8 MiB (29.1 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1274575Z Completed 10.8 MiB/18.8 MiB (29.7 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1285832Z Completed 11.1 MiB/18.8 MiB (30.3 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1288806Z Completed 11.3 MiB/18.8 MiB (30.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1295337Z Completed 11.6 MiB/18.8 MiB (31.6 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1301571Z Completed 11.8 MiB/18.8 MiB (32.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1311735Z Completed 12.1 MiB/18.8 MiB (32.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1316522Z Completed 12.3 MiB/18.8 MiB (33.4 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1323890Z Completed 12.6 MiB/18.8 MiB (34.1 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1329064Z Completed 12.8 MiB/18.8 MiB (34.7 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1335913Z Completed 13.1 MiB/18.8 MiB (35.3 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1343115Z Completed 13.3 MiB/18.8 MiB (35.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1350120Z Completed 13.6 MiB/18.8 MiB (36.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1355523Z Completed 13.8 MiB/18.8 MiB (37.1 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1366435Z Completed 14.1 MiB/18.8 MiB (37.7 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1370543Z Completed 14.3 MiB/18.8 MiB (38.3 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1378604Z Completed 14.6 MiB/18.8 MiB (38.9 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1384984Z Completed 14.8 MiB/18.8 MiB (39.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1393069Z Completed 15.1 MiB/18.8 MiB (40.1 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1396243Z Completed 15.3 MiB/18.8 MiB (40.7 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1406635Z Completed 15.6 MiB/18.8 MiB (41.3 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1409214Z Completed 15.8 MiB/18.8 MiB (41.8 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1417436Z Completed 16.1 MiB/18.8 MiB (42.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1424795Z Completed 16.3 MiB/18.8 MiB (43.0 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1427876Z Completed 16.6 MiB/18.8 MiB (43.6 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1433853Z Completed 16.8 MiB/18.8 MiB (44.2 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1440923Z Completed 17.1 MiB/18.8 MiB (44.8 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1446455Z Completed 17.3 MiB/18.8 MiB (45.4 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1455368Z Completed 17.6 MiB/18.8 MiB (46.0 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1462161Z Completed 17.8 MiB/18.8 MiB (46.5 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1489427Z Completed 18.1 MiB/18.8 MiB (47.1 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1496984Z Completed 18.3 MiB/18.8 MiB (47.4 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1513471Z Completed 18.6 MiB/18.8 MiB (48.0 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1522085Z Completed 18.8 MiB/18.8 MiB (48.4 MiB/s) with 1 file(s) remaining 2025-07-17T06:40:59.1522710Z download: s3://ossci-windows/sccache-v0.7.4.exe to build\win_tmp\bin\sccache.exe 2025-07-17T06:40:59.2571476Z 2025-07-17T06:40:59.2571954Z C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-17T06:40:59.2572386Z 2025-07-17T06:40:59.2572641Z C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-17T06:40:59.2574723Z 2025-07-17T06:40:59.2575201Z C:\actions-runner\_work\pytorch\pytorch>if "0" == "1" ( 2025-07-17T06:40:59.2575553Z set CUDA_VERSION=xpu 2025-07-17T06:40:59.2576129Z call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\..\windows\internal\xpu_install.bat 2025-07-17T06:40:59.2576712Z if errorlevel 1 exit /b 1 2025-07-17T06:40:59.2577145Z ) 2025-07-17T06:40:59.2577254Z 2025-07-17T06:40:59.2577825Z C:\actions-runner\_work\pytorch\pytorch>call C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers\activate_miniconda3.bat 2025-07-17T06:40:59.2588616Z 2025-07-17T06:40:59.2589453Z 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-07-17T06:40:59.2592041Z 2025-07-17T06:40:59.2592407Z C:\actions-runner\_work\pytorch\pytorch>if not exist C:\Jenkins\Miniconda3 (set INSTALL_FRESH_CONDA=1 ) 2025-07-17T06:40:59.2595337Z 2025-07-17T06:40:59.2595792Z C:\actions-runner\_work\pytorch\pytorch>if "" == "1" ( 2025-07-17T06:40:59.2596848Z 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-07-17T06:40:59.2597839Z if errorlevel 1 exit /b 2025-07-17T06:40:59.2598085Z if not errorlevel 0 exit /b 2025-07-17T06:40:59.2598869Z 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-07-17T06:40:59.2599685Z if errorlevel 1 exit /b 2025-07-17T06:40:59.2599909Z if not errorlevel 0 exit /b 2025-07-17T06:40:59.2600126Z ) 2025-07-17T06:40:59.2600217Z 2025-07-17T06:40:59.2600568Z C:\actions-runner\_work\pytorch\pytorch>call C:\Jenkins\Miniconda3\Scripts\activate.bat C:\Jenkins\Miniconda3 2025-07-17T06:41:00.6454386Z Chocolatey v2.4.3 2025-07-17T06:41:00.7848677Z Upgrading the following packages: 2025-07-17T06:41:00.7853758Z cmake 2025-07-17T06:41:00.7857572Z By upgrading, you accept licenses for the packages. 2025-07-17T06:41:01.1145648Z cmake is not installed. Installing... 2025-07-17T06:41:01.9254725Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-17T06:41:02.8423044Z 2025-07-17T06:41:02.8423440Z cmake.install v3.27.9 [Approved] 2025-07-17T06:41:02.8613014Z cmake.install package files upgrade completed. Performing other installation steps. 2025-07-17T06:41:03.4912227Z Installing 64-bit cmake.install... 2025-07-17T06:41:16.3033235Z cmake.install has been installed. 2025-07-17T06:41:16.3776101Z cmake.install may be able to be automatically uninstalled. 2025-07-17T06:41:16.3821623Z Environment Vars (like PATH) have changed. Close/reopen your shell to 2025-07-17T06:41:16.3822128Z see the changes (or in powershell/cmd.exe just type `refreshenv`). 2025-07-17T06:41:16.5958852Z The upgrade of cmake.install was successful. 2025-07-17T06:41:16.5961730Z Deployed to 'C:\Program Files\CMake\' 2025-07-17T06:41:16.5997675Z Downloading package from source 'https://community.chocolatey.org/api/v2/' 2025-07-17T06:41:16.6700608Z 2025-07-17T06:41:16.6700994Z cmake v3.27.9 [Approved] 2025-07-17T06:41:16.6723076Z cmake package files upgrade completed. Performing other installation steps. 2025-07-17T06:41:16.7489196Z The upgrade of cmake was successful. 2025-07-17T06:41:16.7492320Z Deployed to 'C:\ProgramData\chocolatey\lib\cmake' 2025-07-17T06:41:16.7574203Z 2025-07-17T06:41:16.7574331Z Chocolatey upgraded 2/2 packages. 2025-07-17T06:41:16.7574745Z See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log). 2025-07-17T06:41:17.5283401Z Collecting mkl==2024.2.0 2025-07-17T06:41:17.7138655Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.4 kB) 2025-07-17T06:41:17.7404571Z Collecting mkl-static==2024.2.0 2025-07-17T06:41:17.7455510Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.5 kB) 2025-07-17T06:41:17.7715760Z Collecting mkl-include==2024.2.0 2025-07-17T06:41:17.7769603Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-17T06:41:17.8067627Z Collecting intel-openmp>=2023 (from mkl==2024.2.0) 2025-07-17T06:41:17.8117150Z Downloading intel_openmp-2025.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-17T06:41:17.8356665Z Collecting tbb==2021.* (from mkl==2024.2.0) 2025-07-17T06:41:17.8404043Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl.metadata (1.1 kB) 2025-07-17T06:41:17.8683982Z Collecting tbb-devel==2021.* (from mkl-static==2024.2.0) 2025-07-17T06:41:17.8733835Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl.metadata (1.2 kB) 2025-07-17T06:41:17.8956858Z Collecting intel-cmplr-lib-ur==2025.2.0 (from intel-openmp>=2023->mkl==2024.2.0) 2025-07-17T06:41:17.9007853Z Downloading intel_cmplr_lib_ur-2025.2.0-py2.py3-none-win_amd64.whl.metadata (1.3 kB) 2025-07-17T06:41:17.9179873Z Collecting umf==0.11.* (from intel-cmplr-lib-ur==2025.2.0->intel-openmp>=2023->mkl==2024.2.0) 2025-07-17T06:41:17.9232807Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl.metadata (1.1 kB) 2025-07-17T06:41:17.9410546Z Collecting tcmlib>=1.4 (from umf==0.11.*->intel-cmplr-lib-ur==2025.2.0->intel-openmp>=2023->mkl==2024.2.0) 2025-07-17T06:41:17.9465640Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl.metadata (1.0 kB) 2025-07-17T06:41:17.9615790Z Downloading mkl-2024.2.0-py2.py3-none-win_amd64.whl (161.5 MB) 2025-07-17T06:41:20.3971824Z ---------------------------------------- 161.5/161.5 MB 6.1 MB/s eta 0:00:00 2025-07-17T06:41:20.4087189Z Downloading mkl_static-2024.2.0-py2.py3-none-win_amd64.whl (207.3 MB) 2025-07-17T06:41:24.1152521Z ---------------------------------------- 207.3/207.3 MB 3.7 MB/s eta 0:00:00 2025-07-17T06:41:24.1225568Z Downloading mkl_include-2024.2.0-py2.py3-none-win_amd64.whl (1.3 MB) 2025-07-17T06:41:24.1420525Z ---------------------------------------- 1.3/1.3 MB 82.2 MB/s eta 0:00:00 2025-07-17T06:41:24.1477964Z Downloading tbb-2021.13.1-py3-none-win_amd64.whl (286 kB) 2025-07-17T06:41:24.1573968Z ---------------------------------------- 286.9/286.9 kB ? eta 0:00:00 2025-07-17T06:41:24.1642830Z Downloading tbb_devel-2021.13.1-py3-none-win_amd64.whl (5.7 MB) 2025-07-17T06:41:24.2092000Z ---------------------------------------- 5.7/5.7 MB 120.3 MB/s eta 0:00:00 2025-07-17T06:41:24.2157253Z Downloading intel_openmp-2025.2.0-py2.py3-none-win_amd64.whl (34.0 MB) 2025-07-17T06:41:24.5086479Z ---------------------------------------- 34.0/34.0 MB 50.4 MB/s eta 0:00:00 2025-07-17T06:41:24.5174609Z Downloading intel_cmplr_lib_ur-2025.2.0-py2.py3-none-win_amd64.whl (1.2 MB) 2025-07-17T06:41:24.5396234Z ---------------------------------------- 1.2/1.2 MB 37.4 MB/s eta 0:00:00 2025-07-17T06:41:24.5453260Z Downloading umf-0.11.0-py2.py3-none-win_amd64.whl (231 kB) 2025-07-17T06:41:24.5554606Z ---------------------------------------- 231.7/231.7 kB ? eta 0:00:00 2025-07-17T06:41:24.5610035Z Downloading tcmlib-1.4.0-py2.py3-none-win_amd64.whl (370 kB) 2025-07-17T06:41:24.5722679Z --------------------------------------- 370.3/370.3 kB 24.0 MB/s eta 0:00:00 2025-07-17T06:41:26.6164869Z Installing collected packages: tcmlib, tbb, mkl-include, umf, tbb-devel, intel-cmplr-lib-ur, intel-openmp, mkl-static, mkl 2025-07-17T06:41:34.4929777Z Successfully installed intel-cmplr-lib-ur-2025.2.0 intel-openmp-2025.2.0 mkl-2024.2.0 mkl-include-2024.2.0 mkl-static-2024.2.0 tbb-2021.13.1 tbb-devel-2021.13.1 tcmlib-1.4.0 umf-0.11.0 2025-07-17T06:41:34.9424523Z ********************************************************************** 2025-07-17T06:41:34.9424952Z ** Visual Studio 2022 Developer Command Prompt v17.8.22 2025-07-17T06:41:34.9425647Z ** Copyright (c) 2022 Microsoft Corporation 2025-07-17T06:41:34.9426011Z ********************************************************************** 2025-07-17T06:41:36.6378616Z [vcvarsall.bat] Environment initialized for: 'x64' 2025-07-17T06:41:36.6414995Z 2025-07-17T06:41:36.6415427Z (base) C:\actions-runner\_work\pytorch\pytorch>popd 2025-07-17T06:41:36.6418682Z 2025-07-17T06:41:36.6419009Z (base) C:\actions-runner\_work\pytorch\pytorch>if not "1" == "1" goto cuda_build_end 2025-07-17T06:41:36.6419899Z 2025-07-17T06:41:36.6420358Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:36.6422640Z 2025-07-17T06:41:36.6422961Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-07-17T06:41:36.6423445Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-07-17T06:41:36.6423818Z goto fail 2025-07-17T06:41:36.6423984Z ) 2025-07-17T06:41:36.6424073Z 2025-07-17T06:41:36.6424369Z (base) C:\actions-runner\_work\pytorch\pytorch>rem version transformer, for example 10.1 to 10_1. 2025-07-17T06:41:36.6425171Z 2025-07-17T06:41:36.6425422Z (base) C:\actions-runner\_work\pytorch\pytorch>if x126 == x12.6 ( 2025-07-17T06:41:36.6425897Z echo CUDA version 12.6 format isn't correct, which doesn't contain '.' 2025-07-17T06:41:36.6426263Z goto fail 2025-07-17T06:41:36.6426429Z ) 2025-07-17T06:41:36.6426518Z 2025-07-17T06:41:36.6426714Z (base) C:\actions-runner\_work\pytorch\pytorch>set VERSION_SUFFIX=12_6 2025-07-17T06:41:36.6428692Z 2025-07-17T06:41:36.6429399Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:36.6431265Z 2025-07-17T06:41:36.6431745Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-07-17T06:41:36.6434037Z 2025-07-17T06:41:36.6434679Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:36.6436847Z 2025-07-17T06:41:36.6437390Z (base) C:\actions-runner\_work\pytorch\pytorch>set CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:36.6439807Z 2025-07-17T06:41:36.6450779Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\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;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-17T06:41:36.6464200Z 2025-07-17T06:41:36.6464568Z (base) C:\actions-runner\_work\pytorch\pytorch>set DISTUTILS_USE_SDK=1 2025-07-17T06:41:36.6465128Z 2025-07-17T06:41:36.6479258Z (base) C:\actions-runner\_work\pytorch\pytorch>set PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\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;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-17T06:41:36.6493556Z 2025-07-17T06:41:36.6494041Z (base) C:\actions-runner\_work\pytorch\pytorch>if "8.6" == "" set TORCH_CUDA_ARCH_LIST=8.6 2025-07-17T06:41:36.6494714Z 2025-07-17T06:41:36.6495061Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IDLE_TIMEOUT=0 2025-07-17T06:41:36.6495593Z 2025-07-17T06:41:36.6496013Z (base) C:\actions-runner\_work\pytorch\pytorch>set SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-07-17T06:41:36.6496637Z 2025-07-17T06:41:36.6496980Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-07-17T06:41:36.6595865Z Stopping sccache server... 2025-07-17T06:41:37.6664148Z sccache: error: couldn't connect to server 2025-07-17T06:41:37.6664772Z sccache: caused by: No connection could be made because the target machine actively refused it. (os error 10061) 2025-07-17T06:41:37.6675536Z 2025-07-17T06:41:37.6675995Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --start-server 2025-07-17T06:41:37.6768998Z sccache: Starting the server... 2025-07-17T06:41:37.7901670Z 2025-07-17T06:41:37.7902257Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --zero-stats 2025-07-17T06:41:37.8021562Z Compile requests 0 2025-07-17T06:41:37.8021932Z Compile requests executed 0 2025-07-17T06:41:37.8022224Z Cache hits 0 2025-07-17T06:41:37.8022489Z Cache misses 0 2025-07-17T06:41:37.8022757Z Cache timeouts 0 2025-07-17T06:41:37.8023010Z Cache read errors 0 2025-07-17T06:41:37.8023272Z Forced recaches 0 2025-07-17T06:41:37.8023527Z Cache write errors 0 2025-07-17T06:41:37.8023804Z Compilation failures 0 2025-07-17T06:41:37.8024072Z Cache errors 0 2025-07-17T06:41:37.8024335Z Non-cacheable compilations 0 2025-07-17T06:41:37.8024616Z Non-cacheable calls 0 2025-07-17T06:41:37.8025133Z Non-compilation calls 0 2025-07-17T06:41:37.8025428Z Unsupported compiler calls 0 2025-07-17T06:41:37.8025716Z Average cache write 0.000 s 2025-07-17T06:41:37.8026006Z Average compiler 0.000 s 2025-07-17T06:41:37.8026279Z Average cache read hit 0.000 s 2025-07-17T06:41:37.8026568Z Failed distributed compilations 0 2025-07-17T06:41:37.8026952Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-17T06:41:37.8027342Z Version (client) 0.7.4 2025-07-17T06:41:37.8041830Z 2025-07-17T06:41:37.8042464Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_C_COMPILER_LAUNCHER=sccache 2025-07-17T06:41:37.8044472Z 2025-07-17T06:41:37.8044768Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-07-17T06:41:37.8047213Z 2025-07-17T06:41:37.8047504Z (base) C:\actions-runner\_work\pytorch\pytorch>set CMAKE_GENERATOR=Ninja 2025-07-17T06:41:37.8051074Z 2025-07-17T06:41:37.8051345Z (base) C:\actions-runner\_work\pytorch\pytorch>if "1" == "1" ( 2025-07-17T06:41:37.8051767Z 2025-07-17T06:41:37.8051928Z 2025-07-17T06:41:37.8052146Z 2025-07-17T06:41:37.8052910Z 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-07-17T06:41:37.8053795Z if errorlevel 1 goto fail 2025-07-17T06:41:37.8054158Z if not errorlevel 0 goto fail 2025-07-17T06:41:37.8055320Z 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-07-17T06:41:37.8056648Z cat C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-17T06:41:37.8057101Z The system cannot find the drive specified. 2025-07-17T06:41:37.8058168Z The system cannot find the drive specified. 2025-07-17T06:41:37.8058512Z The system cannot find the drive specified. 2025-07-17T06:41:37.8059002Z set CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-17T06:41:37.8059928Z 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-07-17T06:41:37.8061118Z 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-07-17T06:41:37.8061937Z ) 2025-07-17T06:41:39.3931909Z % Total % Received % Xferd Average Speed Time Time Time Current 2025-07-17T06:41:39.3932461Z Dload Upload Total Spent Left Speed 2025-07-17T06:41:39.3933407Z 2025-07-17T06:41:39.4399942Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-07-17T06:41:39.4400398Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 2025-07-17T06:41:39.4529289Z 2025-07-17T06:41:39.4529757Z 100 303k 100 303k 0 0 3385k 0 --:--:-- --:--:-- --:--:-- 3385k 2025-07-17T06:41:39.4694339Z @"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-07-17T06:41:39.4902369Z 2025-07-17T06:41:39.4903626Z (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-07-17T06:41:39.4907437Z 2025-07-17T06:41:39.4907880Z (base) C:\actions-runner\_work\pytorch\pytorch>set 2025-07-17T06:41:39.5114336Z ACTIONS_ID_TOKEN_REQUEST_TOKEN=*** 2025-07-17T06:41:39.5115454Z ACTIONS_ID_TOKEN_REQUEST_URL=https://run-actions-2-azure-eastus.actions.githubusercontent.com/8//idtoken/f6c081a3-8a6f-44b6-a437-366cdb9b3828/dbf9248c-b640-5b98-a758-d9a028f3ff7e?api-version=2.0 2025-07-17T06:41:39.5116755Z ACTIONS_RUNNER_HOOK_JOB_COMPLETED=C:\actions-runner\jobcompleted.ps1 2025-07-17T06:41:39.5117292Z ALLUSERSPROFILE=C:\ProgramData 2025-07-17T06:41:39.5117684Z ALPINE_IMAGE=308535385114.dkr.ecr.us-east-1.amazonaws.com/tool/alpine 2025-07-17T06:41:39.5118104Z APPDATA=C:\Users\runneruser\AppData\Roaming 2025-07-17T06:41:39.5118425Z AWS_DEFAULT_REGION=us-east-1 2025-07-17T06:41:39.5118663Z AWS_EXECUTION_ENV=EC2 2025-07-17T06:41:39.5118885Z BRANCH=main 2025-07-17T06:41:39.5119096Z BUILD_ENVIRONMENT=win-vs2022-cuda12.6-py3 2025-07-17T06:41:39.5119399Z BUILD_TYPE=release 2025-07-17T06:41:39.5119599Z BUILD_WHEEL=1 2025-07-17T06:41:39.5119791Z CI=true 2025-07-17T06:41:39.5120179Z CMAKE_CUDA_COMPILER=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-07-17T06:41:39.5121189Z 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-07-17T06:41:39.5122026Z CMAKE_CXX_COMPILER_LAUNCHER=sccache 2025-07-17T06:41:39.5122301Z CMAKE_C_COMPILER_LAUNCHER=sccache 2025-07-17T06:41:39.5122563Z CMAKE_GENERATOR=Ninja 2025-07-17T06:41:39.5122788Z CommandPromptType=Native 2025-07-17T06:41:39.5123083Z COMMONPROGRAMFILES=C:\Program Files\Common Files 2025-07-17T06:41:39.5123410Z COMPUTERNAME=EC2AMAZ-IFQ8336 2025-07-17T06:41:39.5123676Z COMSPEC=C:\Windows\system32\cmd.exe 2025-07-17T06:41:39.5124055Z CONDA_BUILD=C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T06:41:39.5124429Z CONDA_DEFAULT_ENV=base 2025-07-17T06:41:39.5124696Z CONDA_EXE=C:\Jenkins\Miniconda3\Scripts\conda.exe 2025-07-17T06:41:39.5125089Z CONDA_INSTALL=C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T06:41:39.5125457Z CONDA_PARENT_DIR=C:\Jenkins 2025-07-17T06:41:39.5125702Z CONDA_PREFIX=C:\Jenkins\Miniconda3 2025-07-17T06:41:39.5126132Z CONDA_PROMPT_MODIFIER=(base) 2025-07-17T06:41:39.5126421Z CONDA_PYTHON_EXE=C:\Jenkins\Miniconda3\python.exe 2025-07-17T06:41:39.5126887Z CONDA_RUN=C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T06:41:39.5127295Z CONDA_SHLVL=1 2025-07-17T06:41:39.5127666Z CUDA_NVCC_EXECUTABLE=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-17T06:41:39.5128234Z CUDA_PATH=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:39.5128713Z CUDA_PATH_V12_6=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:39.5129215Z CUDA_PATH_V12_8=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8 2025-07-17T06:41:39.5129701Z CUDA_PATH_V12_9=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.9 2025-07-17T06:41:39.5130099Z CUDA_SUFFIX=cuda126 2025-07-17T06:41:39.5130456Z CUDA_TOOLKIT_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:39.5130858Z CUDA_VERSION=12.6 2025-07-17T06:41:39.5131126Z ChocolateyInstall=C:\ProgramData\chocolatey 2025-07-17T06:41:39.5131512Z CommonProgramFiles(x86)=C:\Program Files (x86)\Common Files 2025-07-17T06:41:39.5131929Z CommonProgramW6432=C:\Program Files\Common Files 2025-07-17T06:41:39.5132369Z CUDNN_LIB_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\lib\x64 2025-07-17T06:41:39.5132900Z CUDNN_ROOT_DIR=C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6 2025-07-17T06:41:39.5133269Z DEBUG=0 2025-07-17T06:41:39.5133630Z DevEnvDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\ 2025-07-17T06:41:39.5134072Z DISTUTILS_USE_SDK=1 2025-07-17T06:41:39.5134326Z DriverData=C:\Windows\System32\Drivers\DriverData 2025-07-17T06:41:39.5134650Z EC2LAUNCH_TELEMETRY=1 2025-07-17T06:41:39.5135033Z ExtensionSdkDir=C:\Program Files (x86)\Microsoft SDKs\Windows Kits\10\ExtensionSDKs 2025-07-17T06:41:39.5137284Z EXTERNAL_INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-07-17T06:41:39.5139480Z Framework40Version=v4.0 2025-07-17T06:41:39.5139763Z FrameworkDir=C:\Windows\Microsoft.NET\Framework64\ 2025-07-17T06:41:39.5140163Z FrameworkDir64=C:\Windows\Microsoft.NET\Framework64\ 2025-07-17T06:41:39.5140508Z FrameworkVersion=v4.0.30319 2025-07-17T06:41:39.5140774Z FrameworkVersion64=v4.0.30319 2025-07-17T06:41:39.5141030Z GITHUB_ACTION=build 2025-07-17T06:41:39.5141231Z GITHUB_ACTIONS=true 2025-07-17T06:41:39.5141444Z GITHUB_ACTION_REF= 2025-07-17T06:41:39.5141655Z GITHUB_ACTION_REPOSITORY= 2025-07-17T06:41:39.5141925Z GITHUB_ACTOR=pytorchmergebot 2025-07-17T06:41:39.5142170Z GITHUB_ACTOR_ID=97764156 2025-07-17T06:41:39.5142443Z GITHUB_API_URL=https://api.github.com 2025-07-17T06:41:39.5142713Z GITHUB_BASE_REF= 2025-07-17T06:41:39.5143177Z GITHUB_ENV=C:\actions-runner\_work\_temp\_runner_file_commands\set_env_e6c2cbca-f509-458a-a7f6-16f0cdd1183a 2025-07-17T06:41:39.5143698Z GITHUB_EVENT_NAME=push 2025-07-17T06:41:39.5144069Z GITHUB_EVENT_PATH=C:\actions-runner\_work\_temp\_github_workflow\event.json 2025-07-17T06:41:39.5144546Z GITHUB_GRAPHQL_URL=https://api.github.com/graphql 2025-07-17T06:41:39.5144865Z GITHUB_HEAD_REF= 2025-07-17T06:41:39.5145071Z GITHUB_JOB=build 2025-07-17T06:41:39.5145531Z GITHUB_OUTPUT=C:\actions-runner\_work\_temp\_runner_file_commands\set_output_e6c2cbca-f509-458a-a7f6-16f0cdd1183a 2025-07-17T06:41:39.5146341Z GITHUB_PATH=C:\actions-runner\_work\_temp\_runner_file_commands\add_path_e6c2cbca-f509-458a-a7f6-16f0cdd1183a 2025-07-17T06:41:39.5146961Z GITHUB_REF=refs/heads/main 2025-07-17T06:41:39.5147210Z GITHUB_REF_NAME=main 2025-07-17T06:41:39.5147422Z GITHUB_REF_PROTECTED=true 2025-07-17T06:41:39.5147663Z GITHUB_REF_TYPE=branch 2025-07-17T06:41:39.5147905Z GITHUB_REPOSITORY=pytorch/pytorch 2025-07-17T06:41:39.5148172Z GITHUB_REPOSITORY_ID=65600975 2025-07-17T06:41:39.5148446Z GITHUB_REPOSITORY_OWNER=pytorch 2025-07-17T06:41:39.5148706Z GITHUB_REPOSITORY_OWNER_ID=21003710 2025-07-17T06:41:39.5148989Z GITHUB_RETENTION_DAYS=90 2025-07-17T06:41:39.5149215Z GITHUB_RUN_ATTEMPT=1 2025-07-17T06:41:39.5149438Z GITHUB_RUN_ID=16337959945 2025-07-17T06:41:39.5149658Z GITHUB_RUN_NUMBER=136346 2025-07-17T06:41:39.5149927Z GITHUB_SERVER_URL=https://github.com 2025-07-17T06:41:39.5150250Z GITHUB_SHA=a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:41:39.5150839Z GITHUB_STATE=C:\actions-runner\_work\_temp\_runner_file_commands\save_state_e6c2cbca-f509-458a-a7f6-16f0cdd1183a 2025-07-17T06:41:39.5151691Z GITHUB_STEP_SUMMARY=C:\actions-runner\_work\_temp\_runner_file_commands\step_summary_e6c2cbca-f509-458a-a7f6-16f0cdd1183a 2025-07-17T06:41:39.5152384Z GITHUB_TRIGGERING_ACTOR=pytorchmergebot 2025-07-17T06:41:39.5152679Z GITHUB_WORKFLOW=trunk 2025-07-17T06:41:39.5153797Z GITHUB_WORKFLOW_REF=pytorch/pytorch/.github/workflows/trunk.yml@refs/heads/main 2025-07-17T06:41:39.5154327Z GITHUB_WORKFLOW_SHA=a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:41:39.5154747Z GITHUB_WORKSPACE=C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:41:39.5155097Z GIT_DEFAULT_BRANCH=main 2025-07-17T06:41:39.5155330Z HOME=C:\Users\runneruser 2025-07-17T06:41:39.5157306Z INCLUDE=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include;C:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt;C:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt;C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um 2025-07-17T06:41:39.5159721Z INSTALLER_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers\installation-helpers 2025-07-17T06:41:39.5161043Z LIB=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\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-07-17T06:41:39.5163251Z LIBPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\lib\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\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-07-17T06:41:39.5164748Z LOCALAPPDATA=C:\Users\runneruser\AppData\Local 2025-07-17T06:41:39.5165182Z MAGMA_HOME=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\magma 2025-07-17T06:41:39.5165559Z MAX_JOBS=8 2025-07-17T06:41:39.5165847Z NETFXSDKDir=C:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\ 2025-07-17T06:41:39.5166209Z NUMBER_OF_PROCESSORS=16 2025-07-17T06:41:39.5166441Z OS=Windows_NT 2025-07-17T06:41:39.5166645Z OUR_GITHUB_JOB_ID=46153715429 2025-07-17T06:41:39.5174017Z PATH=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp\bin;C:\Program Files\CMake\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\bin;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.6\libnvvp;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\VCPackages;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\CommonExtensions\Microsoft\TestWindow;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild\Current\bin\Roslyn;C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\;C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\\x64;C:\Program Files (x86)\Windows Kits\10\bin\\x64;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\\MSBuild\Current\Bin\amd64;C:\Windows\Microsoft.NET\Framework64\v4.0.30319;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\;C:\Jenkins\Miniconda3;C:\Jenkins\Miniconda3\Library\mingw-w64\bin;C:\Jenkins\Miniconda3\Library\usr\bin;C:\Jenkins\Miniconda3\Library\bin;C:\Jenkins\Miniconda3\Scripts;C:\Jenkins\Miniconda3\bin;C:\Jenkins\Miniconda3\condabin;C:\Program Files\CMake\bin;C:\Program Files\7-Zip;C:\ProgramData\chocolatey\bin;C:\Program Files\Git\cmd;C:\Program Files\Amazon\AWSCLI;C:\Program Files\Amazon\AWSCLI\bin;C:\Jenkins\Miniconda3;C:\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;C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\Linux\bin\ConnectionManagerExe 2025-07-17T06:41:39.5181526Z PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC 2025-07-17T06:41:39.5181878Z Platform=x64 2025-07-17T06:41:39.5182086Z PROCESSOR_ARCHITECTURE=AMD64 2025-07-17T06:41:39.5182480Z PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 85 Stepping 7, GenuineIntel 2025-07-17T06:41:39.5182880Z PROCESSOR_LEVEL=6 2025-07-17T06:41:39.5183106Z PROCESSOR_REVISION=5507 2025-07-17T06:41:39.5183352Z PROGRAMFILES=C:\Program Files 2025-07-17T06:41:39.5183683Z PROMPT=(base) $P$G 2025-07-17T06:41:39.5183894Z PR_NUMBER= 2025-07-17T06:41:39.5184360Z PSModulePath=C:\Windows\system32\WindowsPowerShell\v1.0\Modules;C:\Program Files\WindowsPowerShell\Modules 2025-07-17T06:41:39.5185043Z PUBLIC=C:\Users\Public 2025-07-17T06:41:39.5185448Z *** 2025-07-17T06:41:39.5185638Z PYTHON_VERSION=3.9 2025-07-17T06:41:39.5185902Z PYTORCH_FINAL_PACKAGE_DIR=C:/16337959945/build-results/ 2025-07-17T06:41:39.5186253Z ProgramData=C:\ProgramData 2025-07-17T06:41:39.5186520Z ProgramFiles(x86)=C:\Program Files (x86) 2025-07-17T06:41:39.5186812Z ProgramW6432=C:\Program Files 2025-07-17T06:41:39.5187056Z RUNNER_ARCH=X64 2025-07-17T06:41:39.5187268Z RUNNER_ENVIRONMENT=self-hosted 2025-07-17T06:41:39.5187535Z RUNNER_NAME=i-03ad2eed2849e5734 2025-07-17T06:41:39.5187779Z RUNNER_OS=Windows 2025-07-17T06:41:39.5188019Z RUNNER_TEMP=C:\actions-runner\_work\_temp 2025-07-17T06:41:39.5188346Z RUNNER_TOOL_CACHE=C:\actions-runner\_work\_tool 2025-07-17T06:41:39.5188757Z RUNNER_TRACKING_ID=github_f73da566-2635-4ca6-ad3c-9f581b8d0cb4 2025-07-17T06:41:39.5189173Z RUNNER_WORKSPACE=C:\actions-runner\_work\pytorch 2025-07-17T06:41:39.5189499Z SCCACHE_BUCKET=ossci-compiler-cache 2025-07-17T06:41:39.5189781Z SCCACHE_IDLE_TIMEOUT=0 2025-07-17T06:41:39.5190009Z SCCACHE_IGNORE_SERVER_IO_ERROR=1 2025-07-17T06:41:39.5190276Z SCCACHE_REGION=us-east-1 2025-07-17T06:41:39.5190579Z SCCACHE_S3_KEY_PREFIX=trunk 2025-07-17T06:41:39.5191024Z SCRIPT_HELPERS_DIR=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers 2025-07-17T06:41:39.5191513Z SHA1=a38f433be2e94a64b095a44ba39879d02d0c2316 2025-07-17T06:41:39.5191803Z SHLVL=2 2025-07-17T06:41:39.5192118Z SSL_CERT_FILE=C:\Jenkins\Miniconda3\Library\ssl\cacert.pem 2025-07-17T06:41:39.5192467Z SYSTEMDRIVE=C: 2025-07-17T06:41:39.5192673Z SYSTEMROOT=C:\Windows 2025-07-17T06:41:39.5192911Z TEMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:41:39.5193208Z TERM=xterm-256color 2025-07-17T06:41:39.5193432Z TMP=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:41:39.5193902Z TMPDIR=C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T06:41:39.5194269Z TMP_DIR=C:/actions-runner/_work/pytorch/pytorch/build/win_tmp 2025-07-17T06:41:39.5194718Z TMP_DIR_WIN=C:\actions-runner\_work\pytorch\pytorch\build\win_tmp 2025-07-17T06:41:39.5195078Z TORCH_CUDA_ARCH_LIST=8.6 2025-07-17T06:41:39.5195314Z UCRTVersion=10.0.19041.0 2025-07-17T06:41:39.5195631Z UniversalCRTSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-07-17T06:41:39.5195990Z UPDATEFILE=update.finished 2025-07-17T06:41:39.5196249Z USERDOMAIN=EC2AMAZ-IFQ8336 2025-07-17T06:41:39.5196485Z USERNAME=runneruser 2025-07-17T06:41:39.5196721Z USERPROFILE=C:\Users\runneruser 2025-07-17T06:41:39.5197038Z USE_CUDA=1 2025-07-17T06:41:39.5197227Z USE_XPU=0 2025-07-17T06:41:39.5197618Z VCIDEInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\IDE\VC\ 2025-07-17T06:41:39.5198256Z VCINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\ 2025-07-17T06:41:39.5198938Z VCToolsInstallDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\ 2025-07-17T06:41:39.5199727Z VCToolsRedistDir=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Redist\MSVC\14.38.33130\ 2025-07-17T06:41:39.5200261Z VCToolsVersion=14.38.33130 2025-07-17T06:41:39.5200493Z VC_PRODUCT=BuildTools 2025-07-17T06:41:39.5200694Z VC_VERSION= 2025-07-17T06:41:39.5200869Z VC_YEAR=2022 2025-07-17T06:41:39.5201055Z VERBOSE_ARG='SilentlyContinue' 2025-07-17T06:41:39.5201293Z VERSION_SUFFIX=12_6 2025-07-17T06:41:39.5201488Z VisualStudioVersion=17.0 2025-07-17T06:41:39.5201906Z VS170COMNTOOLS=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\Common7\Tools\ 2025-07-17T06:41:39.5202382Z VSCMD_ARG_app_plat=Desktop 2025-07-17T06:41:39.5202599Z VSCMD_ARG_HOST_ARCH=x64 2025-07-17T06:41:39.5202814Z VSCMD_ARG_TGT_ARCH=x64 2025-07-17T06:41:39.5203068Z VSCMD_VER=17.8.22 2025-07-17T06:41:39.5203406Z VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\ 2025-07-17T06:41:39.5203918Z WINDIR=C:\Windows 2025-07-17T06:41:39.5204483Z 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-07-17T06:41:39.5205196Z WindowsSdkBinPath=C:\Program Files (x86)\Windows Kits\10\bin\ 2025-07-17T06:41:39.5205622Z WindowsSdkDir=C:\Program Files (x86)\Windows Kits\10\ 2025-07-17T06:41:39.5205973Z WindowsSDKLibVersion=10.0.19041.0\ 2025-07-17T06:41:39.5206385Z WindowsSdkVerBinPath=C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\ 2025-07-17T06:41:39.5206807Z WindowsSDKVersion=10.0.19041.0\ 2025-07-17T06:41:39.5207299Z WindowsSDK_ExecutablePath_x64=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\x64\ 2025-07-17T06:41:39.5208050Z WindowsSDK_ExecutablePath_x86=C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools\ 2025-07-17T06:41:39.5208531Z XPU_VERSION= 2025-07-17T06:41:39.5208936Z _=C:/actions-runner/_work/pytorch/pytorch/.ci/pytorch/win-test-helpers/build_pytorch.bat 2025-07-17T06:41:39.5209413Z __CONDA_OPENSLL_CERT_FILE_SET="1" 2025-07-17T06:41:39.5209661Z __DOTNET_ADD_64BIT=1 2025-07-17T06:41:39.5209876Z __DOTNET_PREFERRED_BITNESS=64 2025-07-17T06:41:39.5213212Z __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-07-17T06:41:39.5216323Z 2025-07-17T06:41:39.5216536Z (base) C:\actions-runner\_work\pytorch\pytorch>python setup.py bdist_wheel 2025-07-17T06:41:39.8187903Z Building wheel torch-2.9.0a0+gita38f433 2025-07-17T06:41:39.8978129Z -- Building version 2.9.0a0+gita38f433 2025-07-17T06:41:40.0587543Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\_msvccompiler.py:12: UserWarning: _get_vc_env is private; find an alternative (pypa/distutils#340) 2025-07-17T06:41:40.0588290Z warnings.warn( 2025-07-17T06:41:40.0910165Z Cloning into 'nccl'... 2025-07-17T06:41:40.3890660Z Note: switching to '3ea7eedf3b9b94f1d9f99f4e55536dfcbd23c1ca'. 2025-07-17T06:41:40.3890994Z 2025-07-17T06:41:40.3891200Z You are in 'detached HEAD' state. You can look around, make experimental 2025-07-17T06:41:40.3891731Z changes and commit them, and you can discard any commits you make in this 2025-07-17T06:41:40.3892246Z state without impacting any branches by switching back to a branch. 2025-07-17T06:41:40.3892539Z 2025-07-17T06:41:40.3892720Z If you want to create a new branch to retain commits you create, you may 2025-07-17T06:41:40.3893189Z do so (now or later) by using -c with the switch command. Example: 2025-07-17T06:41:40.3893455Z 2025-07-17T06:41:40.3893552Z git switch -c 2025-07-17T06:41:40.3893746Z 2025-07-17T06:41:40.3893841Z Or undo this operation with: 2025-07-17T06:41:40.3894007Z 2025-07-17T06:41:40.3894092Z git switch - 2025-07-17T06:41:40.3894210Z 2025-07-17T06:41:40.3894422Z Turn off this advice by setting config variable advice.detachedHead to false 2025-07-17T06:41:40.3894739Z 2025-07-17T06:41:40.3940431Z 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.9.0a0+gita38f433 -DTORCH_CUDA_ARCH_LIST=8.6 -DUSE_CUDA=1 -DUSE_NUMPY=True -DUSE_XPU=0 C:\actions-runner\_work\pytorch\pytorch 2025-07-17T06:41:48.5736056Z -- The CXX compiler identification is MSVC 19.38.33145.0 2025-07-17T06:41:48.7156762Z -- The C compiler identification is MSVC 19.38.33145.0 2025-07-17T06:41:48.7369651Z -- Detecting CXX compiler ABI info 2025-07-17T06:41:55.4906516Z -- Detecting CXX compiler ABI info - done 2025-07-17T06:41:55.4932939Z -- Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-07-17T06:41:55.4938379Z -- Detecting CXX compile features 2025-07-17T06:41:55.4955885Z -- Detecting CXX compile features - done 2025-07-17T06:41:55.5112426Z -- Detecting C compiler ABI info 2025-07-17T06:41:55.8309382Z -- Detecting C compiler ABI info - done 2025-07-17T06:41:55.8332810Z -- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe - skipped 2025-07-17T06:41:55.8336738Z -- Detecting C compile features 2025-07-17T06:41:55.8347627Z -- Detecting C compile features - done 2025-07-17T06:41:55.8396882Z -- Not forcing any particular BLAS to be found 2025-07-17T06:41:55.8494112Z CMake Warning at CMakeLists.txt:418 (message): 2025-07-17T06:41:55.8494730Z TensorPipe cannot be used on Windows. Set it to OFF 2025-07-17T06:41:55.8494992Z 2025-07-17T06:41:55.8494997Z 2025-07-17T06:41:55.8495115Z CMake Warning at CMakeLists.txt:420 (message): 2025-07-17T06:41:55.8495448Z KleidiAI cannot be used on Windows. Set it to OFF 2025-07-17T06:41:55.8495689Z 2025-07-17T06:41:55.8495693Z 2025-07-17T06:41:55.8556925Z -- Performing Test C_HAS_AVX_1 2025-07-17T06:41:56.5189765Z -- Performing Test C_HAS_AVX_1 - Success 2025-07-17T06:41:56.5194659Z -- Performing Test C_HAS_AVX2_1 2025-07-17T06:41:56.9028599Z -- Performing Test C_HAS_AVX2_1 - Success 2025-07-17T06:41:56.9033406Z -- Performing Test C_HAS_AVX512_1 2025-07-17T06:41:57.2802796Z -- Performing Test C_HAS_AVX512_1 - Success 2025-07-17T06:41:57.2807256Z -- Performing Test CXX_HAS_AVX_1 2025-07-17T06:41:57.6466271Z -- Performing Test CXX_HAS_AVX_1 - Success 2025-07-17T06:41:57.6470970Z -- Performing Test CXX_HAS_AVX2_1 2025-07-17T06:41:57.9997008Z -- Performing Test CXX_HAS_AVX2_1 - Success 2025-07-17T06:41:58.0001630Z -- Performing Test CXX_HAS_AVX512_1 2025-07-17T06:41:58.3643182Z -- Performing Test CXX_HAS_AVX512_1 - Success 2025-07-17T06:41:58.3644842Z -- Current compiler supports avx2 extension. Will build perfkernels. 2025-07-17T06:41:58.3650903Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-07-17T06:41:58.9187007Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Success 2025-07-17T06:41:58.9187960Z -- Current compiler supports avx512f extension. Will build fbgemm. 2025-07-17T06:41:58.9216262Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-07-17T06:41:59.3387813Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Failed 2025-07-17T06:41:59.3411068Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-07-17T06:41:59.6554930Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Failed 2025-07-17T06:41:59.6562064Z -- Could not find hardware support for NEON on this machine. 2025-07-17T06:41:59.6562707Z -- No OMAP3 processor on this machine. 2025-07-17T06:41:59.6563003Z -- No OMAP4 processor on this machine. 2025-07-17T06:41:59.6563393Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-07-17T06:41:59.6644053Z -- Performing Test HAS/UTF_8 2025-07-17T06:41:59.9700615Z -- Performing Test HAS/UTF_8 - Success 2025-07-17T06:42:00.7514191Z -- Found CUDA: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 (found version "12.6") 2025-07-17T06:42:06.2353512Z -- The CUDA compiler identification is NVIDIA 12.6.85 2025-07-17T06:42:06.2575333Z -- Detecting CUDA compiler ABI info 2025-07-17T06:42:12.7322112Z -- Detecting CUDA compiler ABI info - done 2025-07-17T06:42:12.7654035Z -- Check for working CUDA compiler: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe - skipped 2025-07-17T06:42:14.9176608Z -- Detecting CUDA compile features 2025-07-17T06:42:14.9189292Z -- Detecting CUDA compile features - done 2025-07-17T06:42:14.9255723Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found version "12.6.85") 2025-07-17T06:42:16.0029020Z -- PyTorch: CUDA detected: 12.6 2025-07-17T06:42:16.0029624Z -- PyTorch: CUDA nvcc is: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-17T06:42:16.0030279Z -- PyTorch: CUDA toolkit directory: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-17T06:42:16.5760550Z -- PyTorch: Header version is: 12.6 2025-07-17T06:42:17.0038071Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-07-17T06:42:17.0077033Z CMake Warning at cmake/public/cuda.cmake:140 (message): 2025-07-17T06:42:17.0077452Z Failed to compute shorthash for libnvrtc.so 2025-07-17T06:42:17.0077766Z Call Stack (most recent call first): 2025-07-17T06:42:17.0078062Z cmake/Dependencies.cmake:44 (include) 2025-07-17T06:42:17.0078366Z CMakeLists.txt:865 (include) 2025-07-17T06:42:17.0078573Z 2025-07-17T06:42:17.0078774Z 2025-07-17T06:42:17.0124821Z -- Found CUDNN: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-07-17T06:42:17.0460551Z -- Could NOT find CUSPARSELT (missing: CUSPARSELT_LIBRARY_PATH CUSPARSELT_INCLUDE_PATH) 2025-07-17T06:42:17.0461515Z CMake Warning at cmake/public/cuda.cmake:226 (message): 2025-07-17T06:42:17.0461935Z Cannot find cuSPARSELt library. Turning the option off 2025-07-17T06:42:17.0462295Z Call Stack (most recent call first): 2025-07-17T06:42:17.0462580Z cmake/Dependencies.cmake:44 (include) 2025-07-17T06:42:17.0462861Z CMakeLists.txt:865 (include) 2025-07-17T06:42:17.0463021Z 2025-07-17T06:42:17.0463025Z 2025-07-17T06:42:17.0754068Z -- Could NOT find CUDSS (missing: CUDSS_LIBRARY_PATH CUDSS_INCLUDE_PATH) 2025-07-17T06:42:17.0754829Z CMake Warning at cmake/public/cuda.cmake:242 (message): 2025-07-17T06:42:17.0755240Z Cannot find CUDSS library. Turning the option off 2025-07-17T06:42:17.0755560Z Call Stack (most recent call first): 2025-07-17T06:42:17.0755898Z cmake/Dependencies.cmake:44 (include) 2025-07-17T06:42:17.0756179Z CMakeLists.txt:865 (include) 2025-07-17T06:42:17.0756360Z 2025-07-17T06:42:17.0756364Z 2025-07-17T06:42:17.0756519Z -- USE_CUFILE is set to 0. Compiling without cuFile support 2025-07-17T06:42:17.0762533Z CMake Warning at cmake/public/cuda.cmake:317 (message): 2025-07-17T06:42:17.0763000Z pytorch is not compatible with `CMAKE_CUDA_ARCHITECTURES` and will ignore 2025-07-17T06:42:17.0763487Z its value. Please configure `TORCH_CUDA_ARCH_LIST` instead. 2025-07-17T06:42:17.0763843Z Call Stack (most recent call first): 2025-07-17T06:42:17.0764133Z cmake/Dependencies.cmake:44 (include) 2025-07-17T06:42:17.0764416Z CMakeLists.txt:865 (include) 2025-07-17T06:42:17.0764591Z 2025-07-17T06:42:17.0764595Z 2025-07-17T06:42:17.0764773Z -- Added CUDA NVCC flags for: -gencode;arch=compute_86,code=sm_86 2025-07-17T06:42:17.0786895Z -- Building using own protobuf under third_party per request. 2025-07-17T06:42:17.0787491Z -- Use custom protobuf build. 2025-07-17T06:42:17.0809792Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-07-17T06:42:17.0810442Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-17T06:42:17.0810843Z CMake. 2025-07-17T06:42:17.0810947Z 2025-07-17T06:42:17.0811206Z Update the VERSION argument value or use a ... suffix to tell 2025-07-17T06:42:17.0811752Z CMake that the project does not need compatibility with older versions. 2025-07-17T06:42:17.0812068Z 2025-07-17T06:42:17.0812072Z 2025-07-17T06:42:17.0825066Z -- 2025-07-17T06:42:17.0825545Z -- 3.13.0.0 2025-07-17T06:42:17.0842648Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-07-17T06:42:17.2277418Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed 2025-07-17T06:42:17.2279577Z -- Looking for pthread_create in pthreads 2025-07-17T06:42:17.4033953Z -- Looking for pthread_create in pthreads - not found 2025-07-17T06:42:17.4034849Z -- Looking for pthread_create in pthread 2025-07-17T06:42:17.5762752Z -- Looking for pthread_create in pthread - not found 2025-07-17T06:42:17.5784296Z -- Found Threads: TRUE 2025-07-17T06:42:17.6755502Z -- Caffe2 protobuf include directory: $$ 2025-07-17T06:42:17.6790777Z -- Trying to find preferred BLAS backend of choice: MKL 2025-07-17T06:42:17.6814492Z -- MKL_THREADING = OMP 2025-07-17T06:42:17.6817446Z -- Looking for sys/types.h 2025-07-17T06:42:17.9960971Z -- Looking for sys/types.h - found 2025-07-17T06:42:17.9962810Z -- Looking for stdint.h 2025-07-17T06:42:18.3766688Z -- Looking for stdint.h - found 2025-07-17T06:42:18.3768498Z -- Looking for stddef.h 2025-07-17T06:42:18.7026065Z -- Looking for stddef.h - found 2025-07-17T06:42:18.7027299Z -- Check size of void* 2025-07-17T06:42:19.0217331Z -- Check size of void* - done 2025-07-17T06:42:19.0438168Z -- Looking for cblas_sgemm 2025-07-17T06:42:19.6328038Z -- Looking for cblas_sgemm - found 2025-07-17T06:42:19.6332137Z -- Looking for cblas_gemm_bf16bf16f32 2025-07-17T06:42:20.1876247Z -- Looking for cblas_gemm_bf16bf16f32 - found 2025-07-17T06:42:20.1876645Z -- Looking for cblas_gemm_f16f16f32 2025-07-17T06:42:20.7340046Z -- Looking for cblas_gemm_f16f16f32 - found 2025-07-17T06:42:20.7664040Z -- MKL libraries: C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core.lib;C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-17T06:42:20.7665255Z CMake Warning (dev) in cmake/Dependencies.cmake: 2025-07-17T06:42:20.7665590Z A logical block opening on the line 2025-07-17T06:42:20.7665826Z 2025-07-17T06:42:20.7666070Z C:/actions-runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:261 (if) 2025-07-17T06:42:20.7666452Z 2025-07-17T06:42:20.7666533Z closes on the line 2025-07-17T06:42:20.7666757Z 2025-07-17T06:42:20.7667011Z C:/actions-runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:263 (endif) 2025-07-17T06:42:20.7667406Z 2025-07-17T06:42:20.7667513Z with mis-matching arguments. 2025-07-17T06:42:20.7667823Z Call Stack (most recent call first): 2025-07-17T06:42:20.7668138Z CMakeLists.txt:865 (include) 2025-07-17T06:42:20.7668497Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:42:20.7668852Z 2025-07-17T06:42:20.7669021Z -- MKL include directory: C:/Jenkins/Miniconda3/Library/include 2025-07-17T06:42:20.7669428Z -- MKL OpenMP type: Intel 2025-07-17T06:42:20.7669828Z -- MKL OpenMP library: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-17T06:42:20.9393977Z -- The ASM compiler identification is MSVC 2025-07-17T06:42:20.9409799Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-17T06:42:20.9522911Z -- Building for XNNPACK_TARGET_PROCESSOR: x86_64 2025-07-17T06:42:20.9579876Z -- Generating microkernels.cmake 2025-07-17T06:42:25.9314381Z 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-07-17T06:42:25.9315770Z 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-07-17T06:42:25.9316634Z No microkernel found in src\reference\binary-elementwise.cc 2025-07-17T06:42:25.9317039Z No microkernel found in src\reference\packing.cc 2025-07-17T06:42:25.9317446Z No microkernel found in src\reference\unary-elementwise.cc 2025-07-17T06:42:26.0534456Z -- Found Git: C:/Program Files/Git/cmd/git.exe (found version "2.49.0.windows.1") 2025-07-17T06:42:26.1010411Z -- Google Benchmark version: v1.9.3, normalized to 1.9.3 2025-07-17T06:42:26.1030474Z -- Looking for shm_open in rt 2025-07-17T06:42:26.2843270Z -- Looking for shm_open in rt - not found 2025-07-17T06:42:26.2868329Z -- Performing Test HAVE_CXX_FLAG_WX 2025-07-17T06:42:26.5961917Z -- Performing Test HAVE_CXX_FLAG_WX - Success 2025-07-17T06:42:26.5966923Z -- Compiling and running to test HAVE_STD_REGEX 2025-07-17T06:42:28.4623873Z -- Performing Test HAVE_STD_REGEX -- success 2025-07-17T06:42:28.4624984Z -- Compiling and running to test HAVE_GNU_POSIX_REGEX 2025-07-17T06:42:28.5733311Z -- Performing Test HAVE_GNU_POSIX_REGEX -- failed to compile 2025-07-17T06:42:28.5733934Z -- Compiling and running to test HAVE_POSIX_REGEX 2025-07-17T06:42:28.6723515Z -- Performing Test HAVE_POSIX_REGEX -- failed to compile 2025-07-17T06:42:28.6724720Z -- Compiling and running to test HAVE_STEADY_CLOCK 2025-07-17T06:42:29.3900429Z -- Performing Test HAVE_STEADY_CLOCK -- success 2025-07-17T06:42:29.3937127Z -- Compiling and running to test HAVE_PTHREAD_AFFINITY 2025-07-17T06:42:29.4883429Z -- Performing Test HAVE_PTHREAD_AFFINITY -- failed to compile 2025-07-17T06:42:29.5084235Z CMake Warning (dev) at third_party/fbgemm/CMakeLists.txt:97 (find_package): 2025-07-17T06:42:29.5084837Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-17T06:42:29.5085387Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-17T06:42:29.5085905Z the cmake_policy command to set the policy and suppress this warning. 2025-07-17T06:42:29.5086211Z 2025-07-17T06:42:29.5086410Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:42:29.5086711Z 2025-07-17T06:42:29.5566100Z -- Found PythonInterp: C:/Jenkins/Miniconda3/python.exe (found version "3.9.19") 2025-07-17T06:42:29.5593242Z -- Performing Test COMPILER_SUPPORTS_AVX512 2025-07-17T06:42:29.8750800Z -- Performing Test COMPILER_SUPPORTS_AVX512 - Success 2025-07-17T06:42:29.8760580Z -- Performing Test HAVE_GNU_F2H_IEEE 2025-07-17T06:42:29.9945017Z -- Performing Test HAVE_GNU_F2H_IEEE - Failed 2025-07-17T06:42:29.9980460Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-07-17T06:42:30.3227381Z -- Check OMP with lib C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib and flags -openmp:experimental 2025-07-17T06:42:30.9840152Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-17T06:42:30.9840947Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-07-17T06:42:30.9841477Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-17T06:42:30.9841996Z problems in calling code that expects `find_package` result variables 2025-07-17T06:42:30.9842411Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-17T06:42:30.9842731Z Call Stack (most recent call first): 2025-07-17T06:42:30.9843220Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-17T06:42:30.9843749Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-07-17T06:42:30.9844413Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:42:30.9844732Z 2025-07-17T06:42:30.9844852Z -- Found OpenMP_C: -openmp:experimental 2025-07-17T06:42:31.3475817Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-17T06:42:31.3476611Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-07-17T06:42:31.3477160Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-17T06:42:31.3477659Z problems in calling code that expects `find_package` result variables 2025-07-17T06:42:31.3478092Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-17T06:42:31.3478415Z Call Stack (most recent call first): 2025-07-17T06:42:31.3478818Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-17T06:42:31.3479304Z third_party/fbgemm/CMakeLists.txt:148 (find_package) 2025-07-17T06:42:31.3479775Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:42:31.3480096Z 2025-07-17T06:42:31.3480219Z -- Found OpenMP_CXX: -openmp:experimental 2025-07-17T06:42:31.3490008Z -- Found OpenMP: TRUE 2025-07-17T06:42:31.3492184Z -- OpenMP found! OpenMP_C_INCLUDE_DIRS = 2025-07-17T06:42:31.6442257Z -- ========== 2025-07-17T06:42:31.6442563Z -- CMAKE_BUILD_TYPE = Release 2025-07-17T06:42:31.6442881Z -- CMAKE_CXX_FLAGS_DEBUG is /Ob0 /Od /RTC1 /bigobj 2025-07-17T06:42:31.6443250Z -- CMAKE_CXX_FLAGS_RELEASE is /O2 /Ob2 /DNDEBUG /bigobj 2025-07-17T06:42:31.6443570Z -- ========== 2025-07-17T06:42:31.6640377Z ** AsmJit Summary ** 2025-07-17T06:42:31.6640805Z ASMJIT_DIR=C:/actions-runner/_work/pytorch/pytorch/third_party/fbgemm/external/asmjit 2025-07-17T06:42:31.6641264Z ASMJIT_TEST=FALSE 2025-07-17T06:42:31.6641478Z ASMJIT_TARGET_TYPE=SHARED 2025-07-17T06:42:31.6641727Z ASMJIT_DEPS= 2025-07-17T06:42:31.6641924Z ASMJIT_LIBS=asmjit 2025-07-17T06:42:31.6642388Z ASMJIT_CFLAGS= 2025-07-17T06:42:31.6642822Z ASMJIT_PRIVATE_CFLAGS=-MP;-GF;-Zc:__cplusplus;-Zc:inline;-Zc:strictStrings;-Zc:threadSafeInit-;-W4 2025-07-17T06:42:31.6643331Z ASMJIT_PRIVATE_CFLAGS_DBG=-GS 2025-07-17T06:42:31.6643621Z ASMJIT_PRIVATE_CFLAGS_REL=-GS-;-O2;-Oi 2025-07-17T06:42:31.6746213Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION 2025-07-17T06:42:31.8752657Z -- Performing Test HAS_WNO_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-07-17T06:42:31.8777995Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION 2025-07-17T06:42:31.9552309Z -- Performing Test HAS_WNO_DEPRECATED_ANON_ENUM_ENUM_CONVERSION - Failed 2025-07-17T06:42:31.9577448Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION 2025-07-17T06:42:32.0687766Z -- Performing Test HAS_WNO_ERROR_DEPRECATED_ENUM_ENUM_CONVERSION - Failed 2025-07-17T06:42:32.0959604Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-17T06:42:32.0960292Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-17T06:42:32.0960702Z CMake. 2025-07-17T06:42:32.0960810Z 2025-07-17T06:42:32.0961014Z Update the VERSION argument value or use a ... suffix to tell 2025-07-17T06:42:32.0961536Z CMake that the project does not need compatibility with older versions. 2025-07-17T06:42:32.0961846Z 2025-07-17T06:42:32.0961850Z 2025-07-17T06:42:32.1030589Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-17T06:42:32.1031259Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-17T06:42:32.1031660Z CMake. 2025-07-17T06:42:32.1031765Z 2025-07-17T06:42:32.1031970Z Update the VERSION argument value or use a ... suffix to tell 2025-07-17T06:42:32.1032491Z CMake that the project does not need compatibility with older versions. 2025-07-17T06:42:32.1032808Z 2025-07-17T06:42:32.1032813Z 2025-07-17T06:42:32.1082260Z -- Using third party subdirectory Eigen. 2025-07-17T06:42:35.9662436Z -- Found Python: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter Development.Module NumPy 2025-07-17T06:42:35.9665353Z -- Using third_party/pybind11. 2025-07-17T06:42:35.9666289Z -- pybind11 include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-07-17T06:42:35.9720796Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-07-17T06:42:35.9721403Z -- Using third_party/opentelemetry-cpp. 2025-07-17T06:42:35.9722045Z -- opentelemetry api include dirs: C:/actions-runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-07-17T06:42:36.5800763Z -- Could NOT find MPI_C (missing: MPI_C_LIB_NAMES MPI_C_HEADER_DIR MPI_C_WORKS) 2025-07-17T06:42:36.9791843Z -- Could NOT find MPI_CXX (missing: MPI_CXX_LIB_NAMES MPI_CXX_HEADER_DIR MPI_CXX_WORKS) 2025-07-17T06:42:36.9800562Z -- Could NOT find MPI (missing: MPI_C_FOUND MPI_CXX_FOUND) 2025-07-17T06:42:36.9805146Z CMake Warning at cmake/Dependencies.cmake:922 (message): 2025-07-17T06:42:36.9805641Z Not compiling with MPI. Suppress this warning with -DUSE_MPI=OFF 2025-07-17T06:42:36.9806025Z Call Stack (most recent call first): 2025-07-17T06:42:36.9806355Z CMakeLists.txt:865 (include) 2025-07-17T06:42:36.9806521Z 2025-07-17T06:42:36.9806526Z 2025-07-17T06:42:36.9863124Z -- Adding OpenMP CXX_FLAGS: -openmp:experimental 2025-07-17T06:42:36.9863669Z -- Will link against OpenMP libraries: C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib 2025-07-17T06:42:36.9872906Z -- Found nvtx3: C:/actions-runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-07-17T06:42:36.9903545Z -- Found CUB: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-07-17T06:42:36.9926775Z -- MSVC detected 2025-07-17T06:42:36.9927005Z -- Set USE_REDIS OFF 2025-07-17T06:42:36.9927223Z -- Set USE_IBVERBS OFF 2025-07-17T06:42:36.9927431Z -- Set USE_NCCL OFF 2025-07-17T06:42:36.9928110Z -- Set USE_RCCL OFF 2025-07-17T06:42:36.9928358Z -- Set USE_LIBUV OFF 2025-07-17T06:42:36.9930003Z -- Gloo build as SHARED library 2025-07-17T06:42:36.9975896Z -- Found CUDAToolkit: C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include (found suitable version "12.6.85", minimum required is "7.0") 2025-07-17T06:42:38.0450035Z -- CUDA detected: 12.6.85 2025-07-17T06:42:38.0581624Z -- GLOO_USE_TORCH_DTYPES : 1 C:/actions-runner/_work/pytorch/pytorch;C:/actions-runner/_work/pytorch/pytorch/build 2025-07-17T06:42:38.4876555Z -- Found Python3: C:\Jenkins\Miniconda3\python.exe (found version "3.9.19") found components: Interpreter 2025-07-17T06:42:38.4890682Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-07-17T06:42:38.4891113Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-07-17T06:42:38.4893910Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-17T06:42:38.4901607Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-17T06:42:38.4907952Z Generated: C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-17T06:42:38.7193444Z -- 2025-07-17T06:42:38.7193645Z -- ******** Summary ******** 2025-07-17T06:42:38.7193905Z -- CMake version : 3.27.9 2025-07-17T06:42:38.7194279Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-07-17T06:42:38.7194657Z -- System : Windows 2025-07-17T06:42:38.7195277Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-17T06:42:38.7195916Z -- C++ compiler version : 19.38.33145.0 2025-07-17T06:42:38.7196507Z -- CXX flags : /DWIN32 /D_WINDOWS /EHsc /Zc:__cplusplus /bigobj /FS /utf-8 -DUSE_PTHREADPOOL /EHsc /wd26812 2025-07-17T06:42:38.7197266Z -- Build type : Release 2025-07-17T06:42:38.7197656Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-07-17T06:42:38.7199167Z -- 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-07-17T06:42:38.7200671Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-07-17T06:42:38.7201506Z -- CMAKE_MODULE_PATH : C:/actions-runner/_work/pytorch/pytorch/cmake/Modules;C:/actions-runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-07-17T06:42:38.7202225Z -- 2025-07-17T06:42:38.7202417Z -- ONNX version : 1.18.0 2025-07-17T06:42:38.7202737Z -- ONNX NAMESPACE : onnx_torch 2025-07-17T06:42:38.7203089Z -- ONNX_USE_LITE_PROTO : OFF 2025-07-17T06:42:38.7203377Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-07-17T06:42:38.7203665Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-07-17T06:42:38.7203971Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-07-17T06:42:38.7204256Z -- ONNX_WERROR : OFF 2025-07-17T06:42:38.7204522Z -- ONNX_BUILD_TESTS : OFF 2025-07-17T06:42:38.7204795Z -- BUILD_SHARED_LIBS : OFF 2025-07-17T06:42:38.7205043Z -- 2025-07-17T06:42:38.7205338Z -- Protobuf compiler : $ 2025-07-17T06:42:38.7205716Z -- Protobuf includes : 2025-07-17T06:42:38.7205997Z -- Protobuf libraries : 2025-07-17T06:42:38.7206272Z -- ONNX_BUILD_PYTHON : OFF 2025-07-17T06:42:38.7206647Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-07-17T06:42:38.7207187Z -- Adding -DNDEBUG to compile flags 2025-07-17T06:42:38.7244805Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 2025-07-17T06:42:38.8194709Z -- Checking prototype magma_get_sgeqrf_nb for MAGMA_V2 - False 2025-07-17T06:42:38.8195127Z -- Compiling with MAGMA support 2025-07-17T06:42:38.8195613Z -- MAGMA INCLUDE DIRECTORIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/include 2025-07-17T06:42:38.8196399Z -- MAGMA LIBRARIES: C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/magma/lib/magma.lib 2025-07-17T06:42:38.8196869Z -- MAGMA V2 check: 0 2025-07-17T06:42:38.8200618Z -- Could not find hardware support for NEON on this machine. 2025-07-17T06:42:38.8200985Z -- No OMAP3 processor on this machine. 2025-07-17T06:42:38.8201281Z -- No OMAP4 processor on this machine. 2025-07-17T06:42:38.8216128Z -- Looking for sbgemm_ 2025-07-17T06:42:44.3142053Z -- Looking for sbgemm_ - not found 2025-07-17T06:42:44.3152885Z -- Found a library with LAPACK API (mkl). 2025-07-17T06:42:44.3154353Z disabling ROCM because NOT USE_ROCM is set 2025-07-17T06:42:44.3154705Z -- MIOpen not found. Compiling without MIOpen support 2025-07-17T06:42:44.3163597Z -- Will build oneDNN UKERNEL 2025-07-17T06:42:44.3253608Z -- MKLDNN_CPU_RUNTIME = OMP 2025-07-17T06:42:44.3272617Z -- DNNL_TARGET_ARCH: X64 2025-07-17T06:42:44.3301241Z -- DNNL_LIBRARY_NAME: dnnl 2025-07-17T06:42:44.3394651Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-17T06:42:44.3395395Z The package name passed to `find_package_handle_standard_args` (OpenMP_C) 2025-07-17T06:42:44.3395911Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-17T06:42:44.3396415Z problems in calling code that expects `find_package` result variables 2025-07-17T06:42:44.3396819Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-17T06:42:44.3397120Z Call Stack (most recent call first): 2025-07-17T06:42:44.3397737Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-17T06:42:44.3398240Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-07-17T06:42:44.3398653Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-07-17T06:42:44.3399145Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:42:44.3399491Z 2025-07-17T06:42:44.3399612Z -- Found OpenMP_C: -openmp:experimental 2025-07-17T06:42:44.3404574Z CMake Warning (dev) at C:/Program Files/CMake/share/cmake-3.27/Modules/FindPackageHandleStandardArgs.cmake:438 (message): 2025-07-17T06:42:44.3405414Z The package name passed to `find_package_handle_standard_args` (OpenMP_CXX) 2025-07-17T06:42:44.3405923Z does not match the name of the calling package (OpenMP). This can lead to 2025-07-17T06:42:44.3406426Z problems in calling code that expects `find_package` result variables 2025-07-17T06:42:44.3406831Z (e.g., `_FOUND`) to follow a certain pattern. 2025-07-17T06:42:44.3407138Z Call Stack (most recent call first): 2025-07-17T06:42:44.3407531Z cmake/Modules/FindOpenMP.cmake:635 (find_package_handle_standard_args) 2025-07-17T06:42:44.3408020Z third_party/ideep/mkl-dnn/cmake/OpenMP.cmake:41 (find_package) 2025-07-17T06:42:44.3408447Z third_party/ideep/mkl-dnn/CMakeLists.txt:89 (include) 2025-07-17T06:42:44.3408872Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:42:44.3409183Z 2025-07-17T06:42:44.3409301Z -- Found OpenMP_CXX: -openmp:experimental 2025-07-17T06:42:44.3827201Z -- Enabled testing coverage: CI 2025-07-17T06:42:44.3838390Z -- Enabled workload: TRAINING 2025-07-17T06:42:44.3838694Z -- Enabled primitives: ALL 2025-07-17T06:42:44.3839082Z -- Enabled primitive CPU ISA: ALL 2025-07-17T06:42:44.3839454Z -- Enabled primitive GPU ISA: ALL 2025-07-17T06:42:44.3839853Z -- Enabled GeMM kernels ISA: ALL 2025-07-17T06:42:44.3942865Z -- Primitive cache is enabled 2025-07-17T06:42:44.3944096Z -- Experimental functionality for ukernels is enabled 2025-07-17T06:42:44.4590502Z -- The ASM_MASM compiler identification is MSVC 2025-07-17T06:42:44.5056468Z -- Found assembler: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/ml64.exe 2025-07-17T06:42:44.5308778Z -- Graph component is enabled 2025-07-17T06:42:44.5415502Z -- Graph compiler backend is disabled. 2025-07-17T06:42:44.5597245Z -- Found MKL-DNN: TRUE 2025-07-17T06:42:44.5689873Z -- {fmt} version: 11.2.0 2025-07-17T06:42:44.5690142Z -- Build type: Release 2025-07-17T06:42:44.5765949Z -- Using Kineto with CUPTI support 2025-07-17T06:42:44.5767227Z -- Configuring Kineto dependency: 2025-07-17T06:42:44.5767704Z -- KINETO_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-07-17T06:42:44.5768162Z -- KINETO_BUILD_TESTS = OFF 2025-07-17T06:42:44.5768415Z -- KINETO_LIBRARY_TYPE = static 2025-07-17T06:42:44.5768817Z -- CUDA_SOURCE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-17T06:42:44.5769404Z -- CUDA_INCLUDE_DIRS = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-07-17T06:42:44.5772444Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-07-17T06:42:44.5773220Z -- CUDA_cupti_LIBRARY = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/lib64/cupti.lib 2025-07-17T06:42:44.5773733Z -- Found CUPTI 2025-07-17T06:42:44.5835377Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-07-17T06:42:44.5835987Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-17T06:42:44.5836503Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-17T06:42:44.5837003Z the cmake_policy command to set the policy and suppress this warning. 2025-07-17T06:42:44.5837308Z 2025-07-17T06:42:44.5837526Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-17T06:42:44.5838591Z 2025-07-17T06:42:44.6266840Z -- ROCM_SOURCE_DIR = 2025-07-17T06:42:44.7620381Z -- Kineto: FMT_SOURCE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt 2025-07-17T06:42:44.7621048Z -- Kineto: FMT_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/fmt/include 2025-07-17T06:42:44.7621709Z -- CUPTI_INCLUDE_DIR = C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/extras/CUPTI/include 2025-07-17T06:42:44.7622288Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-07-17T06:42:44.7622904Z -- DYNOLOG_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-07-17T06:42:44.7623854Z -- IPCFABRIC_INCLUDE_DIR = C:/actions-runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-07-17T06:42:44.7648927Z -- Configured Kineto 2025-07-17T06:42:44.7705090Z -- Performing Test HAS/WD4624 2025-07-17T06:42:45.3479303Z -- Performing Test HAS/WD4624 - Success 2025-07-17T06:42:45.3503310Z -- Performing Test HAS/WD4068 2025-07-17T06:42:46.2083389Z -- Performing Test HAS/WD4068 - Success 2025-07-17T06:42:46.2107476Z -- Performing Test HAS/WD4067 2025-07-17T06:42:46.5227459Z -- Performing Test HAS/WD4067 - Success 2025-07-17T06:42:46.5252277Z -- Performing Test HAS/WD4267 2025-07-17T06:42:46.8360621Z -- Performing Test HAS/WD4267 - Success 2025-07-17T06:42:46.8388035Z -- Performing Test HAS/WD4661 2025-07-17T06:42:47.1476833Z -- Performing Test HAS/WD4661 - Success 2025-07-17T06:42:47.1506231Z -- Performing Test HAS/WD4717 2025-07-17T06:42:47.4551831Z -- Performing Test HAS/WD4717 - Success 2025-07-17T06:42:47.4575782Z -- Performing Test HAS/WD4244 2025-07-17T06:42:47.7615080Z -- Performing Test HAS/WD4244 - Success 2025-07-17T06:42:47.7639525Z -- Performing Test HAS/WD4804 2025-07-17T06:42:48.0661200Z -- Performing Test HAS/WD4804 - Success 2025-07-17T06:42:48.0685390Z -- Performing Test HAS/WD4273 2025-07-17T06:42:48.3696388Z -- Performing Test HAS/WD4273 - Success 2025-07-17T06:42:48.3722044Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-07-17T06:42:48.4479062Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-07-17T06:42:49.5979963Z -- 2025-07-17T06:42:49.5980821Z -- Architecture: x64 2025-07-17T06:42:49.5984784Z -- Use the C++ compiler to compile (MI_USE_CXX=ON) 2025-07-17T06:42:49.5991287Z -- 2025-07-17T06:42:49.5991479Z -- Library name : mimalloc 2025-07-17T06:42:49.5991733Z -- Version : 2.2.4 2025-07-17T06:42:49.5991952Z -- Build type : release 2025-07-17T06:42:49.5992531Z -- C++ Compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-17T06:42:49.5993141Z -- Compiler flags : /Zc:__cplusplus 2025-07-17T06:42:49.5993498Z -- Compiler defines : MI_CMAKE_BUILD_TYPE=release;MI_BUILD_RELEASE 2025-07-17T06:42:49.5993920Z -- Link libraries : psapi;shell32;user32;advapi32;bcrypt 2025-07-17T06:42:49.5994299Z -- Build targets : static 2025-07-17T06:42:49.5994578Z -- 2025-07-17T06:42:49.6103506Z -- don't use NUMA 2025-07-17T06:42:49.6157650Z -- Looking for backtrace 2025-07-17T06:42:49.7080332Z -- Looking for backtrace - not found 2025-07-17T06:42:49.7164475Z -- Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR) 2025-07-17T06:42:54.1413044Z -- headers outputs: 2025-07-17T06:42:56.1747447Z -- sources outputs: 2025-07-17T06:42:57.7112835Z -- declarations_yaml outputs: 2025-07-17T06:42:57.7192615Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT 2025-07-17T06:43:03.4400798Z -- Performing Test COMPILER_SUPPORTS_NO_AVX256_SPLIT - Failed 2025-07-17T06:43:03.7440294Z -- Using ATen parallel backend: OMP 2025-07-17T06:43:04.2941472Z -- Found OpenSSL: C:/Jenkins/Miniconda3/Library/lib/libcrypto.lib (found version "3.0.16") 2025-07-17T06:43:04.3826289Z -- Check size of long double 2025-07-17T06:43:04.7095510Z -- Check size of long double - done 2025-07-17T06:43:04.7102857Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-07-17T06:43:04.8289007Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-07-17T06:43:04.8292446Z -- Performing Test COMPILER_SUPPORTS_SSE2 2025-07-17T06:43:05.2760846Z -- Performing Test COMPILER_SUPPORTS_SSE2 - Success 2025-07-17T06:43:05.2764191Z -- Performing Test COMPILER_SUPPORTS_SSE4 2025-07-17T06:43:05.7143973Z -- Performing Test COMPILER_SUPPORTS_SSE4 - Success 2025-07-17T06:43:05.7147132Z -- Performing Test COMPILER_SUPPORTS_AVX 2025-07-17T06:43:06.0883350Z -- Performing Test COMPILER_SUPPORTS_AVX - Success 2025-07-17T06:43:06.0887718Z -- Performing Test COMPILER_SUPPORTS_FMA4 2025-07-17T06:43:06.4518408Z -- Performing Test COMPILER_SUPPORTS_FMA4 - Success 2025-07-17T06:43:06.4521590Z -- Performing Test COMPILER_SUPPORTS_AVX2 2025-07-17T06:43:06.8055031Z -- Performing Test COMPILER_SUPPORTS_AVX2 - Success 2025-07-17T06:43:06.8058971Z -- Performing Test COMPILER_SUPPORTS_AVX512F 2025-07-17T06:43:07.1654795Z -- Performing Test COMPILER_SUPPORTS_AVX512F - Success 2025-07-17T06:43:07.1697202Z -- Found OpenMP_C: -openmp:experimental (found version "2.0") 2025-07-17T06:43:07.1709213Z -- Found OpenMP_CXX: -openmp:experimental (found version "2.0") 2025-07-17T06:43:07.1719705Z -- Found OpenMP: TRUE (found version "2.0") 2025-07-17T06:43:07.1724716Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-07-17T06:43:07.5227771Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Success 2025-07-17T06:43:07.5230258Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-07-17T06:43:07.6432896Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-07-17T06:43:07.6436194Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-07-17T06:43:07.7642508Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-07-17T06:43:07.7646018Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-07-17T06:43:07.9610556Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Failed 2025-07-17T06:43:07.9613405Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-07-17T06:43:08.0648308Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-07-17T06:43:08.1532217Z Target system: Windows-10.0.17763 2025-07-17T06:43:08.1532569Z -- Configuring build for SLEEF-v3.8.0 2025-07-17T06:43:08.1532868Z Target processor: AMD64 2025-07-17T06:43:08.1533112Z Host system: Windows-10.0.17763 2025-07-17T06:43:08.1533357Z Host processor: AMD64 2025-07-17T06:43:08.1534057Z Detected C compiler: MSVC @ C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-17T06:43:08.1534684Z CMake: 3.27.9 2025-07-17T06:43:08.1534965Z Make program: C:/Jenkins/Miniconda3/Library/bin/ninja.exe 2025-07-17T06:43:08.1535476Z -- Using option `/D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_DEPRECATE ` to compile libsleef 2025-07-17T06:43:08.1535935Z -- Building shared libs : OFF 2025-07-17T06:43:08.1536197Z -- Building static test bins: OFF 2025-07-17T06:43:08.1536448Z -- MPFR : LIB_MPFR-NOTFOUND 2025-07-17T06:43:08.1536723Z -- GMP : LIBGMP-NOTFOUND 2025-07-17T06:43:08.1536935Z -- RT : 2025-07-17T06:43:08.1537124Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-07-17T06:43:08.1537353Z -- OPENSSL : 3.0.16 2025-07-17T06:43:08.1537562Z -- SDE : SDE_COMMAND-NOTFOUND 2025-07-17T06:43:08.1537812Z -- COMPILER_SUPPORTS_OPENMP : FALSE 2025-07-17T06:43:08.2088309Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-07-17T06:43:08.2088951Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-07-17T06:43:08.2089769Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-07-17T06:43:08.2090531Z core header install: C:/actions-runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-07-17T06:43:08.8598778Z -- NVSHMEM not found, not building with NVSHMEM support. 2025-07-17T06:43:09.0616786Z CMake Warning at CMakeLists.txt:1269 (message): 2025-07-17T06:43:09.0617302Z Generated cmake files are only fully tested if one builds with system glog, 2025-07-17T06:43:09.0618548Z gflags, and protobuf. Other settings may generate files that are not well 2025-07-17T06:43:09.0619130Z tested. 2025-07-17T06:43:09.0619266Z 2025-07-17T06:43:09.0619270Z 2025-07-17T06:43:09.0642757Z -- 2025-07-17T06:43:09.0642977Z -- ******** Summary ******** 2025-07-17T06:43:09.0643223Z -- General: 2025-07-17T06:43:09.0643404Z -- CMake version : 3.27.9 2025-07-17T06:43:09.0643737Z -- CMake command : C:/Program Files/CMake/bin/cmake.exe 2025-07-17T06:43:09.0644083Z -- System : Windows 2025-07-17T06:43:09.0644677Z -- C++ compiler : C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.38.33130/bin/Hostx64/x64/cl.exe 2025-07-17T06:43:09.0645271Z -- C++ compiler id : MSVC 2025-07-17T06:43:09.0645523Z -- C++ compiler version : 19.38.33145.0 2025-07-17T06:43:09.0645807Z -- Using ccache if found : OFF 2025-07-17T06:43:09.0646999Z -- CXX flags : /DWIN32 /D_WINDOWS /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-07-17T06:43:09.0648552Z -- Shared LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-17T06:43:09.0649047Z -- Static LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-17T06:43:09.0649501Z -- Module LD flags : /machine:x64 /ignore:4049 /ignore:4217 /ignore:4099 2025-07-17T06:43:09.0649878Z -- Build type : Release 2025-07-17T06:43:09.0650926Z -- 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-07-17T06:43:09.0653334Z -- 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-07-17T06:43:09.0654876Z -- CMAKE_INSTALL_PREFIX : C:/actions-runner/_work/pytorch/pytorch/torch 2025-07-17T06:43:09.0655275Z -- USE_GOLD_LINKER : OFF 2025-07-17T06:43:09.0655509Z -- 2025-07-17T06:43:09.0655692Z -- TORCH_VERSION : 2.9.0 2025-07-17T06:43:09.0655968Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-07-17T06:43:09.0656243Z -- BUILD_BINARY : OFF 2025-07-17T06:43:09.0656483Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-07-17T06:43:09.0656729Z -- Link local protobuf : ON 2025-07-17T06:43:09.0656971Z -- BUILD_PYTHON : True 2025-07-17T06:43:09.0657224Z -- Python version : 3.9.19 2025-07-17T06:43:09.0657556Z -- Python executable : C:\Jenkins\Miniconda3\python.exe 2025-07-17T06:43:09.0657975Z -- Python library : C:/Jenkins/Miniconda3/libs/python39.lib 2025-07-17T06:43:09.0658378Z -- Python includes : C:/Jenkins/Miniconda3/include 2025-07-17T06:43:09.0658825Z -- Python site-package : C:\Jenkins\Miniconda3\Lib\site-packages 2025-07-17T06:43:09.0659231Z -- BUILD_SHARED_LIBS : ON 2025-07-17T06:43:09.0659498Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-07-17T06:43:09.0659784Z -- BUILD_TEST : True 2025-07-17T06:43:09.0660027Z -- BUILD_JNI : OFF 2025-07-17T06:43:09.0660264Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-07-17T06:43:09.0660514Z -- BUILD_LITE_INTERPRETER: OFF 2025-07-17T06:43:09.0660759Z -- INTERN_BUILD_MOBILE : 2025-07-17T06:43:09.0661001Z -- TRACING_BASED : OFF 2025-07-17T06:43:09.0661230Z -- USE_BLAS : 1 2025-07-17T06:43:09.0661457Z -- BLAS : mkl 2025-07-17T06:43:09.0661817Z -- BLAS_HAS_SBGEMM : 2025-07-17T06:43:09.0662056Z -- USE_LAPACK : 1 2025-07-17T06:43:09.0662293Z -- LAPACK : mkl 2025-07-17T06:43:09.0662522Z -- USE_ASAN : OFF 2025-07-17T06:43:09.0662757Z -- USE_TSAN : OFF 2025-07-17T06:43:09.0662997Z -- USE_CPP_CODE_COVERAGE : OFF 2025-07-17T06:43:09.0663239Z -- USE_CUDA : 1 2025-07-17T06:43:09.0663464Z -- Split CUDA : 2025-07-17T06:43:09.0663695Z -- CUDA static link : OFF 2025-07-17T06:43:09.0663934Z -- USE_CUDNN : ON 2025-07-17T06:43:09.0664229Z -- USE_CUSPARSELT : OFF 2025-07-17T06:43:09.0664498Z -- USE_CUDSS : OFF 2025-07-17T06:43:09.0664727Z -- USE_CUFILE : OFF 2025-07-17T06:43:09.0665003Z -- CUDA version : 12.6 2025-07-17T06:43:09.0665255Z -- USE_FLASH_ATTENTION : OFF 2025-07-17T06:43:09.0665514Z -- USE_MEM_EFF_ATTENTION : ON 2025-07-17T06:43:09.0665765Z -- cuDNN version : 9.10.2 2025-07-17T06:43:09.0666166Z -- CUDA root directory : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-17T06:43:09.0666772Z -- CUDA library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cuda.lib 2025-07-17T06:43:09.0667426Z -- cudart library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart.lib 2025-07-17T06:43:09.0668094Z -- cublas library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cublas.lib 2025-07-17T06:43:09.0668738Z -- cufft library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cufft.lib 2025-07-17T06:43:09.0669467Z -- curand library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/curand.lib 2025-07-17T06:43:09.0670137Z -- cusparse library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cusparse.lib 2025-07-17T06:43:09.0671003Z -- cuDNN library : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudnn.lib 2025-07-17T06:43:09.0671626Z -- nvrtc : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/nvrtc.lib 2025-07-17T06:43:09.0672224Z -- CUDA include path : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/include 2025-07-17T06:43:09.0672840Z -- NVCC executable : C:/actions-runner/_work/pytorch/pytorch/build/win_tmp/bin/nvcc.bat 2025-07-17T06:43:09.0673454Z -- CUDA compiler : C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/bin/nvcc.exe 2025-07-17T06:43:09.0677258Z -- 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-07-17T06:43:09.0680800Z -- CUDA host compiler : 2025-07-17T06:43:09.0681056Z -- CUDA --device-c : OFF 2025-07-17T06:43:09.0681319Z -- USE_TENSORRT : 2025-07-17T06:43:09.0681557Z -- USE_XPU : 0 2025-07-17T06:43:09.0681792Z -- USE_ROCM : OFF 2025-07-17T06:43:09.0682060Z -- BUILD_NVFUSER : 2025-07-17T06:43:09.0682332Z -- USE_EIGEN_FOR_BLAS : 2025-07-17T06:43:09.0682568Z -- USE_FBGEMM : ON 2025-07-17T06:43:09.0682928Z -- USE_FAKELOWP : OFF 2025-07-17T06:43:09.0683176Z -- USE_KINETO : ON 2025-07-17T06:43:09.0683417Z -- USE_GFLAGS : OFF 2025-07-17T06:43:09.0683648Z -- USE_GLOG : OFF 2025-07-17T06:43:09.0683888Z -- USE_LITE_PROTO : OFF 2025-07-17T06:43:09.0684123Z -- USE_PYTORCH_METAL : OFF 2025-07-17T06:43:09.0684386Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-07-17T06:43:09.0684668Z -- USE_MPS : OFF 2025-07-17T06:43:09.0684906Z -- CAN_COMPILE_METAL : 2025-07-17T06:43:09.0685149Z -- USE_MKL : ON 2025-07-17T06:43:09.0685385Z -- USE_STATIC_MKL : OFF 2025-07-17T06:43:09.0685625Z -- USE_MKLDNN : ON 2025-07-17T06:43:09.0685851Z -- USE_MKLDNN_ACL : OFF 2025-07-17T06:43:09.0686092Z -- USE_MKLDNN_CBLAS : OFF 2025-07-17T06:43:09.0686326Z -- USE_UCC : OFF 2025-07-17T06:43:09.0686582Z -- USE_ITT : ON 2025-07-17T06:43:09.0686825Z -- USE_XCCL : OFF 2025-07-17T06:43:09.0687046Z -- USE_NCCL : OFF 2025-07-17T06:43:09.0687287Z -- Found NVSHMEM : 2025-07-17T06:43:09.0687515Z -- USE_NNPACK : OFF 2025-07-17T06:43:09.0687799Z -- USE_NUMPY : ON 2025-07-17T06:43:09.0688060Z -- USE_OBSERVERS : ON 2025-07-17T06:43:09.0688301Z -- USE_OPENCL : OFF 2025-07-17T06:43:09.0688529Z -- USE_OPENMP : ON 2025-07-17T06:43:09.0688763Z -- USE_MIMALLOC : ON 2025-07-17T06:43:09.0688999Z -- USE_MIMALLOC_ON_MKL : OFF 2025-07-17T06:43:09.0689251Z -- USE_VULKAN : OFF 2025-07-17T06:43:09.0689481Z -- USE_PROF : OFF 2025-07-17T06:43:09.0689713Z -- USE_PYTORCH_QNNPACK : OFF 2025-07-17T06:43:09.0689955Z -- USE_XNNPACK : ON 2025-07-17T06:43:09.0690179Z -- USE_DISTRIBUTED : ON 2025-07-17T06:43:09.0690416Z -- USE_MPI : OFF 2025-07-17T06:43:09.0690764Z -- USE_GLOO : ON 2025-07-17T06:43:09.0691017Z -- USE_GLOO_WITH_OPENSSL : OFF 2025-07-17T06:43:09.0691262Z -- USE_GLOO_IBVERBS : OFF 2025-07-17T06:43:09.0691522Z -- USE_TENSORPIPE : OFF 2025-07-17T06:43:09.0691818Z -- Public Dependencies : caffe2::mkl 2025-07-17T06:43:09.0692614Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;XNNPACK;microkernels-prod;fbgemm;ittnotify;fp16;caffe2::openmp;gloo;fmt::fmt-header-only;kineto 2025-07-17T06:43:09.0693405Z -- Public CUDA Deps. : 2025-07-17T06:43:09.0695612Z -- Private CUDA Deps. : caffe2::curand;caffe2::cufft;caffe2::cublas;torch::cudnn;gloo_cuda;fmt::fmt-header-only;C:/Jenkins/Miniconda3/Library/lib/mkl_lapack95_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_lp64.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_intel_thread.lib;C:/Jenkins/Miniconda3/Library/lib/mkl_core.lib;C:/Jenkins/Miniconda3/Library/lib/libiomp5md.lib;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64/cudart_static.lib;CUDA::cusparse;CUDA::cufft;CUDA::cusolver;torch::magma;ATEN_CUDA_FILES_GEN_LIB 2025-07-17T06:43:09.0697802Z -- USE_COREML_DELEGATE : OFF 2025-07-17T06:43:09.0698066Z -- BUILD_LAZY_TS_BACKEND : ON 2025-07-17T06:43:09.0698310Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-07-17T06:43:09.0768914Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-07-17T06:43:09.1523372Z -- Performing Test HAS_WMISSING_PROTOTYPES - Failed 2025-07-17T06:43:09.1548665Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-07-17T06:43:09.2511224Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Failed 2025-07-17T06:43:09.2594348Z -- Configuring done (88.8s) 2025-07-17T06:43:17.2308994Z -- Generating done (6.9s) 2025-07-17T06:43:17.4814007Z CMake Warning: 2025-07-17T06:43:17.4814388Z Manually-specified variables were not used by the project: 2025-07-17T06:43:17.4814674Z 2025-07-17T06:43:17.4814770Z BUILD_ENVIRONMENT 2025-07-17T06:43:17.4814967Z BUILD_TYPE 2025-07-17T06:43:17.4815402Z BUILD_WHEEL 2025-07-17T06:43:17.4815526Z 2025-07-17T06:43:17.4815531Z 2025-07-17T06:43:17.4842578Z -- Build files have been written to: C:/actions-runner/_work/pytorch/pytorch/build 2025-07-17T06:43:17.5775811Z cmake --build . --target install --config Release -j 8 2025-07-17T06:43:23.3509203Z [1/4] Generating ATen declarations_yaml 2025-07-17T06:43:31.5234808Z [2/4] Generating ATen headers 2025-07-17T06:43:31.7659381Z [3/4] Generating ATen sources 2025-07-17T06:43:37.2164602Z [1/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-07-17T06:43:37.2238082Z [2/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\arena.cc.obj 2025-07-17T06:43:37.2339056Z [3/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-07-17T06:43:37.2404629Z [4/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-07-17T06:43:37.2419862Z [5/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set.cc.obj 2025-07-17T06:43:37.2478256Z [6/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-07-17T06:43:37.2606449Z [7/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any_lite.cc.obj 2025-07-17T06:43:37.2622925Z [8/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-07-17T06:43:37.4886467Z [9/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-07-17T06:43:37.5013052Z [10/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-07-17T06:43:37.5129448Z [11/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-07-17T06:43:37.5143548Z [12/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-07-17T06:43:37.5297333Z [13/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\parse_context.cc.obj 2025-07-17T06:43:37.5514116Z [14/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-07-17T06:43:37.5584994Z [15/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message_lite.cc.obj 2025-07-17T06:43:37.7521918Z [16/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-07-17T06:43:37.7649742Z [17/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-07-17T06:43:37.7902791Z [18/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-07-17T06:43:37.7959581Z [19/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-07-17T06:43:37.8026287Z [20/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-07-17T06:43:37.8096035Z [21/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-07-17T06:43:38.0077686Z [22/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-07-17T06:43:38.0478501Z [23/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-07-17T06:43:38.0493634Z [24/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-07-17T06:43:38.0831194Z [25/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.cc.obj 2025-07-17T06:43:38.0920388Z [26/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\any.pb.cc.obj 2025-07-17T06:43:38.1306343Z [27/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-07-17T06:43:38.3227670Z [28/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\api.pb.cc.obj 2025-07-17T06:43:38.3964147Z [29/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\importer.cc.obj 2025-07-17T06:43:38.4149199Z [30/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\compiler\parser.cc.obj 2025-07-17T06:43:38.4699507Z [31/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.cc.obj 2025-07-17T06:43:38.4821487Z [32/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor_database.cc.obj 2025-07-17T06:43:38.4837992Z [33/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\descriptor.pb.cc.obj 2025-07-17T06:43:38.6397398Z [34/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\duration.pb.cc.obj 2025-07-17T06:43:38.7078729Z [35/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\empty.pb.cc.obj 2025-07-17T06:43:38.7553225Z [36/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\dynamic_message.cc.obj 2025-07-17T06:43:38.7710407Z [37/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\gzip_stream.cc.obj 2025-07-17T06:43:38.7726763Z [38/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\field_mask.pb.cc.obj 2025-07-17T06:43:38.8161351Z [39/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\extension_set_heavy.cc.obj 2025-07-17T06:43:38.8652577Z [40/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_reflection.cc.obj 2025-07-17T06:43:38.9357362Z [41/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-07-17T06:43:38.9373993Z [42/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\generated_message_table_driven.cc.obj 2025-07-17T06:43:38.9669453Z [43/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-07-17T06:43:39.0121695Z [44/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\printer.cc.obj 2025-07-17T06:43:39.0315691Z [45/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\io\tokenizer.cc.obj 2025-07-17T06:43:39.0935674Z [46/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\map_field.cc.obj 2025-07-17T06:43:39.1892621Z [47/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\service.cc.obj 2025-07-17T06:43:39.1987467Z [48/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\message.cc.obj 2025-07-17T06:43:39.2444838Z [49/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\reflection_ops.cc.obj 2025-07-17T06:43:39.2800362Z [50/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\source_context.pb.cc.obj 2025-07-17T06:43:39.2867104Z [51/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\stubs\substitute.cc.obj 2025-07-17T06:43:39.3042237Z [52/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\struct.pb.cc.obj 2025-07-17T06:43:39.4259172Z [53/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\text_format.cc.obj 2025-07-17T06:43:39.4469946Z [54/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\timestamp.pb.cc.obj 2025-07-17T06:43:39.5346574Z [55/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\unknown_field_set.cc.obj 2025-07-17T06:43:39.5364224Z [56/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\delimited_message_util.cc.obj 2025-07-17T06:43:39.5532015Z [57/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\type.pb.cc.obj 2025-07-17T06:43:39.6120347Z [58/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_comparator.cc.obj 2025-07-17T06:43:39.6442836Z [59/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\field_mask_util.cc.obj 2025-07-17T06:43:39.6580243Z [60/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\datapiece.cc.obj 2025-07-17T06:43:39.7055753Z [61/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\error_listener.cc.obj 2025-07-17T06:43:39.7949579Z [62/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\default_value_objectwriter.cc.obj 2025-07-17T06:43:39.8097524Z [63/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_escaping.cc.obj 2025-07-17T06:43:39.8835931Z [64/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\field_mask_utility.cc.obj 2025-07-17T06:43:39.8896249Z [65/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_stream_parser.cc.obj 2025-07-17T06:43:39.9096347Z [66/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\json_objectwriter.cc.obj 2025-07-17T06:43:39.9990979Z [67/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\object_writer.cc.obj 2025-07-17T06:43:40.0528283Z [68/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\proto_writer.cc.obj 2025-07-17T06:43:40.1194480Z [69/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectsource.cc.obj 2025-07-17T06:43:40.1580997Z [70/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\protostream_objectwriter.cc.obj 2025-07-17T06:43:40.1670796Z [71/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info.cc.obj 2025-07-17T06:43:40.2510839Z [72/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\type_info_test_helper.cc.obj 2025-07-17T06:43:40.2623526Z [73/7682] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\version.rc.res 2025-07-17T06:43:40.2705470Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-17T06:43:40.2705866Z 2025-07-17T06:43:40.2705872Z 2025-07-17T06:43:40.2706099Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-17T06:43:40.2706488Z 2025-07-17T06:43:40.2706494Z 2025-07-17T06:43:40.2706499Z 2025-07-17T06:43:40.2706503Z 2025-07-17T06:43:40.2706939Z [74/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\json_util.cc.obj 2025-07-17T06:43:40.2791008Z [75/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\internal\utility.cc.obj 2025-07-17T06:43:40.3937577Z [76/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\message_differencer.cc.obj 2025-07-17T06:43:40.5056872Z [77/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wrappers.pb.cc.obj 2025-07-17T06:43:40.5153778Z [78/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\type_resolver_util.cc.obj 2025-07-17T06:43:40.5422424Z [79/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\wire_format.cc.obj 2025-07-17T06:43:40.6327683Z [80/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\code_generator.cc.obj 2025-07-17T06:43:40.6345272Z [81/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum.cc.obj 2025-07-17T06:43:40.7347801Z [82/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_enum_field.cc.obj 2025-07-17T06:43:40.8524240Z [83/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\command_line_interface.cc.obj 2025-07-17T06:43:40.8634844Z [84/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_field.cc.obj 2025-07-17T06:43:40.8910113Z [85/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_file.cc.obj 2025-07-17T06:43:40.8970613Z [86/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_extension.cc.obj 2025-07-17T06:43:40.9965732Z [87/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_generator.cc.obj 2025-07-17T06:43:41.0880958Z [88/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_helpers.cc.obj 2025-07-17T06:43:41.1060212Z [89/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_map_field.cc.obj 2025-07-17T06:43:41.2237645Z [90/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message_field.cc.obj 2025-07-17T06:43:41.2428989Z [91/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_message.cc.obj 2025-07-17T06:43:41.2487320Z [92/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_primitive_field.cc.obj 2025-07-17T06:43:41.2740434Z [93/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_padding_optimizer.cc.obj 2025-07-17T06:43:41.3598252Z [94/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_service.cc.obj 2025-07-17T06:43:41.3701363Z [95/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_doc_comment.cc.obj 2025-07-17T06:43:41.4657835Z [96/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\cpp\cpp_string_field.cc.obj 2025-07-17T06:43:41.5749107Z [97/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum.cc.obj 2025-07-17T06:43:41.5908567Z [98/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_enum_field.cc.obj 2025-07-17T06:43:41.6043567Z [99/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_field_base.cc.obj 2025-07-17T06:43:41.6559326Z [100/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_generator.cc.obj 2025-07-17T06:43:41.6969950Z [101/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf.dir\__\src\google\protobuf\util\time_util.cc.obj 2025-07-17T06:43:41.7452896Z [102/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_helpers.cc.obj 2025-07-17T06:43:41.7470549Z [103/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_map_field.cc.obj 2025-07-17T06:43:41.8720741Z [104/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message.cc.obj 2025-07-17T06:43:41.9567416Z [105/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_message_field.cc.obj 2025-07-17T06:43:41.9651720Z [106/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_primitive_field.cc.obj 2025-07-17T06:43:41.9777557Z [107/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_reflection_class.cc.obj 2025-07-17T06:43:42.0281493Z [108/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_enum_field.cc.obj 2025-07-17T06:43:42.1089765Z [109/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_primitive_field.cc.obj 2025-07-17T06:43:42.1108322Z [110/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_repeated_message_field.cc.obj 2025-07-17T06:43:42.2404584Z [111/7682] Linking CXX static library lib\libprotobuf.lib 2025-07-17T06:43:42.2431867Z [112/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_source_generator_base.cc.obj 2025-07-17T06:43:42.2682781Z [113/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_doc_comment.cc.obj 2025-07-17T06:43:42.3078868Z [114/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\csharp\csharp_wrapper_field.cc.obj 2025-07-17T06:43:42.3276137Z [115/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_context.cc.obj 2025-07-17T06:43:42.4126306Z [116/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum.cc.obj 2025-07-17T06:43:42.4720977Z [117/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field_lite.cc.obj 2025-07-17T06:43:42.4808826Z [118/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_field.cc.obj 2025-07-17T06:43:42.6154400Z [119/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_enum_lite.cc.obj 2025-07-17T06:43:42.6288790Z [120/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension.cc.obj 2025-07-17T06:43:42.6392562Z [121/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_extension_lite.cc.obj 2025-07-17T06:43:42.6843619Z [122/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_field.cc.obj 2025-07-17T06:43:42.7142733Z [123/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_file.cc.obj 2025-07-17T06:43:42.7599502Z [124/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator.cc.obj 2025-07-17T06:43:42.8478482Z [125/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_generator_factory.cc.obj 2025-07-17T06:43:42.8718239Z [126/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_helpers.cc.obj 2025-07-17T06:43:43.0144286Z [127/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field_lite.cc.obj 2025-07-17T06:43:43.0234488Z [128/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_map_field.cc.obj 2025-07-17T06:43:43.0251035Z [129/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message.cc.obj 2025-07-17T06:43:43.0596666Z [130/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder.cc.obj 2025-07-17T06:43:43.0934659Z [131/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_builder_lite.cc.obj 2025-07-17T06:43:43.1529752Z [132/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field.cc.obj 2025-07-17T06:43:43.2275017Z [133/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_field_lite.cc.obj 2025-07-17T06:43:43.2542458Z [134/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_message_lite.cc.obj 2025-07-17T06:43:43.3925789Z [135/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_name_resolver.cc.obj 2025-07-17T06:43:43.4015682Z [136/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field_lite.cc.obj 2025-07-17T06:43:43.4102822Z [137/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_primitive_field.cc.obj 2025-07-17T06:43:43.4294799Z [138/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_service.cc.obj 2025-07-17T06:43:43.4591459Z [139/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_shared_code_generator.cc.obj 2025-07-17T06:43:43.4638846Z [140/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\well_known_types_embed.cc.obj 2025-07-17T06:43:43.5165295Z [141/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field.cc.obj 2025-07-17T06:43:43.5941758Z [142/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\java\java_string_field_lite.cc.obj 2025-07-17T06:43:43.6640300Z [143/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\js\js_generator.cc.obj 2025-07-17T06:43:43.7775005Z [144/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum.cc.obj 2025-07-17T06:43:43.7909485Z [145/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_enum_field.cc.obj 2025-07-17T06:43:43.8100301Z [146/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_extension.cc.obj 2025-07-17T06:43:43.8478168Z [147/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_field.cc.obj 2025-07-17T06:43:43.8569353Z [148/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_file.cc.obj 2025-07-17T06:43:43.8773194Z [149/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_generator.cc.obj 2025-07-17T06:43:43.9638390Z [150/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_helpers.cc.obj 2025-07-17T06:43:44.0450717Z [151/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_map_field.cc.obj 2025-07-17T06:43:44.1485925Z [152/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message_field.cc.obj 2025-07-17T06:43:44.1580756Z [153/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_message.cc.obj 2025-07-17T06:43:44.1898540Z [154/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_oneof.cc.obj 2025-07-17T06:43:44.2177332Z [155/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\objectivec\objectivec_primitive_field.cc.obj 2025-07-17T06:43:44.2272779Z [156/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\php\php_generator.cc.obj 2025-07-17T06:43:44.2284287Z [157/7682] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\version.rc.res 2025-07-17T06:43:44.2401882Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-17T06:43:44.2402534Z 2025-07-17T06:43:44.2402541Z 2025-07-17T06:43:44.2402890Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-17T06:43:44.2403388Z 2025-07-17T06:43:44.2403396Z 2025-07-17T06:43:44.2403403Z 2025-07-17T06:43:44.2403410Z 2025-07-17T06:43:44.2404132Z [158/7682] Building RC object third_party\protobuf\cmake\CMakeFiles\protoc.dir\version.rc.res 2025-07-17T06:43:44.2423563Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-17T06:43:44.2424116Z 2025-07-17T06:43:44.2424122Z 2025-07-17T06:43:44.2424458Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-17T06:43:44.2424962Z 2025-07-17T06:43:44.2424968Z 2025-07-17T06:43:44.2424975Z 2025-07-17T06:43:44.2424982Z 2025-07-17T06:43:44.2425716Z [159/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.cc.obj 2025-07-17T06:43:44.3476196Z [160/7682] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\legacy-api.c.obj 2025-07-17T06:43:44.3580446Z [161/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\plugin.pb.cc.obj 2025-07-17T06:43:44.4246084Z [162/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\python\python_generator.cc.obj 2025-07-17T06:43:44.4494043Z [163/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\zip_writer.cc.obj 2025-07-17T06:43:44.5044009Z [164/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\protoc.dir\__\src\google\protobuf\compiler\main.cc.obj 2025-07-17T06:43:44.5367744Z [165/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\ruby\ruby_generator.cc.obj 2025-07-17T06:43:44.5437010Z [166/7682] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\portable-api.c.obj 2025-07-17T06:43:44.5552602Z [167/7682] Building C object sleef\src\libm\CMakeFiles\mkrename.dir\mkrename.c.obj 2025-07-17T06:43:44.6171771Z [168/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotoc.dir\__\src\google\protobuf\compiler\subprocess.cc.obj 2025-07-17T06:43:44.6480140Z [169/7682] Building C object sleef\src\libm\CMakeFiles\mkdisp.dir\mkdisp.c.obj 2025-07-17T06:43:44.6541385Z [170/7682] Building C object sleef\src\libm\CMakeFiles\mkalias.dir\mkalias.c.obj 2025-07-17T06:43:44.6555415Z [171/7682] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\memory.c.obj 2025-07-17T06:43:44.6659350Z [172/7682] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\windows.c.obj 2025-07-17T06:43:44.7372865Z [173/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\info.c.obj 2025-07-17T06:43:44.7440930Z [174/7682] Building C object confu-deps\pthreadpool\CMakeFiles\pthreadpool.dir\src\fastpath.c.obj 2025-07-17T06:43:44.7799031Z [175/7682] Linking C static library lib\pthreadpool.lib 2025-07-17T06:43:44.8065655Z [176/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\init.c.obj 2025-07-17T06:43:44.8195737Z [177/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\vendor.c.obj 2025-07-17T06:43:44.8475462Z [178/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\uarch.c.obj 2025-07-17T06:43:44.8717913Z [179/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\cache.c.obj 2025-07-17T06:43:44.8790515Z [180/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\api.c.obj 2025-07-17T06:43:44.8989138Z [181/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\name.c.obj 2025-07-17T06:43:44.9192626Z [182/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\topology.c.obj 2025-07-17T06:43:44.9457197Z [183/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\descriptor.c.obj 2025-07-17T06:43:44.9524229Z [184/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\isa.c.obj 2025-07-17T06:43:44.9682320Z [185/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\init.c.obj 2025-07-17T06:43:45.0014700Z [186/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\cache\deterministic.c.obj 2025-07-17T06:43:45.0432004Z [187/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9p8x-minmax-f16c-c8.c.obj 2025-07-17T06:43:45.0536556Z [188/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-avgpool\f16-avgpool-9x-minmax-f16c-c8.c.obj 2025-07-17T06:43:45.0762989Z [189/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-07-17T06:43:45.1185727Z [190/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3.c.obj 2025-07-17T06:43:45.1845980Z [191/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u16.c.obj 2025-07-17T06:43:45.2056401Z [192/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3.c.obj 2025-07-17T06:43:45.2068516Z [193/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3.c.obj 2025-07-17T06:43:45.2117104Z [194/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\init.c.obj 2025-07-17T06:43:45.2132257Z [195/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\log.c.obj 2025-07-17T06:43:45.2355240Z [196/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u16.c.obj 2025-07-17T06:43:45.2446114Z [197/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo.dir\src\x86\windows\init.c.obj 2025-07-17T06:43:45.2861048Z [198/7682] Linking CXX static library lib\libprotoc.lib 2025-07-17T06:43:45.3010663Z [199/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u16.c.obj 2025-07-17T06:43:45.3215831Z [200/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u1.c.obj 2025-07-17T06:43:45.3266248Z [201/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u4.c.obj 2025-07-17T06:43:45.3318179Z [202/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u16.c.obj 2025-07-17T06:43:45.3332218Z [203/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u32.c.obj 2025-07-17T06:43:45.3834901Z [204/7682] 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-07-17T06:43:45.3851127Z [205/7682] 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-07-17T06:43:45.4267821Z [206/7682] 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-07-17T06:43:45.4456857Z [207/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c64.c.obj 2025-07-17T06:43:45.4469493Z [208/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc4.c.obj 2025-07-17T06:43:45.4520773Z [209/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c32.c.obj 2025-07-17T06:43:45.4536506Z [210/7682] 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-07-17T06:43:45.4961896Z [211/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c8.c.obj 2025-07-17T06:43:45.5020775Z [212/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc4.c.obj 2025-07-17T06:43:45.5377994Z [213/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-maxpool\f16-maxpool-9p8x-minmax-f16c-c8.c.obj 2025-07-17T06:43:45.5608098Z [214/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9p8x-minmax-avx2-c8.c.obj 2025-07-17T06:43:45.5624767Z [215/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-pavgpool\f16-pavgpool-9x-minmax-avx2-c8.c.obj 2025-07-17T06:43:45.5684199Z [216/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u4.c.obj 2025-07-17T06:43:45.5697387Z [217/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u4.c.obj 2025-07-17T06:43:45.6049550Z [218/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32.c.obj 2025-07-17T06:43:45.6192606Z [219/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\f16-rmax-f16c-u32.c.obj 2025-07-17T06:43:45.6556232Z [220/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc4.c.obj 2025-07-17T06:43:45.6725702Z [221/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u2-acc2.c.obj 2025-07-17T06:43:45.6842616Z [222/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rmax-scalar-u2-acc2.c.obj 2025-07-17T06:43:45.6930413Z [223/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc4.c.obj 2025-07-17T06:43:45.6944047Z [224/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vadd-f16c-u16.c.obj 2025-07-17T06:43:45.7331640Z [225/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u16.c.obj 2025-07-17T06:43:45.7459150Z [226/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u8.c.obj 2025-07-17T06:43:45.7681367Z [227/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u8.c.obj 2025-07-17T06:43:45.7909984Z [228/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmax-f16c-u16.c.obj 2025-07-17T06:43:45.7965880Z [229/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u16.c.obj 2025-07-17T06:43:45.8118759Z [230/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmin-f16c-u16.c.obj 2025-07-17T06:43:45.8190226Z [231/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vminc-f16c-u16.c.obj 2025-07-17T06:43:45.8558867Z [232/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmul-f16c-u16.c.obj 2025-07-17T06:43:45.8684882Z [233/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u16.c.obj 2025-07-17T06:43:45.8854869Z [234/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u16.c.obj 2025-07-17T06:43:45.9117309Z [235/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u16.c.obj 2025-07-17T06:43:45.9255121Z [236/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u16.c.obj 2025-07-17T06:43:45.9313955Z [237/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u8.c.obj 2025-07-17T06:43:45.9406190Z [238/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u16.c.obj 2025-07-17T06:43:45.9681687Z [239/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u16.c.obj 2025-07-17T06:43:46.0209237Z [240/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u16.c.obj 2025-07-17T06:43:46.0222572Z [241/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsub-f16c-u16.c.obj 2025-07-17T06:43:46.0316069Z [242/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u16.c.obj 2025-07-17T06:43:46.0451765Z [243/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u16.c.obj 2025-07-17T06:43:46.0562081Z [244/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u16.c.obj 2025-07-17T06:43:46.0819334Z [245/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u16.c.obj 2025-07-17T06:43:46.0834041Z [246/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u16.c.obj 2025-07-17T06:43:46.1275938Z [247/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c8-minmax-fma3-2x.c.obj 2025-07-17T06:43:46.1350341Z [248/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u16.c.obj 2025-07-17T06:43:46.1534624Z [249/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u16.c.obj 2025-07-17T06:43:46.1701268Z [250/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u16.c.obj 2025-07-17T06:43:46.1756032Z [251/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u16.c.obj 2025-07-17T06:43:46.1928168Z [252/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u32.c.obj 2025-07-17T06:43:46.1987249Z [253/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u32.c.obj 2025-07-17T06:43:46.2511129Z [254/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u32.c.obj 2025-07-17T06:43:46.2525765Z [255/7682] 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-07-17T06:43:46.2756229Z [256/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u32.c.obj 2025-07-17T06:43:46.2859894Z [257/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vneg-sse2-u16.c.obj 2025-07-17T06:43:46.2955349Z [258/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-scalar-c1.c.obj 2025-07-17T06:43:46.2966685Z [259/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vabs-sse2-u16.c.obj 2025-07-17T06:43:46.3161501Z [260/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-4x-sse2-c4.c.obj 2025-07-17T06:43:46.3475768Z [261/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f16-vunary\gen\f16-vsqr-f16c-u16.c.obj 2025-07-17T06:43:46.3914232Z [262/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-scalar-c1.c.obj 2025-07-17T06:43:46.4088933Z [263/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9p8x-minmax-sse-c4.c.obj 2025-07-17T06:43:46.4461622Z [264/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-sse2-c4.c.obj 2025-07-17T06:43:46.4472198Z [265/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-sse2-c4.c.obj 2025-07-17T06:43:46.4482987Z [266/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9p8x-scalar-c1.c.obj 2025-07-17T06:43:46.4494340Z [267/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-argmaxpool\f32-argmaxpool-9x-scalar-c1.c.obj 2025-07-17T06:43:46.4681396Z [268/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-scalar-c1.c.obj 2025-07-17T06:43:46.4984833Z [269/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-avgpool\f32-avgpool-9x-minmax-sse-c4.c.obj 2025-07-17T06:43:46.5098096Z [270/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.obj 2025-07-17T06:43:46.5618845Z [271/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-2x2.c.obj 2025-07-17T06:43:46.5800600Z [272/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar-acc2.c.obj 2025-07-17T06:43:46.5881358Z [273/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar-acc2.c.obj 2025-07-17T06:43:46.5937298Z [274/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f.c.obj 2025-07-17T06:43:46.6056142Z [275/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx.c.obj 2025-07-17T06:43:46.6341404Z [276/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3.c.obj 2025-07-17T06:43:46.6435317Z [277/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse.c.obj 2025-07-17T06:43:46.7133355Z [278/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f.c.obj 2025-07-17T06:43:46.7197644Z [279/7682] Linking CXX executable bin\protoc.exe 2025-07-17T06:43:46.7274885Z [280/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx.c.obj 2025-07-17T06:43:46.7295652Z [281/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.obj 2025-07-17T06:43:46.7358027Z [282/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3.c.obj 2025-07-17T06:43:46.7481641Z [283/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar-acc2.c.obj 2025-07-17T06:43:46.7744826Z [284/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar-acc2.c.obj 2025-07-17T06:43:46.7806177Z [285/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse.c.obj 2025-07-17T06:43:46.8244401Z [286/7682] Running gen_proto.py on onnx/onnx.in.proto 2025-07-17T06:43:46.8566805Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx.in.proto 2025-07-17T06:43:46.8567315Z 2025-07-17T06:43:46.8567672Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto 2025-07-17T06:43:46.8568115Z 2025-07-17T06:43:46.8568502Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_onnx_torch-ml.proto3 2025-07-17T06:43:46.8568938Z 2025-07-17T06:43:46.8569209Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-ml.pb.h 2025-07-17T06:43:46.8569605Z 2025-07-17T06:43:46.8569880Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_pb.py 2025-07-17T06:43:46.8570269Z 2025-07-17T06:43:46.8570731Z [287/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f.c.obj 2025-07-17T06:43:46.8579440Z [288/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx.c.obj 2025-07-17T06:43:46.8652686Z [289/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar-acc2.c.obj 2025-07-17T06:43:46.8719147Z [290/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3.c.obj 2025-07-17T06:43:46.8775129Z [291/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar-acc2.c.obj 2025-07-17T06:43:46.9091406Z [292/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse.c.obj 2025-07-17T06:43:46.9156062Z [293/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f.c.obj 2025-07-17T06:43:46.9877721Z [294/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-07-17T06:43:46.9930294Z [295/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx.c.obj 2025-07-17T06:43:46.9990769Z [296/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse.c.obj 2025-07-17T06:43:47.0054966Z [297/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx.c.obj 2025-07-17T06:43:47.0110403Z [298/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f.c.obj 2025-07-17T06:43:47.0350730Z [299/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3.c.obj 2025-07-17T06:43:47.0529295Z [300/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar-acc2.c.obj 2025-07-17T06:43:47.1270456Z [301/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse.c.obj 2025-07-17T06:43:47.1286874Z [302/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar-acc2.c.obj 2025-07-17T06:43:47.1301663Z [303/7682] 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-07-17T06:43:47.1394760Z [304/7682] 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-07-17T06:43:47.1453787Z [305/7682] 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-07-17T06:43:47.1617760Z [306/7682] 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-07-17T06:43:47.1916559Z [307/7682] 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-07-17T06:43:47.2626788Z [308/7682] 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-07-17T06:43:47.2642866Z [309/7682] 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-07-17T06:43:47.2698621Z [310/7682] 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-07-17T06:43:47.2710501Z [311/7682] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-17T06:43:47.2777370Z [312/7682] 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-07-17T06:43:47.2790865Z [313/7682] 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-07-17T06:43:47.2966976Z [314/7682] 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-07-17T06:43:47.3332889Z [315/7682] 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-07-17T06:43:47.3849454Z [316/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u16.c.obj 2025-07-17T06:43:47.3862116Z [317/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u24.c.obj 2025-07-17T06:43:47.3911540Z [318/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u16.c.obj 2025-07-17T06:43:47.3999036Z [319/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u2.c.obj 2025-07-17T06:43:47.4126511Z [320/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u16.c.obj 2025-07-17T06:43:47.4177595Z [321/7682] 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-07-17T06:43:47.4442216Z [322/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u8.c.obj 2025-07-17T06:43:47.5088593Z [323/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u4.c.obj 2025-07-17T06:43:47.5248997Z [324/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx-broadcast.c.obj 2025-07-17T06:43:47.5369639Z [325/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T06:43:47.5382453Z [326/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-17T06:43:47.5438590Z [327/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x32-minmax-avx512f-broadcast.c.obj 2025-07-17T06:43:47.5571774Z [328/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-minmax-scalar.c.obj 2025-07-17T06:43:47.5633889Z [329/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-relu-scalar.c.obj 2025-07-17T06:43:47.5862373Z [330/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x4-scalar.c.obj 2025-07-17T06:43:47.6546438Z [331/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-load1.c.obj 2025-07-17T06:43:47.6736823Z [332/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-minmax-scalar.c.obj 2025-07-17T06:43:47.6912057Z [333/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-relu-scalar.c.obj 2025-07-17T06:43:47.6924051Z [334/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T06:43:47.7084060Z [335/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-scalar.c.obj 2025-07-17T06:43:47.7098743Z [336/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2-minmax-scalar.c.obj 2025-07-17T06:43:47.7239282Z [337/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-2x4-scalar.c.obj 2025-07-17T06:43:47.7289078Z [338/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x2c4-minmax-sse.c.obj 2025-07-17T06:43:47.7967950Z [339/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-minmax-scalar.c.obj 2025-07-17T06:43:47.8182413Z [340/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-relu-scalar.c.obj 2025-07-17T06:43:47.8373212Z [341/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-load1.c.obj 2025-07-17T06:43:47.8440068Z [342/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-4x4-scalar.c.obj 2025-07-17T06:43:47.8489908Z [343/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p4.c.obj 2025-07-17T06:43:47.8612377Z [344/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-17T06:43:47.8627387Z [345/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx-broadcast.c.obj 2025-07-17T06:43:47.8916765Z [346/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-gemm\gen\f32-gemm-7x32-minmax-avx512f-broadcast.c.obj 2025-07-17T06:43:47.9248502Z [347/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c2.c.obj 2025-07-17T06:43:47.9346665Z [348/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p8.c.obj 2025-07-17T06:43:47.9481799Z [349/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c8.c.obj 2025-07-17T06:43:47.9712839Z [350/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx-broadcast.c.obj 2025-07-17T06:43:47.9815724Z [351/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-fma3-broadcast.c.obj 2025-07-17T06:43:47.9910608Z [352/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T06:43:47.9924611Z [353/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x32-minmax-avx512f-broadcast.c.obj 2025-07-17T06:43:48.0214451Z [354/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-minmax-scalar.c.obj 2025-07-17T06:43:48.0504450Z [355/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-relu-scalar.c.obj 2025-07-17T06:43:48.0614059Z [356/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x4-scalar.c.obj 2025-07-17T06:43:48.0794292Z [357/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-load1.c.obj 2025-07-17T06:43:48.1021960Z [358/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-minmax-scalar.c.obj 2025-07-17T06:43:48.1216522Z [359/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-scalar.c.obj 2025-07-17T06:43:48.1305614Z [360/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T06:43:48.1575698Z [361/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-minmax-scalar.c.obj 2025-07-17T06:43:48.1626719Z [362/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-2x4-relu-scalar.c.obj 2025-07-17T06:43:48.1767959Z [363/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2-scalar.c.obj 2025-07-17T06:43:48.1821925Z [364/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x2c4-minmax-sse.c.obj 2025-07-17T06:43:48.2031268Z [365/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-minmax-scalar.c.obj 2025-07-17T06:43:48.2564199Z [366/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-scalar.c.obj 2025-07-17T06:43:48.2617559Z [367/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-load1.c.obj 2025-07-17T06:43:48.2878527Z [368/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-17T06:43:48.2890620Z [369/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-4x4-relu-scalar.c.obj 2025-07-17T06:43:48.2943225Z [370/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast-prfm.c.obj 2025-07-17T06:43:48.3114864Z [371/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-7x32-minmax-avx512f-broadcast.c.obj 2025-07-17T06:43:48.3170151Z [372/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx-broadcast.c.obj 2025-07-17T06:43:48.3183371Z [373/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-maxpool\f32-maxpool-9p8x-minmax-sse-c4.c.obj 2025-07-17T06:43:48.3674345Z [374/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-scalar-c1.c.obj 2025-07-17T06:43:48.3731633Z [375/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9p8x-minmax-sse-c4.c.obj 2025-07-17T06:43:48.3998582Z [376/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-scalar-c1.c.obj 2025-07-17T06:43:48.4338762Z [377/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-pavgpool\f32-pavgpool-9x-minmax-sse-c4.c.obj 2025-07-17T06:43:48.4402972Z [378/7682] 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-07-17T06:43:48.4491096Z [379/7682] 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-07-17T06:43:48.4570376Z [380/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-1x4-minmax-scalar.c.obj 2025-07-17T06:43:48.4679414Z [381/7682] 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-07-17T06:43:48.5036130Z [382/7682] 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-07-17T06:43:48.5161008Z [383/7682] 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-07-17T06:43:48.5433383Z [384/7682] 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-07-17T06:43:48.5769863Z [385/7682] 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-07-17T06:43:48.5878067Z [386/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x4-minmax-scalar.c.obj 2025-07-17T06:43:48.5994372Z [387/7682] 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-07-17T06:43:48.6083914Z [388/7682] 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-07-17T06:43:48.6139990Z [389/7682] 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-07-17T06:43:48.6490315Z [390/7682] 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-07-17T06:43:48.6561972Z [391/7682] 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-07-17T06:43:48.7034013Z [392/7682] 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-07-17T06:43:48.7173636Z [393/7682] 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-07-17T06:43:48.7336270Z [394/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-minmax-scalar.c.obj 2025-07-17T06:43:48.7489068Z [395/7682] 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-07-17T06:43:48.7588139Z [396/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-minmax-scalar.c.obj 2025-07-17T06:43:48.7644273Z [397/7682] 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-07-17T06:43:48.7943562Z [398/7682] 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-07-17T06:43:48.7992872Z [399/7682] 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-07-17T06:43:48.8542198Z [400/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u32.c.obj 2025-07-17T06:43:48.8554158Z [401/7682] 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-07-17T06:43:48.8688189Z [402/7682] 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-07-17T06:43:48.8745401Z [403/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u128.c.obj 2025-07-17T06:43:48.8764595Z [404/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u64.c.obj 2025-07-17T06:43:48.8819148Z [405/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u1.c.obj 2025-07-17T06:43:48.9062725Z [406/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u4.c.obj 2025-07-17T06:43:48.9112771Z [407/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u4.c.obj 2025-07-17T06:43:48.9750307Z [408/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u32.c.obj 2025-07-17T06:43:48.9810498Z [409/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u32.c.obj 2025-07-17T06:43:48.9861723Z [410/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u32.c.obj 2025-07-17T06:43:48.9916740Z [411/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u128.c.obj 2025-07-17T06:43:48.9976756Z [412/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u1.c.obj 2025-07-17T06:43:48.9990022Z [413/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u64.c.obj 2025-07-17T06:43:49.0265779Z [414/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u4.c.obj 2025-07-17T06:43:49.0330678Z [415/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u4.c.obj 2025-07-17T06:43:49.0875983Z [416/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u32.c.obj 2025-07-17T06:43:49.0921216Z [417/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc2.c.obj 2025-07-17T06:43:49.0973935Z [418/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc2.c.obj 2025-07-17T06:43:49.1522857Z [419/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c64.c.obj 2025-07-17T06:43:49.1534383Z [420/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c32.c.obj 2025-07-17T06:43:49.1666251Z [421/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.obj 2025-07-17T06:43:49.1677537Z [422/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc2.c.obj 2025-07-17T06:43:49.1688648Z [423/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc2.c.obj 2025-07-17T06:43:49.1828119Z [424/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-scalar.c.obj 2025-07-17T06:43:49.1894470Z [425/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c16.c.obj 2025-07-17T06:43:49.1943614Z [426/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc4.c.obj 2025-07-17T06:43:49.2648199Z [427/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc4.c.obj 2025-07-17T06:43:49.3097895Z [428/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc4.c.obj 2025-07-17T06:43:49.3518891Z [429/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc4.c.obj 2025-07-17T06:43:49.3530139Z [430/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc4.c.obj 2025-07-17T06:43:49.3542478Z [431/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc4.c.obj 2025-07-17T06:43:49.3555915Z [432/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc4.c.obj 2025-07-17T06:43:49.3569781Z [433/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc4.c.obj 2025-07-17T06:43:49.3582066Z [434/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc4.c.obj 2025-07-17T06:43:49.3636010Z [435/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc4.c.obj 2025-07-17T06:43:49.4131115Z [436/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc4.c.obj 2025-07-17T06:43:49.4674841Z [437/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc4.c.obj 2025-07-17T06:43:49.4687046Z [438/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-32x1-minmax-sse.c.obj 2025-07-17T06:43:49.4832332Z [439/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x2-minmax-scalar.c.obj 2025-07-17T06:43:49.4876469Z [440/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar.c.obj 2025-07-17T06:43:49.5034467Z [441/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-spmm\gen\f32-spmm-8x4-minmax-scalar.c.obj 2025-07-17T06:43:49.5048541Z [442/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx-u16.c.obj 2025-07-17T06:43:49.5194012Z [443/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u32.c.obj 2025-07-17T06:43:49.5297459Z [444/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-scalar-u8.c.obj 2025-07-17T06:43:49.5920546Z [445/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx-u16.c.obj 2025-07-17T06:43:49.6049162Z [446/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vadd-sse-u8.c.obj 2025-07-17T06:43:49.6213681Z [447/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u32.c.obj 2025-07-17T06:43:49.6385823Z [448/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u8.c.obj 2025-07-17T06:43:49.6601890Z [449/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vaddc-sse-u8.c.obj 2025-07-17T06:43:49.6795496Z [450/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx-u16.c.obj 2025-07-17T06:43:49.6965512Z [451/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u32.c.obj 2025-07-17T06:43:49.7139014Z [452/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u2.c.obj 2025-07-17T06:43:49.7332234Z [453/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdiv-sse-u8.c.obj 2025-07-17T06:43:49.7521301Z [454/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx-u16.c.obj 2025-07-17T06:43:49.7732014Z [455/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u32.c.obj 2025-07-17T06:43:49.7949757Z [456/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u2.c.obj 2025-07-17T06:43:49.8116308Z [457/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vdivc-sse-u8.c.obj 2025-07-17T06:43:49.8328371Z [458/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx-u16.c.obj 2025-07-17T06:43:49.8497062Z [459/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u32.c.obj 2025-07-17T06:43:49.8677856Z [460/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-scalar-u8.c.obj 2025-07-17T06:43:49.8891172Z [461/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmax-sse-u8.c.obj 2025-07-17T06:43:49.9063197Z [462/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u16.c.obj 2025-07-17T06:43:49.9263866Z [463/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u32.c.obj 2025-07-17T06:43:49.9438104Z [464/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u8.c.obj 2025-07-17T06:43:49.9599976Z [465/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u8.c.obj 2025-07-17T06:43:49.9824747Z [466/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx-u16.c.obj 2025-07-17T06:43:50.0032931Z [467/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u32.c.obj 2025-07-17T06:43:50.0223345Z [468/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-scalar-u8.c.obj 2025-07-17T06:43:50.0413715Z [469/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx-u16.c.obj 2025-07-17T06:43:50.0602365Z [470/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmin-sse-u8.c.obj 2025-07-17T06:43:50.0800105Z [471/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u32.c.obj 2025-07-17T06:43:50.0957831Z [472/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-scalar-u8.c.obj 2025-07-17T06:43:50.1135759Z [473/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vminc-sse-u8.c.obj 2025-07-17T06:43:50.1361063Z [474/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx-u16.c.obj 2025-07-17T06:43:50.1534153Z [475/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u32.c.obj 2025-07-17T06:43:50.1734144Z [476/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-scalar-u8.c.obj 2025-07-17T06:43:50.1915388Z [477/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmul-sse-u8.c.obj 2025-07-17T06:43:50.2075342Z [478/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx-u16.c.obj 2025-07-17T06:43:50.2259003Z [479/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u32.c.obj 2025-07-17T06:43:50.2449372Z [480/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u8.c.obj 2025-07-17T06:43:50.2703612Z [481/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vmulc-sse-u8.c.obj 2025-07-17T06:43:50.2876502Z [482/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx-u16.c.obj 2025-07-17T06:43:50.3080548Z [483/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u32.c.obj 2025-07-17T06:43:50.3258263Z [484/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u8.c.obj 2025-07-17T06:43:50.3483609Z [485/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u8.c.obj 2025-07-17T06:43:50.4079560Z [486/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u16.c.obj 2025-07-17T06:43:50.4269750Z [487/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u32.c.obj 2025-07-17T06:43:50.4460800Z [488/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u8.c.obj 2025-07-17T06:43:50.4668319Z [489/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u8.c.obj 2025-07-17T06:43:50.4841481Z [490/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u16.c.obj 2025-07-17T06:43:50.5197599Z [491/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u32.c.obj 2025-07-17T06:43:50.5391485Z [492/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u2.c.obj 2025-07-17T06:43:50.5580732Z [493/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u8.c.obj 2025-07-17T06:43:50.5747652Z [494/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u16.c.obj 2025-07-17T06:43:50.5913927Z [495/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u32.c.obj 2025-07-17T06:43:50.6111089Z [496/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u8.c.obj 2025-07-17T06:43:50.6297744Z [497/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u8.c.obj 2025-07-17T06:43:50.6501035Z [498/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u16.c.obj 2025-07-17T06:43:50.6683841Z [499/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u32.c.obj 2025-07-17T06:43:50.6875640Z [500/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u8.c.obj 2025-07-17T06:43:50.7139939Z [501/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u8.c.obj 2025-07-17T06:43:50.7303686Z [502/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u16.c.obj 2025-07-17T06:43:50.7478110Z [503/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u32.c.obj 2025-07-17T06:43:50.7688091Z [504/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u8.c.obj 2025-07-17T06:43:50.7891961Z [505/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u8.c.obj 2025-07-17T06:43:50.8064070Z [506/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u16.c.obj 2025-07-17T06:43:50.8245943Z [507/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u32.c.obj 2025-07-17T06:43:50.8420106Z [508/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u8.c.obj 2025-07-17T06:43:50.8598336Z [509/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u8.c.obj 2025-07-17T06:43:50.8843985Z [510/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx-u16.c.obj 2025-07-17T06:43:50.9051156Z [511/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u32.c.obj 2025-07-17T06:43:50.9249628Z [512/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-scalar-u8.c.obj 2025-07-17T06:43:54.3237256Z [513/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx-u16.c.obj 2025-07-17T06:43:54.3281195Z [514/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsub-sse-u8.c.obj 2025-07-17T06:43:54.3330898Z [515/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u32.c.obj 2025-07-17T06:43:54.3400637Z [516/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u8.c.obj 2025-07-17T06:43:54.3458631Z [517/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vbinary\gen\f32-vsubc-sse-u8.c.obj 2025-07-17T06:43:54.3507502Z [518/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx-u16.c.obj 2025-07-17T06:43:54.3614419Z [519/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u16.c.obj 2025-07-17T06:43:54.3708246Z [520/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u4.c.obj 2025-07-17T06:43:54.4519524Z [521/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vclamp\gen\f32-vclamp-sse-u8.c.obj 2025-07-17T06:43:54.4608355Z [522/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u32.c.obj 2025-07-17T06:43:54.4699303Z [523/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u4.c.obj 2025-07-17T06:43:54.4751601Z [524/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u16.c.obj 2025-07-17T06:43:54.4801831Z [525/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx.c.obj 2025-07-17T06:43:54.4859761Z [526/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcmul\gen\f32-vcmul-sse-u8.c.obj 2025-07-17T06:43:54.4989309Z [527/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-scalar.c.obj 2025-07-17T06:43:54.5083052Z [528/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-avx512f.c.obj 2025-07-17T06:43:54.5761380Z [529/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysign-sse2.c.obj 2025-07-17T06:43:54.5818515Z [530/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx.c.obj 2025-07-17T06:43:54.5896138Z [531/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-avx512f.c.obj 2025-07-17T06:43:54.6038309Z [532/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-sse2.c.obj 2025-07-17T06:43:54.6052140Z [533/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vcopysignc-scalar.c.obj 2025-07-17T06:43:54.6152254Z [534/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx.c.obj 2025-07-17T06:43:54.6285390Z [535/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-avx512f.c.obj 2025-07-17T06:43:54.6353098Z [536/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-scalar.c.obj 2025-07-17T06:43:54.7262059Z [537/7682] 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-07-17T06:43:54.7312366Z [538/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u2.c.obj 2025-07-17T06:43:54.7366554Z [539/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u4.c.obj 2025-07-17T06:43:54.7378647Z [540/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vcopysign\gen\f32-vrcopysignc-sse2.c.obj 2025-07-17T06:43:54.7441240Z [541/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u12.c.obj 2025-07-17T06:43:54.7582084Z [542/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u64.c.obj 2025-07-17T06:43:54.7648017Z [543/7682] 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-07-17T06:43:54.7712479Z [544/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vexp\gen\f32-vexp-scalar-exp.c.obj 2025-07-17T06:43:54.8880661Z [545/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx-u16.c.obj 2025-07-17T06:43:54.8893368Z [546/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx-rational-12-10-div.c.obj 2025-07-17T06:43:54.9340574Z [547/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u16.c.obj 2025-07-17T06:43:54.9352022Z [548/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-nr.c.obj 2025-07-17T06:43:54.9425659Z [549/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u16.c.obj 2025-07-17T06:43:54.9437300Z [550/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-sse2-rational-12-10-div.c.obj 2025-07-17T06:43:54.9450705Z [551/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-scalar-rational-12-10-div.c.obj 2025-07-17T06:43:54.9463722Z [552/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vgelu\gen\f32-vgelu-fma3-rational-12-10-div.c.obj 2025-07-17T06:43:55.0037846Z [553/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u4.c.obj 2025-07-17T06:43:55.0757757Z [554/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u16.c.obj 2025-07-17T06:43:55.0809484Z [555/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vhswish\gen\f32-vhswish-sse-u8.c.obj 2025-07-17T06:43:55.0935818Z [556/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-div.c.obj 2025-07-17T06:43:55.0947544Z [557/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx2-rational-3-3-div.c.obj 2025-07-17T06:43:55.1002018Z [558/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-scalar-rational-3-3-div.c.obj 2025-07-17T06:43:55.1151274Z [559/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-div.c.obj 2025-07-17T06:43:55.1170187Z [560/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u16.c.obj 2025-07-17T06:43:55.1234042Z [561/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlog\gen\f32-vlog-sse2-rational-3-3-div.c.obj 2025-07-17T06:43:55.2186152Z [562/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u4.c.obj 2025-07-17T06:43:55.2200155Z [563/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u8.c.obj 2025-07-17T06:43:55.2294884Z [564/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-sse-2x.c.obj 2025-07-17T06:43:55.2389987Z [565/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u8.c.obj 2025-07-17T06:43:55.2526011Z [566/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u16.c.obj 2025-07-17T06:43:55.2638641Z [567/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-avx-u16.c.obj 2025-07-17T06:43:55.2710322Z [568/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u8.c.obj 2025-07-17T06:43:55.2799298Z [569/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c1-minmax-scalar-2x.c.obj 2025-07-17T06:43:55.3661870Z [570/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u1.c.obj 2025-07-17T06:43:55.3800239Z [571/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u4.c.obj 2025-07-17T06:43:55.3868844Z [572/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u16.c.obj 2025-07-17T06:43:55.3880337Z [573/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u8.c.obj 2025-07-17T06:43:55.3959300Z [574/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-avx-u16.c.obj 2025-07-17T06:43:55.4109487Z [575/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u4.c.obj 2025-07-17T06:43:55.4297676Z [576/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u1.c.obj 2025-07-17T06:43:55.4427049Z [577/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u8.c.obj 2025-07-17T06:43:55.4860994Z [578/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u8.c.obj 2025-07-17T06:43:55.5099705Z [579/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx-u16.c.obj 2025-07-17T06:43:55.5223162Z [580/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u1.c.obj 2025-07-17T06:43:55.5284364Z [581/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u8.c.obj 2025-07-17T06:43:55.5296589Z [582/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u16.c.obj 2025-07-17T06:43:55.5356080Z [583/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u4.c.obj 2025-07-17T06:43:55.8299879Z [584/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u8.c.obj 2025-07-17T06:43:55.8316144Z [585/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u8.c.obj 2025-07-17T06:43:55.8329594Z [586/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u16.c.obj 2025-07-17T06:43:55.8341522Z [587/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-avx-u16.c.obj 2025-07-17T06:43:55.8354015Z [588/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u1.c.obj 2025-07-17T06:43:55.8364907Z [589/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u8.c.obj 2025-07-17T06:43:55.8376841Z [590/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u4.c.obj 2025-07-17T06:43:55.8426127Z [591/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u8.c.obj 2025-07-17T06:43:55.9668260Z [592/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u4.c.obj 2025-07-17T06:43:55.9716625Z [593/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u16.c.obj 2025-07-17T06:43:55.9793620Z [594/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u1.c.obj 2025-07-17T06:43:55.9846371Z [595/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u32.c.obj 2025-07-17T06:43:55.9899502Z [596/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u16.c.obj 2025-07-17T06:43:55.9912478Z [597/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u8.c.obj 2025-07-17T06:43:55.9970777Z [598/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u16.c.obj 2025-07-17T06:43:56.0034466Z [599/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u16.c.obj 2025-07-17T06:43:56.0989162Z [600/7682] 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-07-17T06:43:56.1140842Z [601/7682] 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-07-17T06:43:56.1154599Z [602/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u16.c.obj 2025-07-17T06:43:56.1210656Z [603/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u16.c.obj 2025-07-17T06:43:56.1259435Z [604/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u16.c.obj 2025-07-17T06:43:56.1317624Z [605/7682] 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-07-17T06:43:56.1474696Z [606/7682] 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-07-17T06:43:56.1536059Z [607/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u1.c.obj 2025-07-17T06:43:56.2212894Z [608/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u12.c.obj 2025-07-17T06:43:56.2415954Z [609/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-nr.c.obj 2025-07-17T06:43:56.2457287Z [610/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-div.c.obj 2025-07-17T06:43:56.2504446Z [611/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-div.c.obj 2025-07-17T06:43:56.2604340Z [612/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-scalar-rational-9-8-div.c.obj 2025-07-17T06:43:56.2615792Z [613/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-div.c.obj 2025-07-17T06:43:56.2673658Z [614/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx.c.obj 2025-07-17T06:43:56.2757095Z [615/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-avx512f.c.obj 2025-07-17T06:43:56.3625650Z [616/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-scalar.c.obj 2025-07-17T06:43:56.3704499Z [617/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vabs-sse2.c.obj 2025-07-17T06:43:56.3753451Z [618/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx.c.obj 2025-07-17T06:43:56.3870690Z [619/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx.c.obj 2025-07-17T06:43:56.3926899Z [620/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-scalar.c.obj 2025-07-17T06:43:56.4182217Z [621/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-sse2.c.obj 2025-07-17T06:43:56.4288962Z [622/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-avx512f.c.obj 2025-07-17T06:43:56.4305002Z [623/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vneg-avx512f.c.obj 2025-07-17T06:43:56.4853656Z [624/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-scalar.c.obj 2025-07-17T06:43:56.4987685Z [625/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\f32-vunary\gen\f32-vsqr-sse2.c.obj 2025-07-17T06:43:56.5214433Z [626/7682] 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-07-17T06:43:56.5324040Z [627/7682] 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-07-17T06:43:56.5421198Z [628/7682] 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-07-17T06:43:56.5701874Z [629/7682] 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-07-17T06:43:56.5716917Z [630/7682] 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-07-17T06:43:56.5770326Z [631/7682] 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-07-17T06:43:56.6266169Z [632/7682] 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-07-17T06:43:56.6346692Z [633/7682] 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-07-17T06:43:56.6721380Z [634/7682] 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-07-17T06:43:56.6897396Z [635/7682] 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-07-17T06:43:56.6966259Z [636/7682] 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-07-17T06:43:56.7229401Z [637/7682] 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-07-17T06:43:56.7280809Z [638/7682] 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-07-17T06:43:56.7407174Z [639/7682] 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-07-17T06:43:56.7576134Z [640/7682] 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-07-17T06:43:56.7673418Z [641/7682] 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-07-17T06:43:56.8064396Z [642/7682] 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-07-17T06:43:56.8185287Z [643/7682] 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-07-17T06:43:56.8247662Z [644/7682] 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-07-17T06:43:56.8895865Z [645/7682] 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-07-17T06:43:56.8908198Z [646/7682] 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-07-17T06:43:56.8958160Z [647/7682] 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-07-17T06:43:56.9010278Z [648/7682] 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-07-17T06:43:56.9062676Z [649/7682] 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-07-17T06:43:56.9558157Z [650/7682] 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-07-17T06:43:56.9719498Z [651/7682] 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-07-17T06:43:56.9741377Z [652/7682] 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-07-17T06:43:57.0338661Z [653/7682] 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-07-17T06:43:57.0384202Z [654/7682] 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-07-17T06:43:57.0498785Z [655/7682] 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-07-17T06:43:57.0554285Z [656/7682] 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-07-17T06:43:57.0608322Z [657/7682] 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-07-17T06:43:57.1020961Z [658/7682] 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-07-17T06:43:57.1138306Z [659/7682] 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-07-17T06:43:57.1252964Z [660/7682] 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-07-17T06:43:57.1750652Z [661/7682] 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-07-17T06:43:57.1912405Z [662/7682] 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-07-17T06:43:57.1964131Z [663/7682] 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-07-17T06:43:57.1977032Z [664/7682] 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-07-17T06:43:57.2187459Z [665/7682] 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-07-17T06:43:57.2430927Z [666/7682] 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-07-17T06:43:57.2707982Z [667/7682] 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-07-17T06:43:57.2729726Z [668/7682] 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-07-17T06:43:57.3336639Z [669/7682] 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-07-17T06:43:57.3395972Z [670/7682] 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-07-17T06:43:57.3487470Z [671/7682] 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-07-17T06:43:57.3683838Z [672/7682] 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-07-17T06:43:57.3737789Z [673/7682] 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-07-17T06:43:57.3752951Z [674/7682] 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-07-17T06:43:57.4146758Z [675/7682] 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-07-17T06:43:57.4201389Z [676/7682] 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-07-17T06:43:57.4758432Z [677/7682] 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-07-17T06:43:57.4814054Z [678/7682] 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-07-17T06:43:57.4955869Z [679/7682] 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-07-17T06:43:57.5193203Z [680/7682] 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-07-17T06:43:57.5204366Z [681/7682] 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-07-17T06:43:57.5255035Z [682/7682] 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-07-17T06:43:57.5542445Z [683/7682] 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-07-17T06:43:57.5607005Z [684/7682] 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-07-17T06:43:57.6235135Z [685/7682] 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-07-17T06:43:57.6300095Z [686/7682] 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-07-17T06:43:57.6386770Z [687/7682] 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-07-17T06:43:57.6602913Z [688/7682] 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-07-17T06:43:57.6831295Z [689/7682] 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-07-17T06:43:57.7081027Z [690/7682] 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-07-17T06:43:57.7188924Z [691/7682] 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-07-17T06:43:57.7532318Z [692/7682] 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-07-17T06:43:57.7719307Z [693/7682] 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-07-17T06:43:57.7734898Z [694/7682] 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-07-17T06:43:57.7818117Z [695/7682] 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-07-17T06:43:57.7974618Z [696/7682] 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-07-17T06:43:57.8147860Z [697/7682] 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-07-17T06:43:57.8375892Z [698/7682] 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-07-17T06:43:57.8440452Z [699/7682] 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-07-17T06:43:57.8839606Z [700/7682] 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-07-17T06:43:57.9077580Z [701/7682] 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-07-17T06:43:57.9248552Z [702/7682] 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-07-17T06:43:57.9306022Z [703/7682] 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-07-17T06:43:57.9321554Z [704/7682] 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-07-17T06:43:57.9468899Z [705/7682] 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-07-17T06:43:57.9687930Z [706/7682] 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-07-17T06:43:57.9751142Z [707/7682] 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-07-17T06:43:58.0184968Z [708/7682] 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-07-17T06:43:58.0399743Z [709/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T06:43:58.0589328Z [710/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T06:43:58.0649851Z [711/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:43:58.0838691Z [712/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T06:43:58.0850104Z [713/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:43:58.1004478Z [714/7682] 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-07-17T06:43:58.1017457Z [715/7682] 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-07-17T06:43:58.1587705Z [716/7682] 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-07-17T06:43:58.1742344Z [717/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T06:43:58.1903080Z [718/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T06:43:58.2053222Z [719/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:43:58.2161777Z [720/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T06:43:58.2212324Z [721/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:43:58.2369689Z [722/7682] 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-07-17T06:43:58.2384677Z [723/7682] 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-07-17T06:43:58.2757790Z [724/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u16.c.obj 2025-07-17T06:43:58.2877346Z [725/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u32.c.obj 2025-07-17T06:43:58.3010207Z [726/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u16.c.obj 2025-07-17T06:43:58.3183764Z [727/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u32.c.obj 2025-07-17T06:43:58.3328983Z [728/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u4.c.obj 2025-07-17T06:43:58.3345081Z [729/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u1.c.obj 2025-07-17T06:43:58.3444482Z [730/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u16.c.obj 2025-07-17T06:43:58.3578491Z [731/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u32.c.obj 2025-07-17T06:43:58.3969241Z [732/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-17T06:43:58.4125920Z [733/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-scalar.c.obj 2025-07-17T06:43:58.4256098Z [734/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-goi-scalar.c.obj 2025-07-17T06:43:58.4415736Z [735/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni-prfm.c.obj 2025-07-17T06:43:58.4633613Z [736/7682] 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-07-17T06:43:58.4719563Z [737/7682] 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-07-17T06:43:58.4817719Z [738/7682] 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-07-17T06:43:58.4876420Z [739/7682] 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-07-17T06:43:58.5348768Z [740/7682] 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-07-17T06:43:58.5406195Z [741/7682] 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-07-17T06:43:58.5676938Z [742/7682] 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-07-17T06:43:58.5735719Z [743/7682] 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-07-17T06:43:58.5986873Z [744/7682] 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-07-17T06:43:58.6063535Z [745/7682] 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-07-17T06:43:58.6142337Z [746/7682] 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-07-17T06:43:58.6195740Z [747/7682] 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-07-17T06:43:58.6659342Z [748/7682] 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-07-17T06:43:59.1881096Z [749/7682] 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-07-17T06:43:59.1895079Z [750/7682] 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-07-17T06:43:59.1906533Z [751/7682] 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-07-17T06:43:59.1917681Z [752/7682] 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-07-17T06:43:59.1929320Z [753/7682] 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-07-17T06:43:59.1980186Z [754/7682] 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-07-17T06:43:59.1993587Z [755/7682] 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-07-17T06:43:59.2005312Z [756/7682] 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-07-17T06:43:59.3236530Z [757/7682] 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-07-17T06:43:59.3254204Z [758/7682] 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-07-17T06:43:59.3267693Z [759/7682] 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-07-17T06:43:59.3371642Z [760/7682] 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-07-17T06:43:59.3385366Z [761/7682] 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-07-17T06:43:59.3435826Z [762/7682] 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-07-17T06:43:59.3448368Z [763/7682] 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-07-17T06:43:59.3505702Z [764/7682] 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-07-17T06:43:59.4745964Z [765/7682] 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-07-17T06:43:59.4790937Z [766/7682] 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-07-17T06:43:59.4835935Z [767/7682] 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-07-17T06:43:59.4884431Z [768/7682] 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-07-17T06:43:59.4945676Z [769/7682] 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-07-17T06:43:59.4957776Z [770/7682] 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-07-17T06:43:59.4970495Z [771/7682] 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-07-17T06:43:59.5023637Z [772/7682] 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-07-17T06:43:59.6266521Z [773/7682] 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-07-17T06:43:59.6314842Z [774/7682] 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-07-17T06:43:59.6362085Z [775/7682] 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-07-17T06:43:59.6374185Z [776/7682] 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-07-17T06:43:59.6427170Z [777/7682] 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-07-17T06:43:59.6493245Z [778/7682] 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-07-17T06:43:59.6507285Z [779/7682] 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-07-17T06:43:59.6523725Z [780/7682] 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-07-17T06:43:59.7704575Z [781/7682] 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-07-17T06:43:59.7717915Z [782/7682] 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-07-17T06:43:59.7762581Z [783/7682] 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-07-17T06:43:59.7822871Z [784/7682] 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-07-17T06:43:59.7874377Z [785/7682] 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-07-17T06:43:59.7886230Z [786/7682] 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-07-17T06:43:59.7897804Z [787/7682] 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-07-17T06:43:59.7995905Z [788/7682] 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-07-17T06:43:59.9117058Z [789/7682] 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-07-17T06:43:59.9129435Z [790/7682] 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-07-17T06:43:59.9186189Z [791/7682] 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-07-17T06:43:59.9198824Z [792/7682] 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-07-17T06:43:59.9249040Z [793/7682] 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-07-17T06:43:59.9263985Z [794/7682] 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-07-17T06:43:59.9314110Z [795/7682] 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-07-17T06:43:59.9367236Z [796/7682] 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-07-17T06:44:00.0378543Z [797/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c64.c.obj 2025-07-17T06:44:00.0427058Z [798/7682] 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-07-17T06:44:00.0438636Z [799/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.obj 2025-07-17T06:44:00.0512965Z [800/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c64.c.obj 2025-07-17T06:44:00.0524312Z [801/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u128-acc2.c.obj 2025-07-17T06:44:00.0535025Z [802/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u64-acc2.c.obj 2025-07-17T06:44:00.0546847Z [803/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u64-acc2.c.obj 2025-07-17T06:44:00.0602852Z [804/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c64.c.obj 2025-07-17T06:44:00.1553718Z [805/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u128-acc2.c.obj 2025-07-17T06:44:00.1615377Z [806/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u32-acc2.c.obj 2025-07-17T06:44:00.1660108Z [807/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u4.c.obj 2025-07-17T06:44:00.1724403Z [808/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-17T06:44:00.1784310Z [809/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-07-17T06:44:00.1804986Z [810/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u1.c.obj 2025-07-17T06:44:00.1820845Z [811/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-17T06:44:00.1881969Z [812/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u4.c.obj 2025-07-17T06:44:00.2811552Z [813/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-17T06:44:00.2864724Z [814/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-17T06:44:00.2992359Z [815/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-07-17T06:44:00.3012913Z [816/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-17T06:44:00.3094836Z [817/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u1.c.obj 2025-07-17T06:44:00.3103096Z [818/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-17T06:44:00.3163688Z [819/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u4.c.obj 2025-07-17T06:44:00.3175979Z [820/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-17T06:44:00.4073657Z [821/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u32.c.obj 2025-07-17T06:44:00.4118041Z [822/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-17T06:44:00.4165335Z [823/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u1.c.obj 2025-07-17T06:44:00.4212533Z [824/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u32.c.obj 2025-07-17T06:44:00.4267731Z [825/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u4.c.obj 2025-07-17T06:44:00.4283635Z [826/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u32.c.obj 2025-07-17T06:44:00.4342264Z [827/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u32.c.obj 2025-07-17T06:44:00.4356904Z [828/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u32.c.obj 2025-07-17T06:44:00.5356418Z [829/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u32.c.obj 2025-07-17T06:44:00.5407647Z [830/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u32.c.obj 2025-07-17T06:44:00.5456845Z [831/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u4.c.obj 2025-07-17T06:44:00.5470614Z [832/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u4.c.obj 2025-07-17T06:44:00.5521538Z [833/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u32.c.obj 2025-07-17T06:44:00.5583696Z [834/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u32.c.obj 2025-07-17T06:44:00.5599718Z [835/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u32.c.obj 2025-07-17T06:44:00.5658981Z [836/7682] 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-07-17T06:44:00.6620968Z [837/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u4.c.obj 2025-07-17T06:44:00.6674450Z [838/7682] 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-07-17T06:44:00.6722132Z [839/7682] 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-07-17T06:44:00.6775992Z [840/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-07-17T06:44:00.6827631Z [841/7682] 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-07-17T06:44:00.6886221Z [842/7682] 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-07-17T06:44:00.6900115Z [843/7682] 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-07-17T06:44:00.6952848Z [844/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.obj 2025-07-17T06:44:00.7770816Z [845/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9p8x-minmax-fp32-sse2-c8.c.obj 2025-07-17T06:44:00.7912695Z [846/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-sse2-c8.c.obj 2025-07-17T06:44:00.8004777Z [847/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-avgpool\qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.obj 2025-07-17T06:44:00.8177193Z [848/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T06:44:00.8362872Z [849/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T06:44:00.8423175Z [850/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:44:00.8438464Z [851/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-17T06:44:00.8453892Z [852/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:44:00.9028745Z [853/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T06:44:00.9175377Z [854/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T06:44:00.9263733Z [855/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T06:44:00.9789383Z [856/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T06:44:00.9847639Z [857/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:44:00.9862974Z [858/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-17T06:44:00.9878494Z [859/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T06:44:00.9937497Z [860/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:44:01.0369604Z [861/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T06:44:01.0426248Z [862/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T06:44:01.0596807Z [863/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T06:44:01.0978470Z [864/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u32.c.obj 2025-07-17T06:44:01.0993395Z [865/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u16.c.obj 2025-07-17T06:44:01.1046892Z [866/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u1.c.obj 2025-07-17T06:44:01.1071082Z [867/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u32.c.obj 2025-07-17T06:44:01.1127397Z [868/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u4.c.obj 2025-07-17T06:44:01.1528831Z [869/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u32.c.obj 2025-07-17T06:44:01.1619989Z [870/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u16.c.obj 2025-07-17T06:44:01.2044000Z [871/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T06:44:01.2442026Z [872/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:44:01.2574201Z [873/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-17T06:44:01.2640205Z [874/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-17T06:44:01.2654798Z [875/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:44:01.2669294Z [876/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-17T06:44:01.2896316Z [877/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-17T06:44:01.3066306Z [878/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:44:01.3551469Z [879/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-17T06:44:01.3950639Z [880/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:44:01.4064699Z [881/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-17T06:44:01.4217445Z [882/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T06:44:01.4234471Z [883/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-17T06:44:01.4247335Z [884/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T06:44:01.4460763Z [885/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:44:01.4892949Z [886/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:44:01.5262652Z [887/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-17T06:44:01.5384302Z [888/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-17T06:44:01.5475711Z [889/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-17T06:44:01.5601210Z [890/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T06:44:01.5667097Z [891/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-17T06:44:01.5956751Z [892/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-17T06:44:01.6186234Z [893/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx2.c.obj 2025-07-17T06:44:01.6295164Z [894/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T06:44:01.6503375Z [895/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-17T06:44:01.6602195Z [896/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-17T06:44:01.6810843Z [897/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c64.c.obj 2025-07-17T06:44:01.6918923Z [898/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T06:44:01.7077459Z [899/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-igemm\gen\qu8-igemm-3x8c8-minmax-fp32-avx2.c.obj 2025-07-17T06:44:01.7136558Z [900/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rdsum\gen\qu8-rdsum-scalar.c.obj 2025-07-17T06:44:01.7364624Z [901/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u64-acc2.c.obj 2025-07-17T06:44:01.7412094Z [902/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u4.c.obj 2025-07-17T06:44:01.7565463Z [903/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u32-acc2.c.obj 2025-07-17T06:44:01.7823447Z [904/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u8.c.obj 2025-07-17T06:44:01.8090743Z [905/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-17T06:44:01.8236264Z [906/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-17T06:44:01.8303513Z [907/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u1.c.obj 2025-07-17T06:44:01.8371601Z [908/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u4.c.obj 2025-07-17T06:44:01.8574296Z [909/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-17T06:44:01.8634473Z [910/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-17T06:44:01.8765063Z [911/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u8.c.obj 2025-07-17T06:44:01.9092152Z [912/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u16.c.obj 2025-07-17T06:44:01.9487663Z [913/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u1.c.obj 2025-07-17T06:44:01.9569178Z [914/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u4.c.obj 2025-07-17T06:44:01.9626652Z [915/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u8.c.obj 2025-07-17T06:44:01.9676965Z [916/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u16.c.obj 2025-07-17T06:44:01.9846873Z [917/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u32.c.obj 2025-07-17T06:44:01.9907964Z [918/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u8.c.obj 2025-07-17T06:44:02.0010690Z [919/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u32.c.obj 2025-07-17T06:44:02.0271771Z [920/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u1.c.obj 2025-07-17T06:44:02.0698034Z [921/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u4.c.obj 2025-07-17T06:44:02.0814714Z [922/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u32.c.obj 2025-07-17T06:44:02.0871841Z [923/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u32.c.obj 2025-07-17T06:44:02.0889128Z [924/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u32.c.obj 2025-07-17T06:44:02.1073602Z [925/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u32.c.obj 2025-07-17T06:44:02.1090823Z [926/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u32.c.obj 2025-07-17T06:44:02.1317662Z [927/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u4.c.obj 2025-07-17T06:44:02.1533487Z [928/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u4.c.obj 2025-07-17T06:44:02.2016280Z [929/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u32.c.obj 2025-07-17T06:44:02.2143455Z [930/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u32.c.obj 2025-07-17T06:44:02.2157166Z [931/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u32.c.obj 2025-07-17T06:44:02.2170970Z [932/7682] 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-07-17T06:44:02.2315518Z [933/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u4.c.obj 2025-07-17T06:44:02.2366369Z [934/7682] 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-07-17T06:44:02.2574246Z [935/7682] 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-07-17T06:44:02.2796412Z [936/7682] 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-07-17T06:44:02.3280732Z [937/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u4.c.obj 2025-07-17T06:44:02.3327071Z [938/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx2.c.obj 2025-07-17T06:44:02.3406422Z [939/7682] 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-07-17T06:44:02.3422356Z [940/7682] 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-07-17T06:44:02.3475692Z [941/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-avx512f.c.obj 2025-07-17T06:44:02.3531756Z [942/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s32-f32-vcvt\gen\s32-f32-vcvt-scalar.c.obj 2025-07-17T06:44:02.3603842Z [943/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c1.c.obj 2025-07-17T06:44:02.3781870Z [944/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c8.c.obj 2025-07-17T06:44:02.4367373Z [945/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c16.c.obj 2025-07-17T06:44:02.4513132Z [946/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-17T06:44:02.4615029Z [947/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse41-c16.c.obj 2025-07-17T06:44:02.4696470Z [948/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx2-u128.c.obj 2025-07-17T06:44:02.4709501Z [949/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-maxpool\s8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-07-17T06:44:02.4858137Z [950/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-scalar-u4.c.obj 2025-07-17T06:44:02.4936161Z [951/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse2-u64.c.obj 2025-07-17T06:44:02.5171292Z [952/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-avx512skx-u256.c.obj 2025-07-17T06:44:02.5620028Z [953/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\s8-vclamp\s8-vclamp-sse41-u64.c.obj 2025-07-17T06:44:02.5676899Z [954/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c1.c.obj 2025-07-17T06:44:02.5689813Z [955/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-lut32norm\u8-lut32norm-scalar.c.obj 2025-07-17T06:44:02.5739624Z [956/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c8.c.obj 2025-07-17T06:44:02.5803290Z [957/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c16.c.obj 2025-07-17T06:44:02.5928692Z [958/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-scalar-c1.c.obj 2025-07-17T06:44:02.6026674Z [959/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-maxpool\u8-maxpool-9p8x-minmax-sse2-c16.c.obj 2025-07-17T06:44:02.6255323Z [960/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-scalar-u2.c.obj 2025-07-17T06:44:02.6810932Z [961/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-rmax\u8-rmax-sse2-u16.c.obj 2025-07-17T06:44:02.6940005Z [962/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-scalar-u4.c.obj 2025-07-17T06:44:02.6952810Z [963/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx2-u128.c.obj 2025-07-17T06:44:02.7023776Z [964/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-sse2-u64.c.obj 2025-07-17T06:44:02.7149389Z [965/7682] 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-07-17T06:44:02.7200332Z [966/7682] 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-07-17T06:44:02.7323587Z [967/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-switch-avx2.c.obj 2025-07-17T06:44:02.7555455Z [968/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\u8-vclamp\u8-vclamp-avx512skx-u256.c.obj 2025-07-17T06:44:02.7877642Z [969/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-2x4-scalar-int.c.obj 2025-07-17T06:44:02.7989650Z [970/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-multi-sse2.c.obj 2025-07-17T06:44:02.8063756Z [971/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\gen\x24-transposec-1x2-scalar.c.obj 2025-07-17T06:44:02.8136691Z [972/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x24-transposec\x24-transposec-4x4-ssse3.c.obj 2025-07-17T06:44:02.8319902Z [973/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx-u4.c.obj 2025-07-17T06:44:02.8334681Z [974/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u8.c.obj 2025-07-17T06:44:02.8674342Z [975/7682] 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-07-17T06:44:02.8733844Z [976/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-avx-u4.c.obj 2025-07-17T06:44:02.9053780Z [977/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x2c4-gemm-goi-sse2-u4.c.obj 2025-07-17T06:44:02.9152002Z [978/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u8.c.obj 2025-07-17T06:44:02.9203682Z [979/7682] 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-07-17T06:44:02.9288852Z [980/7682] 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-07-17T06:44:02.9372691Z [981/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u4.c.obj 2025-07-17T06:44:02.9424348Z [982/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-int.c.obj 2025-07-17T06:44:02.9753489Z [983/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-scalar.c.obj 2025-07-17T06:44:02.9765825Z [984/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-multi-avx.c.obj 2025-07-17T06:44:02.9834558Z [985/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-unpool\x32-unpool-sse2.c.obj 2025-07-17T06:44:02.9881770Z [986/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-transposec\x32-transposec-4x4-sse.c.obj 2025-07-17T06:44:02.9895773Z [987/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-scalar.c.obj 2025-07-17T06:44:02.9969542Z [988/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x2-sse2.c.obj 2025-07-17T06:44:03.0075682Z [989/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-scalar.c.obj 2025-07-17T06:44:03.0088734Z [990/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x3-sse2.c.obj 2025-07-17T06:44:03.0427978Z [991/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-scalar.c.obj 2025-07-17T06:44:03.0495765Z [992/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-x4-sse2.c.obj 2025-07-17T06:44:03.0554140Z [993/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-scalar.c.obj 2025-07-17T06:44:03.0630324Z [994/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x32-zip\x32-zip-xm-sse2.c.obj 2025-07-17T06:44:03.1031289Z [995/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx-u64.c.obj 2025-07-17T06:44:03.1045331Z [996/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-mov-sse2.c.obj 2025-07-17T06:44:03.1099395Z [997/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-int.c.obj 2025-07-17T06:44:03.1149608Z [998/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-multi-avx.c.obj 2025-07-17T06:44:03.1326856Z [999/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx2-u128.c.obj 2025-07-17T06:44:03.1338679Z [1000/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-scalar-u4.c.obj 2025-07-17T06:44:03.1449694Z [1001/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u128.c.obj 2025-07-17T06:44:03.1466970Z [1002/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u64.c.obj 2025-07-17T06:44:03.2252945Z [1003/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u2.c.obj 2025-07-17T06:44:03.2313233Z [1004/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packq\x8-packq-scalar-f32qp8-u1.c.obj 2025-07-17T06:44:03.2359700Z [1005/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u2.c.obj 2025-07-17T06:44:03.2450741Z [1006/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u2.c.obj 2025-07-17T06:44:03.2503489Z [1007/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-mov-sse2.c.obj 2025-07-17T06:44:03.2515462Z [1008/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-switch-avx2.c.obj 2025-07-17T06:44:03.2564173Z [1009/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u2.c.obj 2025-07-17T06:44:03.2585498Z [1010/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-transposec\gen\x8-transposec-2x4-scalar-int.c.obj 2025-07-17T06:44:03.2997942Z [1011/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-sse2.c.obj 2025-07-17T06:44:03.3037664Z [1012/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-scalar.c.obj 2025-07-17T06:44:03.3121978Z [1013/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x3-sse2.c.obj 2025-07-17T06:44:03.3210187Z [1014/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-sse2.c.obj 2025-07-17T06:44:03.3221786Z [1015/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x4-scalar.c.obj 2025-07-17T06:44:03.3266371Z [1016/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-scalar.c.obj 2025-07-17T06:44:03.3344319Z [1017/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-xm-sse2.c.obj 2025-07-17T06:44:03.3402587Z [1018/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\x8-zip\x8-zip-x2-scalar.c.obj 2025-07-17T06:44:03.3710451Z [1019/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-scalar-u16.c.obj 2025-07-17T06:44:03.3872176Z [1020/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-fill\xx-fill-sse2-u64.c.obj 2025-07-17T06:44:03.3919571Z [1021/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p16-sse2-u16.c.obj 2025-07-17T06:44:03.3961530Z [1022/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-64.c.obj 2025-07-17T06:44:03.3972971Z [1023/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-pad\xx-pad-p4-scalar-u16.c.obj 2025-07-17T06:44:03.4040840Z [1024/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2-k-over-2048.c.obj 2025-07-17T06:44:03.4140274Z [1025/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-copy\xx-copy-scalar-memcpy.c.obj 2025-07-17T06:44:03.4240562Z [1026/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\xx-transposev\xx-transposev-1x1-scalar-memcpy.c.obj 2025-07-17T06:44:03.4367428Z [1027/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-4.c.obj 2025-07-17T06:44:03.4551702Z [1028/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-16.c.obj 2025-07-17T06:44:03.4562150Z [1029/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-8.c.obj 2025-07-17T06:44:03.4613751Z [1030/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-64.c.obj 2025-07-17T06:44:03.4651521Z [1031/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-32.c.obj 2025-07-17T06:44:03.4721313Z [1032/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\exp2minus-k-over-2048.c.obj 2025-07-17T06:44:03.4776690Z [1033/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-prod.dir\src\tables\vlog.c.obj 2025-07-17T06:44:03.5103988Z [1034/7682] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-07-17T06:44:03.5105078Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-operators.in.proto 2025-07-17T06:44:03.5106629Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto 2025-07-17T06:44:03.5108225Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators_onnx_torch-ml.proto3 2025-07-17T06:44:03.5109747Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-operators-ml.pb.h 2025-07-17T06:44:03.5142553Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_operators_pb.py 2025-07-17T06:44:03.5143433Z 2025-07-17T06:44:03.5143668Z [1035/7682] Linking C static library lib\cpuinfo.lib 2025-07-17T06:44:03.5166277Z [1036/7682] Running gen_proto.py on onnx/onnx-data.in.proto 2025-07-17T06:44:03.5445784Z Processing C:\actions-runner\_work\pytorch\pytorch\third_party\onnx\onnx\onnx-data.in.proto 2025-07-17T06:44:03.5446552Z 2025-07-17T06:44:03.5447108Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto 2025-07-17T06:44:03.5447928Z 2025-07-17T06:44:03.5448533Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data_onnx_torch.proto3 2025-07-17T06:44:03.5449513Z 2025-07-17T06:44:03.5450039Z Writing C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx-data.pb.h 2025-07-17T06:44:03.5450772Z 2025-07-17T06:44:03.5451369Z generating C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx\onnx_data_pb.py 2025-07-17T06:44:03.5452128Z 2025-07-17T06:44:03.5452393Z [1037/7682] Linking C executable sleef\bin\mkrename.exe 2025-07-17T06:44:03.5487561Z [1038/7682] Linking C executable sleef\bin\mkdisp.exe 2025-07-17T06:44:03.5500742Z [1039/7682] Linking C executable sleef\bin\mkalias.exe 2025-07-17T06:44:03.5859747Z [1040/7682] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\allocation-type.c.obj 2025-07-17T06:44:03.5990673Z [1041/7682] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\datatype-strings.c.obj 2025-07-17T06:44:03.6130837Z [1042/7682] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\microkernel-type.c.obj 2025-07-17T06:44:03.6182436Z [1043/7682] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\operator-type.c.obj 2025-07-17T06:44:03.6230950Z [1044/7682] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\enums\node-type.c.obj 2025-07-17T06:44:03.6291971Z [1045/7682] Building C object confu-deps\XNNPACK\CMakeFiles\indirection.dir\src\indirection.c.obj 2025-07-17T06:44:03.7194510Z [1046/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microparams-init.dir\src\microparams-init.c.obj 2025-07-17T06:44:03.7251192Z [1047/7682] Building C object confu-deps\XNNPACK\CMakeFiles\allocator.dir\src\allocator.c.obj 2025-07-17T06:44:03.7304340Z [1048/7682] Building C object confu-deps\XNNPACK\CMakeFiles\normalization.dir\src\normalization.c.obj 2025-07-17T06:44:03.8152996Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:03.8153685Z [1049/7682] Building C object confu-deps\XNNPACK\CMakeFiles\hardware-config.dir\src\configs\hardware-config.c.obj 2025-07-17T06:44:03.8324439Z [1050/7682] Building C object confu-deps\XNNPACK\CMakeFiles\datatype.dir\src\datatype.c.obj 2025-07-17T06:44:03.8394083Z [1051/7682] Building CXX object confu-deps\XNNPACK\CMakeFiles\packing.dir\src\reference\packing.cc.obj 2025-07-17T06:44:03.8396152Z 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-07-17T06:44:03.8398441Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:03.8400444Z 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-07-17T06:44:03.8402498Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:03.8404520Z 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-07-17T06:44:03.8406653Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-17T06:44:03.8409012Z 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-07-17T06:44:03.8411233Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-17T06:44:03.8413315Z 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-07-17T06:44:03.8415331Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:03.8417140Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): warning C4244: '=': conversion from 'const _Ty' to 'float', possible loss of data 2025-07-17T06:44:03.8417991Z with 2025-07-17T06:44:03.8418183Z [ 2025-07-17T06:44:03.8418353Z _Ty=int 2025-07-17T06:44:03.8418557Z ] 2025-07-17T06:44:03.8419438Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): note: the template instantiation context (the oldest one first) is 2025-07-17T06:44:03.8420939Z 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-07-17T06:44:03.8421963Z with 2025-07-17T06:44:03.8422192Z [ 2025-07-17T06:44:03.8422386Z Src=float, 2025-07-17T06:44:03.8422608Z Dst=float 2025-07-17T06:44:03.8422883Z ] 2025-07-17T06:44:03.8423870Z 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-07-17T06:44:03.8424879Z with 2025-07-17T06:44:03.8425075Z [ 2025-07-17T06:44:03.8425257Z _OutIt=float *, 2025-07-17T06:44:03.8425497Z Dst=float, 2025-07-17T06:44:03.8425699Z _Diff=size_t, 2025-07-17T06:44:03.8425920Z _Ty=int 2025-07-17T06:44:03.8426102Z ] 2025-07-17T06:44:03.8426940Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): warning C4244: 'argument': conversion from 'const _Ty' to 'float', possible loss of data 2025-07-17T06:44:03.8428518Z with 2025-07-17T06:44:03.8428801Z [ 2025-07-17T06:44:03.8429063Z _Ty=int 2025-07-17T06:44:03.8429336Z ] 2025-07-17T06:44:03.8430024Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5087): note: the template instantiation context (the oldest one first) is 2025-07-17T06:44:03.8431995Z 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-07-17T06:44:03.8433978Z with 2025-07-17T06:44:03.8434386Z [ 2025-07-17T06:44:03.8434664Z Src=float, 2025-07-17T06:44:03.8435013Z Dst=xnn_float16 2025-07-17T06:44:03.8435357Z ] 2025-07-17T06:44:03.8436974Z 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-07-17T06:44:03.8438981Z with 2025-07-17T06:44:03.8439295Z [ 2025-07-17T06:44:03.8439631Z _OutIt=xnn_float16 *, 2025-07-17T06:44:03.8440074Z Dst=xnn_float16, 2025-07-17T06:44:03.8440495Z _Diff=size_t, 2025-07-17T06:44:03.8440866Z _Ty=int 2025-07-17T06:44:03.8441198Z ] 2025-07-17T06:44:03.8442078Z [1052/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernel-utils.dir\src\microkernel-utils.c.obj 2025-07-17T06:44:03.8448431Z [1053/7682] Linking C static library lib\microkernels-prod.lib 2025-07-17T06:44:03.8711779Z [1054/7682] Building C object confu-deps\XNNPACK\CMakeFiles\cache.dir\src\cache.c.obj 2025-07-17T06:44:03.9593566Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:03.9594141Z [1055/7682] Building C object confu-deps\XNNPACK\CMakeFiles\logging.dir\src\log.c.obj 2025-07-17T06:44:03.9610417Z [1056/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operator-delete.c.obj 2025-07-17T06:44:03.9672734Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:03.9673442Z [1057/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\average-pooling-nhwc.c.obj 2025-07-17T06:44:03.9684602Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:03.9685307Z [1058/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\argmax-pooling-nhwc.c.obj 2025-07-17T06:44:03.9697619Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:03.9698552Z [1059/7682] Building C object confu-deps\XNNPACK\CMakeFiles\memory.dir\src\memory.c.obj 2025-07-17T06:44:03.9970773Z [1060/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\binary-elementwise-nd.c.obj 2025-07-17T06:44:04.0382244Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.0383332Z [1061/7682] Building C object confu-deps\XNNPACK\CMakeFiles\mutex.dir\src\mutex.c.obj 2025-07-17T06:44:04.0817938Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.0819209Z [1062/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\channel-shuffle-nc.c.obj 2025-07-17T06:44:04.0902315Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.0903263Z [1063/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\constant-pad-nd.c.obj 2025-07-17T06:44:04.0922497Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.0923800Z [1064/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\batch-matrix-multiply-nc.c.obj 2025-07-17T06:44:04.1225132Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.1225960Z [1065/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\dynamic-fully-connected-nc.c.obj 2025-07-17T06:44:04.2153788Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.2154431Z [1066/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\pack-lh.c.obj 2025-07-17T06:44:04.2166527Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.2167299Z [1067/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\max-pooling-nhwc.c.obj 2025-07-17T06:44:04.2215142Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.2215803Z [1068/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\reduce-nd.c.obj 2025-07-17T06:44:04.2233129Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.2233796Z [1069/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nchw.c.obj 2025-07-17T06:44:04.2414884Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.2416081Z [1070/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\deconvolution-nhwc.c.obj 2025-07-17T06:44:04.2487777Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.2488577Z [1071/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\convolution-nhwc.c.obj 2025-07-17T06:44:04.2544338Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.2545092Z [1072/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nchw.c.obj 2025-07-17T06:44:04.3092495Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3093668Z [1073/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\fully-connected-nc.c.obj 2025-07-17T06:44:04.3395039Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3395759Z [1074/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\resize-bilinear-nhwc.c.obj 2025-07-17T06:44:04.3448812Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3449530Z [1075/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\rope-nthc.c.obj 2025-07-17T06:44:04.3552708Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3553379Z [1076/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\slice-nd.c.obj 2025-07-17T06:44:04.3565802Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3566555Z [1077/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\scaled-dot-product-attention-nhtc.c.obj 2025-07-17T06:44:04.3739825Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3740502Z [1078/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\transpose-nd.c.obj 2025-07-17T06:44:04.3754570Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3755691Z [1079/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\softmax-nc.c.obj 2025-07-17T06:44:04.3812466Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.3813832Z [1080/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unary-elementwise-nc.c.obj 2025-07-17T06:44:04.4280828Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.4282322Z [1081/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operators.dir\src\operators\unpooling-nhwc.c.obj 2025-07-17T06:44:04.4679980Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.4680998Z [1082/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operator-run.dir\src\operator-run.c.obj 2025-07-17T06:44:04.4683192Z 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-07-17T06:44:04.4685462Z 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-07-17T06:44:04.4687733Z 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-07-17T06:44:04.5120383Z 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-07-17T06:44:04.5122470Z [1083/7682] Building C object confu-deps\XNNPACK\CMakeFiles\operator-utils.dir\src\operator-utils.c.obj 2025-07-17T06:44:04.5470746Z [1084/7682] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\binary-elementwise.cc.obj 2025-07-17T06:44:04.5473149Z 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-07-17T06:44:04.5475383Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:04.5477688Z 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-07-17T06:44:04.5479931Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:04.5482188Z 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-07-17T06:44:04.5484350Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-17T06:44:04.5486908Z 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-07-17T06:44:04.5489489Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-17T06:44:04.5632288Z 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-07-17T06:44:04.5634474Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:04.5636578Z [1085/7682] Building CXX object confu-deps\XNNPACK\CMakeFiles\reference-ukernels.dir\src\reference\unary-elementwise.cc.obj 2025-07-17T06:44:04.5639018Z 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-07-17T06:44:04.5641615Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:04.5644049Z 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-07-17T06:44:04.5646335Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:04.5648894Z 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-07-17T06:44:04.5651403Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-17T06:44:04.5653765Z 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-07-17T06:44:04.5655453Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(535): note: see declaration of 'xnn_bfloat16' 2025-07-17T06:44:04.6135564Z 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-07-17T06:44:04.6136865Z C:\actions-runner\_work\pytorch\pytorch\third_party\XNNPACK\src\xnnpack/math.h(522): note: see declaration of 'xnn_float16' 2025-07-17T06:44:04.6137767Z [1086/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\memory-planner.c.obj 2025-07-17T06:44:04.6446115Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.6446867Z [1087/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\runtime.c.obj 2025-07-17T06:44:04.6465664Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.6466370Z [1088/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph.c.obj 2025-07-17T06:44:04.6725044Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.6725758Z [1089/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\argmax-pooling-2d.c.obj 2025-07-17T06:44:04.7318157Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.7319396Z [1090/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\average-pooling-2d.c.obj 2025-07-17T06:44:04.7878125Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.7879623Z [1091/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\batch-matrix-multiply.c.obj 2025-07-17T06:44:04.8015014Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.8016057Z [1092/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\binary.c.obj 2025-07-17T06:44:04.8157964Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.8159439Z [1093/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\concatenate.c.obj 2025-07-17T06:44:04.8749575Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.8750910Z [1094/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\convolution-2d.c.obj 2025-07-17T06:44:04.9073959Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.9075021Z [1095/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\copy.c.obj 2025-07-17T06:44:04.9219492Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.9220129Z [1096/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deprecated.c.obj 2025-07-17T06:44:04.9341280Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.9341945Z [1097/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\deconvolution-2d.c.obj 2025-07-17T06:44:04.9905329Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:04.9906531Z [1098/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depth-to-space-2d.c.obj 2025-07-17T06:44:05.0402983Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.0403815Z [1099/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\depthwise-convolution-2d.c.obj 2025-07-17T06:44:05.0682144Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.0683470Z [1100/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected-sparse.c.obj 2025-07-17T06:44:05.0704820Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.0705955Z [1101/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\even-split.c.obj 2025-07-17T06:44:05.1425516Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.1427003Z [1102/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\fully-connected.c.obj 2025-07-17T06:44:05.1694508Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.1695273Z [1103/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\max-pooling-2d.c.obj 2025-07-17T06:44:05.1822404Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.1823579Z [1104/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\reshape-helpers.c.obj 2025-07-17T06:44:05.1993795Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.1994427Z [1105/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\pack-lh.c.obj 2025-07-17T06:44:05.2560755Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.2561923Z [1106/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\scaled-dot-product-attention.c.obj 2025-07-17T06:44:05.2926624Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.2927772Z [1107/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\softmax.c.obj 2025-07-17T06:44:05.3199671Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.3200343Z [1108/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-constant-pad.c.obj 2025-07-17T06:44:05.3270209Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.3271525Z [1109/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\space-to-depth-2d.c.obj 2025-07-17T06:44:05.3927415Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.3928139Z [1110/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-reduce.c.obj 2025-07-17T06:44:05.4315927Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.4316907Z [1111/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-resize-bilinear-2d.c.obj 2025-07-17T06:44:05.4377237Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.4377932Z [1112/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-slice.c.obj 2025-07-17T06:44:05.4393932Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.4395092Z [1113/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\static-transpose.c.obj 2025-07-17T06:44:05.4540344Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.4541091Z [1114/7682] Generating sleeflibm_AVX2.h.tmp 2025-07-17T06:44:05.4552731Z [1115/7682] Generating sleeflibm_AVX.h.tmp 2025-07-17T06:44:05.4681020Z [1116/7682] Generating sleeflibm_AVX512F.h.tmp 2025-07-17T06:44:05.4691172Z [1117/7682] Generating sleeflibm_AVX2128.h.tmp 2025-07-17T06:44:05.4822860Z [1118/7682] Generating sleeflibm_AVX512F_.h.tmp 2025-07-17T06:44:05.4833106Z [1119/7682] Generating sleeflibm_AVX512FNOFMA.h.tmp 2025-07-17T06:44:05.4857519Z [1120/7682] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-17T06:44:05.4965810Z [1121/7682] Generating sleeflibm_AVX_.h.tmp 2025-07-17T06:44:05.4987411Z [1122/7682] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-07-17T06:44:05.5000582Z [1123/7682] Generating sleeflibm_FMA4.h.tmp 2025-07-17T06:44:05.5069808Z [1124/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unpooling-2d.c.obj 2025-07-17T06:44:05.5107881Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.5108867Z [1125/7682] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-07-17T06:44:05.5127178Z [1126/7682] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-07-17T06:44:05.5147853Z [1127/7682] Generating sleeflibm_SSE2.h.tmp 2025-07-17T06:44:05.5202818Z [1128/7682] Generating sleeflibm_SSE4.h.tmp 2025-07-17T06:44:05.5236668Z [1129/7682] Generating sleeflibm_SSE_.h.tmp 2025-07-17T06:44:05.5301146Z [1130/7682] Generating alias_AVX512F_sp.h.tmp 2025-07-17T06:44:05.5314772Z [1131/7682] Generating alias_AVX512F_dp.h.tmp 2025-07-17T06:44:05.5384889Z [1132/7682] Generating dispscalar.c.body 2025-07-17T06:44:05.5395412Z [1133/7682] Generating dispsse.c.tmp 2025-07-17T06:44:05.5452427Z [1134/7682] Generating dispavx.c.tmp 2025-07-17T06:44:05.5464055Z [1135/7682] Running C++ protocol buffer compiler on C:/actions-runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-17T06:44:05.5634529Z [1136/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\unary.c.obj 2025-07-17T06:44:05.5709690Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.5710270Z [1137/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\tensor.c.obj 2025-07-17T06:44:05.5776033Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.5776939Z [1138/7682] Building C object confu-deps\XNNPACK\CMakeFiles\subgraph.dir\src\subgraph\validation.c.obj 2025-07-17T06:44:05.7371658Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:05.7373717Z [1139/7682] Generating build_identifier.c 2025-07-17T06:44:05.8857274Z [1140/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\builder.cpp.obj 2025-07-17T06:44:05.8929045Z [1141/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codewriter.cpp.obj 2025-07-17T06:44:05.8943604Z [1142/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\constpool.cpp.obj 2025-07-17T06:44:05.8957591Z [1143/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\assembler.cpp.obj 2025-07-17T06:44:05.9017366Z [1144/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\archtraits.cpp.obj 2025-07-17T06:44:05.9019570Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9022072Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9024539Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9027088Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9029796Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9032460Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9034835Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9182791Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9185744Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9188544Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:05.9190652Z [1145/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\compiler.cpp.obj 2025-07-17T06:44:05.9332640Z [1146/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\codeholder.cpp.obj 2025-07-17T06:44:06.0541606Z [1147/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\cpuinfo.cpp.obj 2025-07-17T06:44:06.1796992Z [1148/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\errorhandler.cpp.obj 2025-07-17T06:44:06.1962272Z [1149/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emithelper.cpp.obj 2025-07-17T06:44:06.2142535Z [1150/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\environment.cpp.obj 2025-07-17T06:44:06.2332514Z [1151/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitterutils.cpp.obj 2025-07-17T06:44:06.2407275Z [1152/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\emitter.cpp.obj 2025-07-17T06:44:06.2643761Z [1153/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\func.cpp.obj 2025-07-17T06:44:06.2749139Z [1154/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\formatter.cpp.obj 2025-07-17T06:44:06.3944497Z [1155/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\funcargscontext.cpp.obj 2025-07-17T06:44:06.4827532Z [1156/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\globals.cpp.obj 2025-07-17T06:44:06.5152176Z [1157/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\inst.cpp.obj 2025-07-17T06:44:06.5315865Z [1158/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\instdb.cpp.obj 2025-07-17T06:44:06.5475764Z [1159/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitallocator.cpp.obj 2025-07-17T06:44:06.5734367Z [1160/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\jitruntime.cpp.obj 2025-07-17T06:44:06.5801481Z [1161/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\operand.cpp.obj 2025-07-17T06:44:06.5878514Z [1162/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\logger.cpp.obj 2025-07-17T06:44:06.7568229Z [1163/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\osutils.cpp.obj 2025-07-17T06:44:06.8401413Z [1164/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\ralocal.cpp.obj 2025-07-17T06:44:06.8477437Z [1165/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rastack.cpp.obj 2025-07-17T06:44:06.8548492Z [1166/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\string.cpp.obj 2025-07-17T06:44:06.8623703Z [1167/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\rapass.cpp.obj 2025-07-17T06:44:06.8745733Z [1168/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\support.cpp.obj 2025-07-17T06:44:06.8891986Z [1169/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\type.cpp.obj 2025-07-17T06:44:06.8964723Z [1170/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\target.cpp.obj 2025-07-17T06:44:07.0713732Z [1171/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\virtmem.cpp.obj 2025-07-17T06:44:07.1480516Z [1172/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zone.cpp.obj 2025-07-17T06:44:07.1564101Z [1173/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonehash.cpp.obj 2025-07-17T06:44:07.1623811Z [1174/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonestack.cpp.obj 2025-07-17T06:44:07.1781168Z [1175/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonelist.cpp.obj 2025-07-17T06:44:07.1893912Z [1176/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonetree.cpp.obj 2025-07-17T06:44:07.2108515Z [1177/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\core\zonevector.cpp.obj 2025-07-17T06:44:07.2600265Z [1178/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\armformatter.cpp.obj 2025-07-17T06:44:07.2601585Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.2603191Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.2605117Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.2607767Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.2610422Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.2613312Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.2615970Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4244658Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4247369Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4250397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4251747Z [1179/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64assembler.cpp.obj 2025-07-17T06:44:07.4252992Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4254528Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4256323Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4257970Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4259436Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4261703Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.4264338Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5083702Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5085208Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5086860Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5088109Z [1180/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64builder.cpp.obj 2025-07-17T06:44:07.5089250Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5090697Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5092303Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5094309Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5096661Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5099149Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5101659Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5206153Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5207781Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5209300Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5211313Z [1181/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64emithelper.cpp.obj 2025-07-17T06:44:07.5212472Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5214321Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5215858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5217578Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5219177Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5220631Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5222012Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5283817Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5285397Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5287005Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5288187Z [1182/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64func.cpp.obj 2025-07-17T06:44:07.5289268Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5290630Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5291992Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5293349Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5295080Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5297477Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5299958Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5302674Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5305290Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5307049Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5308229Z [1183/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64compiler.cpp.obj 2025-07-17T06:44:07.5309564Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5310980Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5312467Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5313864Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5315794Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5318534Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5321802Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5374753Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5376163Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5377690Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5378914Z [1184/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64formatter.cpp.obj 2025-07-17T06:44:07.5380259Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5381820Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5383429Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5385945Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5388775Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5391403Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5394002Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5471855Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5473291Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5475620Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5477796Z [1185/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instapi.cpp.obj 2025-07-17T06:44:07.5479837Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5482432Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5485063Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5487882Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5490489Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5493074Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.5495985Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6128524Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6130094Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6133151Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6135363Z [1186/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64instdb.cpp.obj 2025-07-17T06:44:07.6137457Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6139720Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6141241Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6143202Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6145676Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6148243Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.6150597Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7523247Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7525785Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7528322Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7530635Z [1187/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64operand.cpp.obj 2025-07-17T06:44:07.7532730Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7535579Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7538160Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7539851Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7541469Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7543078Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.7544629Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8923594Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8925340Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8926848Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8928044Z [1188/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\arm\a64rapass.cpp.obj 2025-07-17T06:44:07.8929536Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(132): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8932158Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(133): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8934873Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(134): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8937512Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(135): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8940175Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(137): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8942779Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(138): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.8945458Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(139): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.9194929Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(140): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.9196340Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(141): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.9197817Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\arm\../arm/a64operand.h(142): warning C5054: operator '|': deprecated between enumerations of different types 2025-07-17T06:44:07.9198995Z [1189/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86formatter.cpp.obj 2025-07-17T06:44:07.9251406Z [1190/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86builder.cpp.obj 2025-07-17T06:44:07.9320530Z [1191/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86emithelper.cpp.obj 2025-07-17T06:44:07.9408989Z [1192/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86assembler.cpp.obj 2025-07-17T06:44:07.9411148Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(244): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9413782Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(244): note: the template instantiation context (the oldest one first) is 2025-07-17T06:44:07.9416413Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(252): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86CDisp8SHL_T<0>' being compiled 2025-07-17T06:44:07.9419189Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(245): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9421835Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(246): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9424544Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(247): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9427381Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9430088Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): note: the template instantiation context (the oldest one first) is 2025-07-17T06:44:07.9432903Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(284): note: see reference to class template instantiation 'asmjit::_abi_1_13::x86::X86Mod16BaseIndexTable_T<0>' being compiled 2025-07-17T06:44:07.9435826Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9438444Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9441096Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(276): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9443738Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9447068Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9449685Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9452411Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(277): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9455099Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9457693Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9461345Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9463853Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(278): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9466385Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9469342Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9471855Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9474505Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\external\asmjit\src\asmjit\x86\x86assembler.cpp(279): warning C5054: operator '==': deprecated between enumerations of different types 2025-07-17T06:44:07.9476490Z [1193/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86compiler.cpp.obj 2025-07-17T06:44:07.9870288Z [1194/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86func.cpp.obj 2025-07-17T06:44:08.1534122Z [1195/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instdb.cpp.obj 2025-07-17T06:44:08.2501216Z [1196/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86instapi.cpp.obj 2025-07-17T06:44:08.2629086Z [1197/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86operand.cpp.obj 2025-07-17T06:44:08.3298993Z [1198/7682] Building CXX object third_party\fbgemm\asmjit\CMakeFiles\asmjit.dir\src\asmjit\x86\x86rapass.cpp.obj 2025-07-17T06:44:08.3882556Z [1199/7682] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-operators_onnx_torch-ml.pb.cc.obj 2025-07-17T06:44:08.3971952Z [1200/7682] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx-data_onnx_torch.pb.cc.obj 2025-07-17T06:44:08.4226941Z [1201/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc.c.obj 2025-07-17T06:44:08.4307561Z [1202/7682] Building CXX object third_party\onnx\CMakeFiles\onnx_proto.dir\onnx\onnx_onnx_torch-ml.pb.cc.obj 2025-07-17T06:44:08.5507940Z [1203/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-aligned.c.obj 2025-07-17T06:44:08.6636175Z [1204/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\alloc-posix.c.obj 2025-07-17T06:44:08.6799808Z [1205/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\bitmap.c.obj 2025-07-17T06:44:08.7367032Z [1206/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\arena.c.obj 2025-07-17T06:44:08.7906820Z [1207/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\libc.c.obj 2025-07-17T06:44:08.8002007Z [1208/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\heap.c.obj 2025-07-17T06:44:08.8472027Z [1209/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\init.c.obj 2025-07-17T06:44:08.9579066Z [1210/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\os.c.obj 2025-07-17T06:44:08.9735871Z [1211/7682] Generating include/renameavx512fnofma.h 2025-07-17T06:44:08.9868131Z Generating renameavx512fnofma.h: mkrename "cinz_" "8" "16" "avx512fnofma" 2025-07-17T06:44:08.9868909Z 2025-07-17T06:44:08.9869120Z [1212/7682] Generating include/renameavx512f.h 2025-07-17T06:44:09.0006541Z Generating renameavx512f.h: mkrename "finz_" "8" "16" "avx512f" 2025-07-17T06:44:09.0007133Z 2025-07-17T06:44:09.0007344Z [1213/7682] Generating include/renameavx2.h 2025-07-17T06:44:09.0145400Z Generating renameavx2.h: mkrename "finz_" "4" "8" "avx2" 2025-07-17T06:44:09.0145769Z 2025-07-17T06:44:09.0145959Z [1214/7682] Generating include/renameavx2128.h 2025-07-17T06:44:09.0278042Z Generating renameavx2128.h: mkrename "finz_" "2" "4" "avx2128" 2025-07-17T06:44:09.0278645Z 2025-07-17T06:44:09.0278837Z [1215/7682] Generating include/renamefma4.h 2025-07-17T06:44:09.0409645Z Generating renamefma4.h: mkrename "finz_" "4" "8" "fma4" 2025-07-17T06:44:09.0409994Z 2025-07-17T06:44:09.0410363Z [1216/7682] Generating include/renameavx.h 2025-07-17T06:44:09.0549754Z Generating renameavx.h: mkrename "cinz_" "4" "8" "avx" 2025-07-17T06:44:09.0550041Z 2025-07-17T06:44:09.0550365Z [1217/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\random.c.obj 2025-07-17T06:44:09.0573397Z [1218/7682] Generating include/renamesse4.h 2025-07-17T06:44:09.0705729Z Generating renamesse4.h: mkrename "cinz_" "2" "4" "sse4" 2025-07-17T06:44:09.0706239Z 2025-07-17T06:44:09.0706469Z [1219/7682] Generating include/renamepurec_scalar.h 2025-07-17T06:44:09.0715942Z Generating renamepurec_scalar.h: mkrename "cinz_" "1" "1" "purec" 2025-07-17T06:44:09.0716269Z 2025-07-17T06:44:09.0716397Z [1220/7682] Generating include/renamesse2.h 2025-07-17T06:44:09.0844301Z Generating renamesse2.h: mkrename "cinz_" "2" "4" "sse2" 2025-07-17T06:44:09.0844608Z 2025-07-17T06:44:09.0844922Z [1221/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\page.c.obj 2025-07-17T06:44:09.0857156Z [1222/7682] Generating include/renamepurecfma_scalar.h 2025-07-17T06:44:09.0870299Z Generating renamepurecfma_scalar.h: mkrename "finz_" "1" "1" "purecfma" 2025-07-17T06:44:09.0870727Z 2025-07-17T06:44:09.0870917Z [1223/7682] Generating include/renamecuda.h 2025-07-17T06:44:09.1098246Z Generating renamecuda.h: mkrename "finz_" "1" "1" "cuda" 2025-07-17T06:44:09.1098747Z 2025-07-17T06:44:09.1098904Z [1224/7682] Generating ../../../include/sleef.h 2025-07-17T06:44:09.1109343Z [1225/7682] Generating include/alias_avx512f.h 2025-07-17T06:44:09.1119421Z [1226/7682] Generating dispscalar.c 2025-07-17T06:44:09.1237589Z [1227/7682] Generating include/renamedspscalar.h 2025-07-17T06:44:09.1257542Z [1228/7682] Generating include/renamedsp128.h 2025-07-17T06:44:09.1340889Z [1229/7682] Generating dispsse.c 2025-07-17T06:44:09.1392036Z [1230/7682] Generating include/renamedsp256.h 2025-07-17T06:44:09.1468242Z [1231/7682] Generating dispavx.c 2025-07-17T06:44:09.1626475Z [1232/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment.c.obj 2025-07-17T06:44:09.1714693Z [1233/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\segment-map.c.obj 2025-07-17T06:44:09.2616236Z [1234/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\stats.c.obj 2025-07-17T06:44:09.2701503Z [1235/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\prim\prim.c.obj 2025-07-17T06:44:09.5297060Z [1236/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\argmaxpool-config.c.obj 2025-07-17T06:44:09.5358482Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.5359509Z [1237/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\avgpool-config.c.obj 2025-07-17T06:44:09.5461173Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.5462247Z [1238/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\cmul-config.c.obj 2025-07-17T06:44:09.5552243Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.5553443Z [1239/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\binary-elementwise-config.c.obj 2025-07-17T06:44:09.5654999Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.5656035Z [1240/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\conv-hwc2chw-config.c.obj 2025-07-17T06:44:09.5991694Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.5993310Z [1241/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\experiments-config.c.obj 2025-07-17T06:44:09.6210262Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.6211381Z [1242/7682] Building CXX object third_party\mimalloc\CMakeFiles\mimalloc-static.dir\src\options.c.obj 2025-07-17T06:44:09.6733833Z [1243/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv2d-chw-config.c.obj 2025-07-17T06:44:09.6872448Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.6873559Z [1244/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\dwconv-config.c.obj 2025-07-17T06:44:09.9472806Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.9473500Z [1245/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-chw-config.c.obj 2025-07-17T06:44:09.9615310Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.9615964Z [1246/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\ibilinear-config.c.obj 2025-07-17T06:44:09.9694005Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.9695169Z [1247/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\lut32norm-config.c.obj 2025-07-17T06:44:09.9949359Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:09.9950051Z [1248/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\maxpool-config.c.obj 2025-07-17T06:44:10.0140018Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.0140675Z [1249/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\gemm-config.c.obj 2025-07-17T06:44:10.0319790Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.0320585Z [1250/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pavgpool-config.c.obj 2025-07-17T06:44:10.0824922Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.0826116Z [1251/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\raddstoreexpminusmax-config.c.obj 2025-07-17T06:44:10.1007440Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.1008444Z [1252/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\pack-lh-config.c.obj 2025-07-17T06:44:10.3496430Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.3497243Z [1253/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\reduce-config.c.obj 2025-07-17T06:44:10.3515178Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.3516595Z [1254/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\spmm-config.c.obj 2025-07-17T06:44:10.3728654Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.3730168Z [1255/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\rmax-config.c.obj 2025-07-17T06:44:10.4203887Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.4205948Z [1256/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unpool-config.c.obj 2025-07-17T06:44:10.4226934Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.4228102Z [1257/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\transpose-config.c.obj 2025-07-17T06:44:10.4294119Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.4295253Z [1258/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\unary-elementwise-config.c.obj 2025-07-17T06:44:10.4793909Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.4794636Z [1259/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\vmulcaddc-config.c.obj 2025-07-17T06:44:10.4912991Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.4913637Z [1260/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-fill-config.c.obj 2025-07-17T06:44:10.5030425Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.5031342Z [1261/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\params.c.obj 2025-07-17T06:44:10.5042193Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.5043222Z [1262/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\build_identifier.c.obj 2025-07-17T06:44:10.5652361Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.5653035Z [1263/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernel.cc.obj 2025-07-17T06:44:10.7494337Z [1264/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\xx-pad-config.c.obj 2025-07-17T06:44:10.7606062Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.7607125Z [1265/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\x8-lut-config.c.obj 2025-07-17T06:44:10.7701120Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.7702461Z [1266/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\configs\zip-config.c.obj 2025-07-17T06:44:10.8312857Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:10.8313832Z [1267/7682] Building C object confu-deps\XNNPACK\CMakeFiles\XNNPACK.dir\src\init.c.obj 2025-07-17T06:44:11.0016092Z cl : Command line warning D9025 : overriding '/O2' with '/O1' 2025-07-17T06:44:11.0016827Z [1268/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmBfloat16Convert.cc.obj 2025-07-17T06:44:11.0152014Z [1269/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDMNBit.cc.obj 2025-07-17T06:44:11.0465655Z [1270/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Fbgemm.cc.obj 2025-07-17T06:44:11.0468845Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0471632Z with 2025-07-17T06:44:11.0471921Z [ 2025-07-17T06:44:11.0472236Z inpType=uint8_t 2025-07-17T06:44:11.0472613Z ] 2025-07-17T06:44:11.0474053Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0477565Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0481155Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0484778Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0487184Z with 2025-07-17T06:44:11.0487490Z [ 2025-07-17T06:44:11.0487792Z inpType=int8_t 2025-07-17T06:44:11.0488158Z ] 2025-07-17T06:44:11.0489564Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0493279Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0496842Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0500438Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0502860Z with 2025-07-17T06:44:11.0503164Z [ 2025-07-17T06:44:11.0503485Z inpType=uint8_t 2025-07-17T06:44:11.0503852Z ] 2025-07-17T06:44:11.0505304Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0509230Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0512204Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0514319Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0516196Z with 2025-07-17T06:44:11.0516373Z [ 2025-07-17T06:44:11.0516555Z inpType=int8_t 2025-07-17T06:44:11.0516765Z ] 2025-07-17T06:44:11.0517548Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0519433Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0522261Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0525643Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0527161Z with 2025-07-17T06:44:11.0527423Z [ 2025-07-17T06:44:11.0527706Z inpType=uint8_t 2025-07-17T06:44:11.0528060Z ] 2025-07-17T06:44:11.0529336Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0531705Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0533991Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0536085Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0537412Z with 2025-07-17T06:44:11.0537577Z [ 2025-07-17T06:44:11.0537763Z inpType=uint8_t 2025-07-17T06:44:11.0537973Z ] 2025-07-17T06:44:11.0538858Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0540950Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0542907Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0545063Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0546582Z with 2025-07-17T06:44:11.0546749Z [ 2025-07-17T06:44:11.0546925Z inpType=uint8_t 2025-07-17T06:44:11.0547131Z ] 2025-07-17T06:44:11.0548077Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0550192Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0552317Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0554494Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0555954Z with 2025-07-17T06:44:11.0556120Z [ 2025-07-17T06:44:11.0556296Z inpType=uint8_t 2025-07-17T06:44:11.0556500Z ] 2025-07-17T06:44:11.0557423Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0559666Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0561738Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0563807Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0565233Z with 2025-07-17T06:44:11.0565392Z [ 2025-07-17T06:44:11.0565565Z inpType=uint8_t 2025-07-17T06:44:11.0565829Z ] 2025-07-17T06:44:11.0566755Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0568774Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0570865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0573094Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0574684Z with 2025-07-17T06:44:11.0574911Z [ 2025-07-17T06:44:11.0575075Z inpType=uint8_t 2025-07-17T06:44:11.0575324Z ] 2025-07-17T06:44:11.0576155Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0578301Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0581287Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0584945Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0587405Z with 2025-07-17T06:44:11.0587714Z [ 2025-07-17T06:44:11.0588012Z inpType=uint8_t 2025-07-17T06:44:11.0588492Z ] 2025-07-17T06:44:11.0589917Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0593735Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0597364Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0600179Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0601639Z with 2025-07-17T06:44:11.0601818Z [ 2025-07-17T06:44:11.0602085Z inpType=uint8_t 2025-07-17T06:44:11.0602388Z ] 2025-07-17T06:44:11.0603368Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0605385Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0607670Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0609898Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0611867Z with 2025-07-17T06:44:11.0612082Z [ 2025-07-17T06:44:11.0612309Z inpType=uint8_t 2025-07-17T06:44:11.0612559Z ] 2025-07-17T06:44:11.0613572Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0615709Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0618656Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0621423Z 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-07-17T06:44:11.0622942Z with 2025-07-17T06:44:11.0623411Z [ 2025-07-17T06:44:11.0623711Z inpType=uint8_t 2025-07-17T06:44:11.0624082Z ] 2025-07-17T06:44:11.0625576Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0629276Z 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-07-17T06:44:11.0631995Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0634062Z 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-07-17T06:44:11.0635537Z with 2025-07-17T06:44:11.0635751Z [ 2025-07-17T06:44:11.0635931Z inpType=int8_t 2025-07-17T06:44:11.0636152Z ] 2025-07-17T06:44:11.0637031Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0638859Z 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-07-17T06:44:11.0640735Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0642592Z 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-07-17T06:44:11.0644122Z with 2025-07-17T06:44:11.0644343Z [ 2025-07-17T06:44:11.0644513Z inpType=uint8_t 2025-07-17T06:44:11.0644729Z ] 2025-07-17T06:44:11.0645494Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0647400Z 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-07-17T06:44:11.0649373Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0651352Z 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-07-17T06:44:11.0652837Z with 2025-07-17T06:44:11.0653007Z [ 2025-07-17T06:44:11.0653174Z inpType=int8_t 2025-07-17T06:44:11.0653427Z ] 2025-07-17T06:44:11.0654339Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0657794Z 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-07-17T06:44:11.0661364Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,int8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0664881Z 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-07-17T06:44:11.0667262Z with 2025-07-17T06:44:11.0667577Z [ 2025-07-17T06:44:11.0667870Z inpType=uint8_t 2025-07-17T06:44:11.0668231Z ] 2025-07-17T06:44:11.0669827Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0673477Z 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-07-17T06:44:11.0677146Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0681349Z 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-07-17T06:44:11.0684047Z with 2025-07-17T06:44:11.0684362Z [ 2025-07-17T06:44:11.0684682Z inpType=uint8_t 2025-07-17T06:44:11.0685080Z ] 2025-07-17T06:44:11.0686639Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0690315Z 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-07-17T06:44:11.0694061Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0697824Z 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-07-17T06:44:11.0700285Z with 2025-07-17T06:44:11.0700586Z [ 2025-07-17T06:44:11.0700903Z inpType=uint8_t 2025-07-17T06:44:11.0701297Z ] 2025-07-17T06:44:11.0703393Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0709820Z 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-07-17T06:44:11.0713684Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0717457Z 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-07-17T06:44:11.0719900Z with 2025-07-17T06:44:11.0720220Z [ 2025-07-17T06:44:11.0720532Z inpType=uint8_t 2025-07-17T06:44:11.0720932Z ] 2025-07-17T06:44:11.0722464Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0726187Z 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-07-17T06:44:11.0729749Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0733502Z 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-07-17T06:44:11.0736145Z with 2025-07-17T06:44:11.0736466Z [ 2025-07-17T06:44:11.0736778Z inpType=uint8_t 2025-07-17T06:44:11.0737298Z ] 2025-07-17T06:44:11.0739015Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0742783Z 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-07-17T06:44:11.0746529Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0750608Z 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-07-17T06:44:11.0753086Z with 2025-07-17T06:44:11.0753405Z [ 2025-07-17T06:44:11.0753706Z inpType=uint8_t 2025-07-17T06:44:11.0754081Z ] 2025-07-17T06:44:11.0755656Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0759685Z 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-07-17T06:44:11.0763462Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0767367Z 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-07-17T06:44:11.0769932Z with 2025-07-17T06:44:11.0770249Z [ 2025-07-17T06:44:11.0770567Z inpType=uint8_t 2025-07-17T06:44:11.0770978Z ] 2025-07-17T06:44:11.0772515Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0776218Z 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-07-17T06:44:11.0779905Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0783833Z 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-07-17T06:44:11.0786561Z with 2025-07-17T06:44:11.0786775Z [ 2025-07-17T06:44:11.0786957Z inpType=uint8_t 2025-07-17T06:44:11.0787231Z ] 2025-07-17T06:44:11.0788746Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::PackMatrix' 2025-07-17T06:44:11.0837265Z 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-07-17T06:44:11.0842922Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int16_t>::packedBufferSize' 2025-07-17T06:44:11.0848601Z 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-07-17T06:44:11.0851063Z with 2025-07-17T06:44:11.0851387Z [ 2025-07-17T06:44:11.0851708Z inpType=uint8_t 2025-07-17T06:44:11.0852109Z ] 2025-07-17T06:44:11.0855621Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::PackMatrix' 2025-07-17T06:44:11.0859632Z 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-07-17T06:44:11.0863493Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,uint8_t,int32_t>::packedBufferSize' 2025-07-17T06:44:11.0869301Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0871752Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0874033Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0877364Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0880861Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0884410Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0887862Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0891745Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0895251Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0897539Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0899581Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0902019Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0905413Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.0907763Z [1271/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmConv.cc.obj 2025-07-17T06:44:11.0910186Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0912728Z with 2025-07-17T06:44:11.0913006Z [ 2025-07-17T06:44:11.0913269Z T=uint8_t, 2025-07-17T06:44:11.0913487Z accT=int32_t, 2025-07-17T06:44:11.0913750Z inpType=uint8_t 2025-07-17T06:44:11.0914110Z ] 2025-07-17T06:44:11.0915546Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:11.0917137Z with 2025-07-17T06:44:11.0917447Z [ 2025-07-17T06:44:11.0917747Z T=uint8_t, 2025-07-17T06:44:11.0918107Z accT=int32_t 2025-07-17T06:44:11.0918478Z ] 2025-07-17T06:44:11.0920745Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0923293Z with 2025-07-17T06:44:11.0923612Z [ 2025-07-17T06:44:11.0923977Z T=uint8_t, 2025-07-17T06:44:11.0924380Z accT=int32_t 2025-07-17T06:44:11.0924750Z ] 2025-07-17T06:44:11.0926306Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:11.0927897Z with 2025-07-17T06:44:11.0928186Z [ 2025-07-17T06:44:11.0928443Z T=uint8_t, 2025-07-17T06:44:11.0928758Z accT=int32_t 2025-07-17T06:44:11.0929100Z ] 2025-07-17T06:44:11.0931328Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0933919Z with 2025-07-17T06:44:11.0934241Z [ 2025-07-17T06:44:11.0934520Z T=int8_t, 2025-07-17T06:44:11.0934856Z accT=int32_t, 2025-07-17T06:44:11.0935205Z inpType=int8_t 2025-07-17T06:44:11.0935572Z ] 2025-07-17T06:44:11.0936674Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:11.0937884Z with 2025-07-17T06:44:11.0938163Z [ 2025-07-17T06:44:11.0938447Z T=int8_t, 2025-07-17T06:44:11.0938781Z accT=int32_t 2025-07-17T06:44:11.0939107Z ] 2025-07-17T06:44:11.0941052Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0942870Z with 2025-07-17T06:44:11.0943156Z [ 2025-07-17T06:44:11.0943422Z T=int8_t, 2025-07-17T06:44:11.0956564Z accT=int32_t 2025-07-17T06:44:11.0956934Z ] 2025-07-17T06:44:11.0958090Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:11.0959349Z with 2025-07-17T06:44:11.0959626Z [ 2025-07-17T06:44:11.0959897Z T=int8_t, 2025-07-17T06:44:11.0960202Z accT=int32_t 2025-07-17T06:44:11.0960531Z ] 2025-07-17T06:44:11.0962394Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0964425Z with 2025-07-17T06:44:11.0964723Z [ 2025-07-17T06:44:11.0965020Z T=uint8_t, 2025-07-17T06:44:11.0965369Z accT=int32_t, 2025-07-17T06:44:11.0965643Z inpType=uint8_t 2025-07-17T06:44:11.0965863Z ] 2025-07-17T06:44:11.0966998Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:11.0968201Z with 2025-07-17T06:44:11.0968468Z [ 2025-07-17T06:44:11.0968705Z T=uint8_t, 2025-07-17T06:44:11.0969015Z accT=int32_t 2025-07-17T06:44:11.0969365Z ] 2025-07-17T06:44:11.0971446Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0973528Z with 2025-07-17T06:44:11.0973821Z [ 2025-07-17T06:44:11.0974062Z T=uint8_t, 2025-07-17T06:44:11.0974375Z accT=int32_t 2025-07-17T06:44:11.0974714Z ] 2025-07-17T06:44:11.0975708Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:11.0977178Z with 2025-07-17T06:44:11.0977452Z [ 2025-07-17T06:44:11.0977758Z T=uint8_t, 2025-07-17T06:44:11.0978106Z accT=int32_t 2025-07-17T06:44:11.0978471Z ] 2025-07-17T06:44:11.0980820Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0983361Z with 2025-07-17T06:44:11.0983670Z [ 2025-07-17T06:44:11.0983966Z T=uint8_t, 2025-07-17T06:44:11.0984333Z accT=int32_t, 2025-07-17T06:44:11.0984715Z inpType=uint8_t 2025-07-17T06:44:11.0985086Z ] 2025-07-17T06:44:11.0986554Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:11.0988167Z with 2025-07-17T06:44:11.0988560Z [ 2025-07-17T06:44:11.0988887Z T=uint8_t, 2025-07-17T06:44:11.0989265Z accT=int32_t 2025-07-17T06:44:11.0989660Z ] 2025-07-17T06:44:11.0992133Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.0994551Z with 2025-07-17T06:44:11.0994894Z [ 2025-07-17T06:44:11.0995198Z T=uint8_t, 2025-07-17T06:44:11.0995587Z accT=int32_t 2025-07-17T06:44:11.0995960Z ] 2025-07-17T06:44:11.0997475Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:11.0999135Z with 2025-07-17T06:44:11.0999432Z [ 2025-07-17T06:44:11.0999734Z T=uint8_t, 2025-07-17T06:44:11.1000094Z accT=int32_t 2025-07-17T06:44:11.1000458Z ] 2025-07-17T06:44:11.1002916Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.1005384Z with 2025-07-17T06:44:11.1005703Z [ 2025-07-17T06:44:11.1006003Z T=uint8_t, 2025-07-17T06:44:11.1006373Z accT=int32_t, 2025-07-17T06:44:11.1006812Z inpType=uint8_t 2025-07-17T06:44:11.1007209Z ] 2025-07-17T06:44:11.1008676Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:11.1010323Z with 2025-07-17T06:44:11.1010629Z [ 2025-07-17T06:44:11.1010911Z T=uint8_t, 2025-07-17T06:44:11.1011281Z accT=int32_t 2025-07-17T06:44:11.1012735Z ] 2025-07-17T06:44:11.1015120Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.1017565Z with 2025-07-17T06:44:11.1017868Z [ 2025-07-17T06:44:11.1018177Z T=uint8_t, 2025-07-17T06:44:11.1018576Z accT=int32_t 2025-07-17T06:44:11.1018975Z ] 2025-07-17T06:44:11.1020490Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:11.1022136Z with 2025-07-17T06:44:11.1022445Z [ 2025-07-17T06:44:11.1022738Z T=uint8_t, 2025-07-17T06:44:11.1023102Z accT=int32_t 2025-07-17T06:44:11.1023476Z ] 2025-07-17T06:44:11.1025626Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.1029715Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.1033688Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.1037575Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.1039620Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:11.1041030Z [1272/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\EmbeddingSpMDM.cc.obj 2025-07-17T06:44:11.1041817Z [1273/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\ExecuteKernelU8S8.cc.obj 2025-07-17T06:44:11.1288464Z [1274/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFPCommon.cc.obj 2025-07-17T06:44:11.2197667Z [1275/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFP16.cc.obj 2025-07-17T06:44:11.2496540Z [1276/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmFloat16Convert.cc.obj 2025-07-17T06:44:11.3100650Z [1277/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI8Spmdm.cc.obj 2025-07-17T06:44:11.4314913Z [1278/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmSparseDense.cc.obj 2025-07-17T06:44:11.4550435Z [1279/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmPackMatrixB.cc.obj 2025-07-17T06:44:11.4733049Z [1280/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\FbgemmI64.cc.obj 2025-07-17T06:44:11.5462146Z [1281/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelDirectConvU8S8S32ACC32.cc.obj 2025-07-17T06:44:11.5798447Z [1282/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernel.cc.obj 2025-07-17T06:44:11.7907077Z [1283/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512VNNI.cc.obj 2025-07-17T06:44:11.7988448Z [1284/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16Avx512.cc.obj 2025-07-17T06:44:11.8009875Z [1285/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC16.cc.obj 2025-07-17T06:44:11.8819847Z [1286/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32.cc.obj 2025-07-17T06:44:11.9104620Z [1287/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConv.cc.obj 2025-07-17T06:44:11.9290744Z [1288/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateKernelU8S8S32ACC32Avx512VNNI.cc.obj 2025-07-17T06:44:11.9883811Z [1289/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx2.cc.obj 2025-07-17T06:44:11.9885751Z 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-07-17T06:44:11.9887709Z 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-07-17T06:44:11.9889589Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9891744Z 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-07-17T06:44:11.9893571Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9895386Z 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-07-17T06:44:11.9897142Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9898941Z 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-07-17T06:44:11.9900794Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9902830Z 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-07-17T06:44:11.9905522Z 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-07-17T06:44:11.9908049Z 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-07-17T06:44:11.9910089Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9912018Z 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-07-17T06:44:11.9913878Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9915665Z 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-07-17T06:44:11.9917457Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9919207Z 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-07-17T06:44:11.9922130Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9924092Z 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-07-17T06:44:11.9925874Z 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-07-17T06:44:11.9927654Z 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-07-17T06:44:11.9929487Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9931412Z 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-07-17T06:44:11.9934238Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9937946Z 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-07-17T06:44:11.9941156Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9944892Z 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-07-17T06:44:11.9948509Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9951806Z 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-07-17T06:44:11.9954732Z 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-07-17T06:44:11.9958059Z 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-07-17T06:44:11.9961240Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9964556Z 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-07-17T06:44:11.9967891Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9971306Z 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-07-17T06:44:11.9974427Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9977501Z 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-07-17T06:44:11.9980899Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9984257Z 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-07-17T06:44:11.9987416Z 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-07-17T06:44:11.9990806Z 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-07-17T06:44:11.9993063Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:11.9995574Z 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-07-17T06:44:11.9998990Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0002265Z 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-07-17T06:44:12.0005591Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0009309Z 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-07-17T06:44:12.0012391Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0014537Z 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-07-17T06:44:12.0016474Z 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-07-17T06:44:12.0018327Z 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-07-17T06:44:12.0020150Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0022116Z 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-07-17T06:44:12.0024071Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0027234Z 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-07-17T06:44:12.0031258Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0034900Z 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-07-17T06:44:12.0211512Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx2.cc(50): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx2>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0214896Z 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-07-17T06:44:12.0217034Z [1290/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GroupwiseConvAcc32Avx512.cc.obj 2025-07-17T06:44:12.0219825Z 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-07-17T06:44:12.0223044Z 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-07-17T06:44:12.0226564Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0230091Z 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-07-17T06:44:12.0232893Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0235870Z 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-07-17T06:44:12.0238295Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0240406Z 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-07-17T06:44:12.0243756Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0245695Z 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-07-17T06:44:12.0248892Z 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-07-17T06:44:12.0252018Z 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-07-17T06:44:12.0255647Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0257750Z 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-07-17T06:44:12.0259867Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0263295Z 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-07-17T06:44:12.0266844Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0269997Z 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-07-17T06:44:12.0273572Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0275848Z 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-07-17T06:44:12.0277687Z 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-07-17T06:44:12.0279469Z 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-07-17T06:44:12.0281404Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0283305Z 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-07-17T06:44:12.0285108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0287058Z 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-07-17T06:44:12.0288809Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0290869Z 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-07-17T06:44:12.0292781Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0294744Z 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-07-17T06:44:12.0296754Z 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-07-17T06:44:12.0299086Z 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-07-17T06:44:12.0301844Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0304249Z 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-07-17T06:44:12.0306393Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0309836Z 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-07-17T06:44:12.0311773Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0313912Z 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-07-17T06:44:12.0317265Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0320743Z 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-07-17T06:44:12.0324363Z 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-07-17T06:44:12.0327508Z 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-07-17T06:44:12.0331154Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0333826Z 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-07-17T06:44:12.0336266Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0339634Z 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-07-17T06:44:12.0342812Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0346260Z 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-07-17T06:44:12.0350501Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0354630Z 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-07-17T06:44:12.0358002Z 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-07-17T06:44:12.0361430Z 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-07-17T06:44:12.0365254Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0369332Z 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-07-17T06:44:12.0372711Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0375718Z 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-07-17T06:44:12.0378916Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0382493Z 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-07-17T06:44:12.0386044Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\./GroupwiseConv.h(323): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0389606Z 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-07-17T06:44:12.0392655Z 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-07-17T06:44:12.0395833Z 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-07-17T06:44:12.0399204Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0402935Z 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-07-17T06:44:12.0406308Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0411887Z 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-07-17T06:44:12.0414622Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0417953Z 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-07-17T06:44:12.0421098Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0423789Z 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-07-17T06:44:12.0426264Z 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-07-17T06:44:12.0428220Z 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-07-17T06:44:12.0431593Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0434522Z 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-07-17T06:44:12.0437523Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0439878Z 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-07-17T06:44:12.0441969Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0444003Z 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-07-17T06:44:12.0446830Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<1,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0449248Z 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-07-17T06:44:12.0451154Z 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-07-17T06:44:12.0452998Z 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-07-17T06:44:12.0455071Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0457090Z 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-07-17T06:44:12.0459014Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0460904Z 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-07-17T06:44:12.0462645Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0465406Z 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-07-17T06:44:12.0467878Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0471107Z 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-07-17T06:44:12.0474689Z 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-07-17T06:44:12.0476835Z 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-07-17T06:44:12.0479184Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0481571Z 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-07-17T06:44:12.0485080Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0488435Z 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-07-17T06:44:12.0491773Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0494659Z 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-07-17T06:44:12.0497209Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<2,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0501196Z 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-07-17T06:44:12.0504364Z 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-07-17T06:44:12.0507718Z 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-07-17T06:44:12.0511095Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0514478Z 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-07-17T06:44:12.0517075Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0519063Z 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-07-17T06:44:12.0521043Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0522994Z 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-07-17T06:44:12.0525000Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0527155Z 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-07-17T06:44:12.0530195Z 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-07-17T06:44:12.0533331Z 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-07-17T06:44:12.0536571Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForTopOrBottomEdge(asmjit::_abi_1_13::x86::Emitter *,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0539155Z 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-07-17T06:44:12.0541086Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::initResultRegs(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0543905Z 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-07-17T06:44:12.0547272Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genCoreInsts(asmjit::_abi_1_13::x86::Emitter *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.0550520Z 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-07-17T06:44:12.0553846Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\GroupwiseConvAcc32Avx512.cc(71): warning C4661: 'void fbgemm::GenConvKernel<3,fbgemm::inst_set_t::avx512_vnni>::genForSingleOutput(asmjit::_abi_1_13::x86::Emitter *,bool,bool,bool,bool)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1007855Z 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-07-17T06:44:12.1008987Z [1291/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAMatrix.cc.obj 2025-07-17T06:44:12.1010950Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1012504Z with 2025-07-17T06:44:12.1012694Z [ 2025-07-17T06:44:12.1012934Z T=uint8_t, 2025-07-17T06:44:12.1013224Z accT=int32_t, 2025-07-17T06:44:12.1013463Z inpType=uint8_t 2025-07-17T06:44:12.1013677Z ] 2025-07-17T06:44:12.1014651Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1015649Z with 2025-07-17T06:44:12.1015823Z [ 2025-07-17T06:44:12.1016051Z T=uint8_t, 2025-07-17T06:44:12.1016305Z accT=int32_t 2025-07-17T06:44:12.1016497Z ] 2025-07-17T06:44:12.1017784Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1019116Z with 2025-07-17T06:44:12.1019286Z [ 2025-07-17T06:44:12.1019452Z T=uint8_t, 2025-07-17T06:44:12.1019655Z accT=int32_t 2025-07-17T06:44:12.1019852Z ] 2025-07-17T06:44:12.1020644Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1021656Z with 2025-07-17T06:44:12.1021914Z [ 2025-07-17T06:44:12.1022185Z T=uint8_t, 2025-07-17T06:44:12.1022435Z accT=int32_t 2025-07-17T06:44:12.1022682Z ] 2025-07-17T06:44:12.1024064Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1025459Z with 2025-07-17T06:44:12.1025670Z [ 2025-07-17T06:44:12.1025827Z T=uint8_t, 2025-07-17T06:44:12.1026041Z accT=int16_t, 2025-07-17T06:44:12.1026372Z inpType=uint8_t 2025-07-17T06:44:12.1026608Z ] 2025-07-17T06:44:12.1027793Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1028944Z with 2025-07-17T06:44:12.1029199Z [ 2025-07-17T06:44:12.1029386Z T=uint8_t, 2025-07-17T06:44:12.1029603Z accT=int16_t 2025-07-17T06:44:12.1029879Z ] 2025-07-17T06:44:12.1031153Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1032647Z with 2025-07-17T06:44:12.1032904Z [ 2025-07-17T06:44:12.1033191Z T=uint8_t, 2025-07-17T06:44:12.1033487Z accT=int16_t 2025-07-17T06:44:12.1033816Z ] 2025-07-17T06:44:12.1034995Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1036251Z with 2025-07-17T06:44:12.1036472Z [ 2025-07-17T06:44:12.1036634Z T=uint8_t, 2025-07-17T06:44:12.1036840Z accT=int16_t 2025-07-17T06:44:12.1037043Z ] 2025-07-17T06:44:12.1038503Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1040046Z with 2025-07-17T06:44:12.1040229Z [ 2025-07-17T06:44:12.1040425Z T=uint8_t, 2025-07-17T06:44:12.1040667Z accT=int32_t, 2025-07-17T06:44:12.1040900Z inpType=uint8_t 2025-07-17T06:44:12.1041106Z ] 2025-07-17T06:44:12.1042466Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1043959Z with 2025-07-17T06:44:12.1044262Z [ 2025-07-17T06:44:12.1044543Z T=uint8_t, 2025-07-17T06:44:12.1045352Z accT=int32_t 2025-07-17T06:44:12.1045619Z ] 2025-07-17T06:44:12.1047108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1049173Z with 2025-07-17T06:44:12.1049480Z [ 2025-07-17T06:44:12.1050117Z T=uint8_t, 2025-07-17T06:44:12.1050328Z accT=int32_t 2025-07-17T06:44:12.1050559Z ] 2025-07-17T06:44:12.1051561Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1053250Z with 2025-07-17T06:44:12.1053594Z [ 2025-07-17T06:44:12.1053891Z T=uint8_t, 2025-07-17T06:44:12.1054267Z accT=int32_t 2025-07-17T06:44:12.1054617Z ] 2025-07-17T06:44:12.1056937Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1060517Z with 2025-07-17T06:44:12.1060865Z [ 2025-07-17T06:44:12.1061264Z T=uint8_t, 2025-07-17T06:44:12.1061607Z accT=int16_t, 2025-07-17T06:44:12.1061996Z inpType=uint8_t 2025-07-17T06:44:12.1062557Z ] 2025-07-17T06:44:12.1063852Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1065322Z with 2025-07-17T06:44:12.1065722Z [ 2025-07-17T06:44:12.1066020Z T=uint8_t, 2025-07-17T06:44:12.1067001Z accT=int16_t 2025-07-17T06:44:12.1067274Z ] 2025-07-17T06:44:12.1068762Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAMatrix.cc(29): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1071215Z with 2025-07-17T06:44:12.1071520Z [ 2025-07-17T06:44:12.1071814Z T=uint8_t, 2025-07-17T06:44:12.1072158Z accT=int16_t 2025-07-17T06:44:12.1072538Z ] 2025-07-17T06:44:12.1073890Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1082210Z with 2025-07-17T06:44:12.1084459Z [ 2025-07-17T06:44:12.1084779Z T=uint8_t, 2025-07-17T06:44:12.1085134Z accT=int16_t 2025-07-17T06:44:12.1085423Z ] 2025-07-17T06:44:12.1086856Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1091034Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1093858Z [1292/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithQuantRowOffset.cc.obj 2025-07-17T06:44:12.1096938Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1099262Z with 2025-07-17T06:44:12.1099541Z [ 2025-07-17T06:44:12.1099814Z T=uint8_t, 2025-07-17T06:44:12.1100205Z accT=int32_t, 2025-07-17T06:44:12.1100609Z inpType=uint8_t 2025-07-17T06:44:12.1100984Z ] 2025-07-17T06:44:12.1102181Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1103094Z with 2025-07-17T06:44:12.1103303Z [ 2025-07-17T06:44:12.1103540Z T=uint8_t, 2025-07-17T06:44:12.1103857Z accT=int32_t 2025-07-17T06:44:12.1104158Z ] 2025-07-17T06:44:12.1105430Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1107206Z with 2025-07-17T06:44:12.1107480Z [ 2025-07-17T06:44:12.1107757Z T=uint8_t, 2025-07-17T06:44:12.1108197Z accT=int32_t 2025-07-17T06:44:12.1108810Z ] 2025-07-17T06:44:12.1110329Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1113021Z with 2025-07-17T06:44:12.1113329Z [ 2025-07-17T06:44:12.1113616Z T=uint8_t, 2025-07-17T06:44:12.1113933Z accT=int32_t 2025-07-17T06:44:12.1114141Z ] 2025-07-17T06:44:12.1115545Z 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-07-17T06:44:12.1117081Z with 2025-07-17T06:44:12.1117254Z [ 2025-07-17T06:44:12.1117504Z T=uint8_t, 2025-07-17T06:44:12.1117814Z accT=int32_t, 2025-07-17T06:44:12.1118234Z inpType=uint8_t 2025-07-17T06:44:12.1118598Z ] 2025-07-17T06:44:12.1119780Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1121669Z with 2025-07-17T06:44:12.1121983Z [ 2025-07-17T06:44:12.1122279Z T=uint8_t, 2025-07-17T06:44:12.1122609Z accT=int32_t 2025-07-17T06:44:12.1122917Z ] 2025-07-17T06:44:12.1124427Z 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-07-17T06:44:12.1126058Z with 2025-07-17T06:44:12.1126238Z [ 2025-07-17T06:44:12.1126427Z T=uint8_t, 2025-07-17T06:44:12.1126678Z accT=int32_t 2025-07-17T06:44:12.1127128Z ] 2025-07-17T06:44:12.1127965Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1128921Z with 2025-07-17T06:44:12.1129101Z [ 2025-07-17T06:44:12.1129260Z T=uint8_t, 2025-07-17T06:44:12.1129462Z accT=int32_t 2025-07-17T06:44:12.1129726Z ] 2025-07-17T06:44:12.1131248Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1132729Z [1293/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithIm2Col.cc.obj 2025-07-17T06:44:12.1134537Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1136130Z with 2025-07-17T06:44:12.1136359Z [ 2025-07-17T06:44:12.1136596Z T=uint8_t, 2025-07-17T06:44:12.1136894Z accT=int32_t, 2025-07-17T06:44:12.1137106Z inpType=uint8_t 2025-07-17T06:44:12.1137315Z ] 2025-07-17T06:44:12.1138200Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1139201Z with 2025-07-17T06:44:12.1139793Z [ 2025-07-17T06:44:12.1140111Z T=uint8_t, 2025-07-17T06:44:12.1140505Z accT=int32_t 2025-07-17T06:44:12.1141919Z ] 2025-07-17T06:44:12.1144315Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1146756Z with 2025-07-17T06:44:12.1147072Z [ 2025-07-17T06:44:12.1147377Z T=uint8_t, 2025-07-17T06:44:12.1147732Z accT=int32_t 2025-07-17T06:44:12.1148094Z ] 2025-07-17T06:44:12.1149533Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1150416Z with 2025-07-17T06:44:12.1150588Z [ 2025-07-17T06:44:12.1150762Z T=uint8_t, 2025-07-17T06:44:12.1150984Z accT=int32_t 2025-07-17T06:44:12.1151300Z ] 2025-07-17T06:44:12.1153178Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1155687Z with 2025-07-17T06:44:12.1155989Z [ 2025-07-17T06:44:12.1156256Z T=uint8_t, 2025-07-17T06:44:12.1156580Z accT=int16_t, 2025-07-17T06:44:12.1156919Z inpType=uint8_t 2025-07-17T06:44:12.1157279Z ] 2025-07-17T06:44:12.1158625Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1160002Z with 2025-07-17T06:44:12.1160303Z [ 2025-07-17T06:44:12.1160650Z T=uint8_t, 2025-07-17T06:44:12.1161245Z accT=int16_t 2025-07-17T06:44:12.1161612Z ] 2025-07-17T06:44:12.1163856Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1166318Z with 2025-07-17T06:44:12.1166652Z [ 2025-07-17T06:44:12.1166961Z T=uint8_t, 2025-07-17T06:44:12.1167348Z accT=int16_t 2025-07-17T06:44:12.1167718Z ] 2025-07-17T06:44:12.1169224Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1170866Z with 2025-07-17T06:44:12.1171160Z [ 2025-07-17T06:44:12.1171474Z T=uint8_t, 2025-07-17T06:44:12.1171827Z accT=int16_t 2025-07-17T06:44:12.1172212Z ] 2025-07-17T06:44:12.1174638Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1177846Z with 2025-07-17T06:44:12.1178116Z [ 2025-07-17T06:44:12.1178392Z T=uint8_t, 2025-07-17T06:44:12.1178732Z accT=int32_t, 2025-07-17T06:44:12.1179135Z inpType=uint8_t 2025-07-17T06:44:12.1180195Z ] 2025-07-17T06:44:12.1182079Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1185309Z with 2025-07-17T06:44:12.1185658Z [ 2025-07-17T06:44:12.1185935Z T=uint8_t, 2025-07-17T06:44:12.1186283Z accT=int32_t 2025-07-17T06:44:12.1186608Z ] 2025-07-17T06:44:12.1188920Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1191317Z with 2025-07-17T06:44:12.1191646Z [ 2025-07-17T06:44:12.1191932Z T=uint8_t, 2025-07-17T06:44:12.1192269Z accT=int32_t 2025-07-17T06:44:12.1192622Z ] 2025-07-17T06:44:12.1194071Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1195682Z with 2025-07-17T06:44:12.1195970Z [ 2025-07-17T06:44:12.1196256Z T=uint8_t, 2025-07-17T06:44:12.1196594Z accT=int32_t 2025-07-17T06:44:12.1196967Z ] 2025-07-17T06:44:12.1199459Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1201796Z with 2025-07-17T06:44:12.1202094Z [ 2025-07-17T06:44:12.1202379Z T=uint8_t, 2025-07-17T06:44:12.1202728Z accT=int16_t, 2025-07-17T06:44:12.1203115Z inpType=uint8_t 2025-07-17T06:44:12.1203502Z ] 2025-07-17T06:44:12.1205018Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1206434Z with 2025-07-17T06:44:12.1206693Z [ 2025-07-17T06:44:12.1206946Z T=uint8_t, 2025-07-17T06:44:12.1207259Z accT=int16_t 2025-07-17T06:44:12.1207570Z ] 2025-07-17T06:44:12.1209744Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1211992Z with 2025-07-17T06:44:12.1212295Z [ 2025-07-17T06:44:12.1212566Z T=uint8_t, 2025-07-17T06:44:12.1212890Z accT=int16_t 2025-07-17T06:44:12.1213221Z ] 2025-07-17T06:44:12.1214618Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1216259Z with 2025-07-17T06:44:12.1216549Z [ 2025-07-17T06:44:12.1216820Z T=uint8_t, 2025-07-17T06:44:12.1217150Z accT=int16_t 2025-07-17T06:44:12.1217497Z ] 2025-07-17T06:44:12.1219604Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1221885Z with 2025-07-17T06:44:12.1222238Z [ 2025-07-17T06:44:12.1222537Z T=uint8_t, 2025-07-17T06:44:12.1222898Z accT=int32_t, 2025-07-17T06:44:12.1223279Z inpType=uint8_t 2025-07-17T06:44:12.1223651Z ] 2025-07-17T06:44:12.1225267Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1227839Z with 2025-07-17T06:44:12.1228178Z [ 2025-07-17T06:44:12.1228539Z T=uint8_t, 2025-07-17T06:44:12.1229141Z accT=int32_t 2025-07-17T06:44:12.1229508Z ] 2025-07-17T06:44:12.1232071Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1234653Z with 2025-07-17T06:44:12.1234959Z [ 2025-07-17T06:44:12.1235267Z T=uint8_t, 2025-07-17T06:44:12.1235626Z accT=int32_t 2025-07-17T06:44:12.1235998Z ] 2025-07-17T06:44:12.1237488Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1239132Z with 2025-07-17T06:44:12.1239442Z [ 2025-07-17T06:44:12.1239765Z T=uint8_t, 2025-07-17T06:44:12.1240156Z accT=int32_t 2025-07-17T06:44:12.1240517Z ] 2025-07-17T06:44:12.1242865Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1245358Z with 2025-07-17T06:44:12.1245696Z [ 2025-07-17T06:44:12.1246000Z T=uint8_t, 2025-07-17T06:44:12.1246394Z accT=int16_t, 2025-07-17T06:44:12.1246806Z inpType=uint8_t 2025-07-17T06:44:12.1247360Z ] 2025-07-17T06:44:12.1248960Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1250554Z with 2025-07-17T06:44:12.1250869Z [ 2025-07-17T06:44:12.1251422Z T=uint8_t, 2025-07-17T06:44:12.1251851Z accT=int16_t 2025-07-17T06:44:12.1252207Z ] 2025-07-17T06:44:12.1254643Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1257134Z with 2025-07-17T06:44:12.1257453Z [ 2025-07-17T06:44:12.1257758Z T=uint8_t, 2025-07-17T06:44:12.1258186Z accT=int16_t 2025-07-17T06:44:12.1258576Z ] 2025-07-17T06:44:12.1260085Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1261997Z with 2025-07-17T06:44:12.1262328Z [ 2025-07-17T06:44:12.1262628Z T=uint8_t, 2025-07-17T06:44:12.1263000Z accT=int16_t 2025-07-17T06:44:12.1263354Z ] 2025-07-17T06:44:12.1265771Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1268579Z with 2025-07-17T06:44:12.1268916Z [ 2025-07-17T06:44:12.1269222Z T=uint8_t, 2025-07-17T06:44:12.1269772Z accT=int32_t, 2025-07-17T06:44:12.1270214Z inpType=uint8_t 2025-07-17T06:44:12.1270609Z ] 2025-07-17T06:44:12.1272108Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1273693Z with 2025-07-17T06:44:12.1274011Z [ 2025-07-17T06:44:12.1274316Z T=uint8_t, 2025-07-17T06:44:12.1274662Z accT=int32_t 2025-07-17T06:44:12.1275031Z ] 2025-07-17T06:44:12.1277179Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1279519Z with 2025-07-17T06:44:12.1279814Z [ 2025-07-17T06:44:12.1280104Z T=uint8_t, 2025-07-17T06:44:12.1280461Z accT=int32_t 2025-07-17T06:44:12.1280800Z ] 2025-07-17T06:44:12.1282300Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1283903Z with 2025-07-17T06:44:12.1284205Z [ 2025-07-17T06:44:12.1284484Z T=uint8_t, 2025-07-17T06:44:12.1284825Z accT=int32_t 2025-07-17T06:44:12.1285171Z ] 2025-07-17T06:44:12.1287401Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1289882Z with 2025-07-17T06:44:12.1290341Z [ 2025-07-17T06:44:12.1290652Z T=uint8_t, 2025-07-17T06:44:12.1290989Z accT=int16_t, 2025-07-17T06:44:12.1291354Z inpType=uint8_t 2025-07-17T06:44:12.1291700Z ] 2025-07-17T06:44:12.1293115Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1294721Z with 2025-07-17T06:44:12.1295057Z [ 2025-07-17T06:44:12.1295328Z T=uint8_t, 2025-07-17T06:44:12.1295665Z accT=int16_t 2025-07-17T06:44:12.1295984Z ] 2025-07-17T06:44:12.1298166Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1300549Z with 2025-07-17T06:44:12.1300897Z [ 2025-07-17T06:44:12.1301197Z T=uint8_t, 2025-07-17T06:44:12.1301548Z accT=int16_t 2025-07-17T06:44:12.1301910Z ] 2025-07-17T06:44:12.1303435Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1305378Z with 2025-07-17T06:44:12.1305717Z [ 2025-07-17T06:44:12.1306018Z T=uint8_t, 2025-07-17T06:44:12.1306423Z accT=int16_t 2025-07-17T06:44:12.1306788Z ] 2025-07-17T06:44:12.1309299Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1311924Z with 2025-07-17T06:44:12.1312213Z [ 2025-07-17T06:44:12.1312532Z T=uint8_t, 2025-07-17T06:44:12.1312895Z accT=int32_t, 2025-07-17T06:44:12.1313265Z inpType=uint8_t 2025-07-17T06:44:12.1313635Z ] 2025-07-17T06:44:12.1314983Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1316361Z with 2025-07-17T06:44:12.1316613Z [ 2025-07-17T06:44:12.1316865Z T=uint8_t, 2025-07-17T06:44:12.1317153Z accT=int32_t 2025-07-17T06:44:12.1317451Z ] 2025-07-17T06:44:12.1319292Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1321387Z with 2025-07-17T06:44:12.1321679Z [ 2025-07-17T06:44:12.1321926Z T=uint8_t, 2025-07-17T06:44:12.1322249Z accT=int32_t 2025-07-17T06:44:12.1322552Z ] 2025-07-17T06:44:12.1323686Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1325543Z with 2025-07-17T06:44:12.1325883Z [ 2025-07-17T06:44:12.1326187Z T=uint8_t, 2025-07-17T06:44:12.1326558Z accT=int32_t 2025-07-17T06:44:12.1326926Z ] 2025-07-17T06:44:12.1329475Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1332034Z with 2025-07-17T06:44:12.1332340Z [ 2025-07-17T06:44:12.1332639Z T=uint8_t, 2025-07-17T06:44:12.1333476Z accT=int16_t, 2025-07-17T06:44:12.1334175Z inpType=uint8_t 2025-07-17T06:44:12.1334547Z ] 2025-07-17T06:44:12.1336825Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1338045Z with 2025-07-17T06:44:12.1338234Z [ 2025-07-17T06:44:12.1338407Z T=uint8_t, 2025-07-17T06:44:12.1338657Z accT=int16_t 2025-07-17T06:44:12.1338896Z ] 2025-07-17T06:44:12.1340143Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1341475Z with 2025-07-17T06:44:12.1341649Z [ 2025-07-17T06:44:12.1341863Z T=uint8_t, 2025-07-17T06:44:12.1342184Z accT=int16_t 2025-07-17T06:44:12.1342568Z ] 2025-07-17T06:44:12.1344119Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1346099Z with 2025-07-17T06:44:12.1346466Z [ 2025-07-17T06:44:12.1346794Z T=uint8_t, 2025-07-17T06:44:12.1347637Z accT=int16_t 2025-07-17T06:44:12.1348027Z ] 2025-07-17T06:44:12.1351082Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1353001Z with 2025-07-17T06:44:12.1353267Z [ 2025-07-17T06:44:12.1353477Z T=uint8_t, 2025-07-17T06:44:12.1353698Z accT=int32_t, 2025-07-17T06:44:12.1353923Z inpType=uint8_t 2025-07-17T06:44:12.1354138Z ] 2025-07-17T06:44:12.1354971Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1356158Z with 2025-07-17T06:44:12.1356446Z [ 2025-07-17T06:44:12.1356778Z T=uint8_t, 2025-07-17T06:44:12.1357170Z accT=int32_t 2025-07-17T06:44:12.1357904Z ] 2025-07-17T06:44:12.1360227Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1362773Z with 2025-07-17T06:44:12.1363120Z [ 2025-07-17T06:44:12.1363394Z T=uint8_t, 2025-07-17T06:44:12.1363779Z accT=int32_t 2025-07-17T06:44:12.1364126Z ] 2025-07-17T06:44:12.1365576Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1367146Z with 2025-07-17T06:44:12.1367436Z [ 2025-07-17T06:44:12.1367719Z T=uint8_t, 2025-07-17T06:44:12.1368055Z accT=int32_t 2025-07-17T06:44:12.1368407Z ] 2025-07-17T06:44:12.1371076Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1373628Z with 2025-07-17T06:44:12.1373957Z [ 2025-07-17T06:44:12.1374258Z T=uint8_t, 2025-07-17T06:44:12.1374615Z accT=int16_t, 2025-07-17T06:44:12.1374981Z inpType=uint8_t 2025-07-17T06:44:12.1375345Z ] 2025-07-17T06:44:12.1376840Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1378364Z with 2025-07-17T06:44:12.1378645Z [ 2025-07-17T06:44:12.1378933Z T=uint8_t, 2025-07-17T06:44:12.1379294Z accT=int16_t 2025-07-17T06:44:12.1379652Z ] 2025-07-17T06:44:12.1381871Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\PackAWithIm2Col.cc(32): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1384186Z with 2025-07-17T06:44:12.1384583Z [ 2025-07-17T06:44:12.1384758Z T=uint8_t, 2025-07-17T06:44:12.1384968Z accT=int16_t 2025-07-17T06:44:12.1385162Z ] 2025-07-17T06:44:12.1386052Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1387111Z with 2025-07-17T06:44:12.1387299Z [ 2025-07-17T06:44:12.1387539Z T=uint8_t, 2025-07-17T06:44:12.1387897Z accT=int16_t 2025-07-17T06:44:12.1388149Z ] 2025-07-17T06:44:12.1390172Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1394475Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1398464Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1402535Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1406613Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1905742Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.1908955Z [1294/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackAWithRowOffset.cc.obj 2025-07-17T06:44:12.1912084Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1914813Z with 2025-07-17T06:44:12.1915127Z [ 2025-07-17T06:44:12.1915377Z T=uint8_t, 2025-07-17T06:44:12.1915635Z accT=int32_t, 2025-07-17T06:44:12.1915910Z inpType=uint8_t 2025-07-17T06:44:12.1916163Z ] 2025-07-17T06:44:12.1917067Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1917919Z with 2025-07-17T06:44:12.1918115Z [ 2025-07-17T06:44:12.1918284Z T=uint8_t, 2025-07-17T06:44:12.1918540Z accT=int32_t 2025-07-17T06:44:12.1918951Z ] 2025-07-17T06:44:12.1920174Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1921769Z with 2025-07-17T06:44:12.1921968Z [ 2025-07-17T06:44:12.1922164Z T=uint8_t, 2025-07-17T06:44:12.1922396Z accT=int32_t 2025-07-17T06:44:12.1922643Z ] 2025-07-17T06:44:12.1923630Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1924640Z with 2025-07-17T06:44:12.1925045Z [ 2025-07-17T06:44:12.1925257Z T=uint8_t, 2025-07-17T06:44:12.1925460Z accT=int32_t 2025-07-17T06:44:12.1925706Z ] 2025-07-17T06:44:12.1927298Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1928830Z with 2025-07-17T06:44:12.1929517Z [ 2025-07-17T06:44:12.1929845Z T=uint8_t, 2025-07-17T06:44:12.1930224Z accT=int16_t, 2025-07-17T06:44:12.1930642Z inpType=uint8_t 2025-07-17T06:44:12.1931031Z ] 2025-07-17T06:44:12.1932562Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1934207Z with 2025-07-17T06:44:12.1934506Z [ 2025-07-17T06:44:12.1934794Z T=uint8_t, 2025-07-17T06:44:12.1935158Z accT=int16_t 2025-07-17T06:44:12.1935521Z ] 2025-07-17T06:44:12.1937825Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.1940257Z with 2025-07-17T06:44:12.1940568Z [ 2025-07-17T06:44:12.1940873Z T=uint8_t, 2025-07-17T06:44:12.1941225Z accT=int16_t 2025-07-17T06:44:12.1941602Z ] 2025-07-17T06:44:12.1943332Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1944999Z with 2025-07-17T06:44:12.1945316Z [ 2025-07-17T06:44:12.1945607Z T=uint8_t, 2025-07-17T06:44:12.1945980Z accT=int16_t 2025-07-17T06:44:12.1946349Z ] 2025-07-17T06:44:12.1948908Z 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-07-17T06:44:12.1951417Z with 2025-07-17T06:44:12.1951717Z [ 2025-07-17T06:44:12.1952025Z T=uint8_t, 2025-07-17T06:44:12.1952392Z accT=int32_t, 2025-07-17T06:44:12.1952787Z inpType=uint8_t 2025-07-17T06:44:12.1953154Z ] 2025-07-17T06:44:12.1954665Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1956275Z with 2025-07-17T06:44:12.1956583Z [ 2025-07-17T06:44:12.1956880Z T=uint8_t, 2025-07-17T06:44:12.1957233Z accT=int32_t 2025-07-17T06:44:12.1957599Z ] 2025-07-17T06:44:12.1959935Z 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-07-17T06:44:12.1962399Z with 2025-07-17T06:44:12.1962712Z [ 2025-07-17T06:44:12.1963005Z T=uint8_t, 2025-07-17T06:44:12.1963374Z accT=int32_t 2025-07-17T06:44:12.1963741Z ] 2025-07-17T06:44:12.1965241Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1967380Z with 2025-07-17T06:44:12.1967686Z [ 2025-07-17T06:44:12.1967942Z T=uint8_t, 2025-07-17T06:44:12.1968278Z accT=int32_t 2025-07-17T06:44:12.1968613Z ] 2025-07-17T06:44:12.1970917Z 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-07-17T06:44:12.1973356Z with 2025-07-17T06:44:12.1973667Z [ 2025-07-17T06:44:12.1973965Z T=uint8_t, 2025-07-17T06:44:12.1974319Z accT=int16_t, 2025-07-17T06:44:12.1974704Z inpType=uint8_t 2025-07-17T06:44:12.1975098Z ] 2025-07-17T06:44:12.1976514Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.1978024Z with 2025-07-17T06:44:12.1978287Z [ 2025-07-17T06:44:12.1978565Z T=uint8_t, 2025-07-17T06:44:12.1978901Z accT=int16_t 2025-07-17T06:44:12.1979241Z ] 2025-07-17T06:44:12.1981301Z 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-07-17T06:44:12.1982685Z with 2025-07-17T06:44:12.1982872Z [ 2025-07-17T06:44:12.1983030Z T=uint8_t, 2025-07-17T06:44:12.1983241Z accT=int16_t 2025-07-17T06:44:12.1983643Z ] 2025-07-17T06:44:12.1984560Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.1985454Z with 2025-07-17T06:44:12.1985681Z [ 2025-07-17T06:44:12.1985846Z T=uint8_t, 2025-07-17T06:44:12.1986046Z accT=int16_t 2025-07-17T06:44:12.1986280Z ] 2025-07-17T06:44:12.1987442Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2097002Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2098688Z [1295/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackBMatrix.cc.obj 2025-07-17T06:44:12.2100736Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.2103132Z with 2025-07-17T06:44:12.2103439Z [ 2025-07-17T06:44:12.2103654Z T=int8_t, 2025-07-17T06:44:12.2103982Z accT=int32_t, 2025-07-17T06:44:12.2104396Z inpType=int8_t 2025-07-17T06:44:12.2104757Z ] 2025-07-17T06:44:12.2126192Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.2127764Z with 2025-07-17T06:44:12.2128032Z [ 2025-07-17T06:44:12.2128309Z T=int8_t, 2025-07-17T06:44:12.2128600Z accT=int32_t 2025-07-17T06:44:12.2128944Z ] 2025-07-17T06:44:12.2130783Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.2132925Z with 2025-07-17T06:44:12.2133235Z [ 2025-07-17T06:44:12.2133516Z T=int8_t, 2025-07-17T06:44:12.2133837Z accT=int32_t 2025-07-17T06:44:12.2134169Z ] 2025-07-17T06:44:12.2135772Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.2137353Z with 2025-07-17T06:44:12.2137861Z [ 2025-07-17T06:44:12.2138208Z T=int8_t, 2025-07-17T06:44:12.2138516Z accT=int32_t 2025-07-17T06:44:12.2138837Z ] 2025-07-17T06:44:12.2141010Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.2143328Z with 2025-07-17T06:44:12.2143797Z [ 2025-07-17T06:44:12.2144101Z T=int8_t, 2025-07-17T06:44:12.2144478Z accT=int16_t, 2025-07-17T06:44:12.2144879Z inpType=int8_t 2025-07-17T06:44:12.2145705Z ] 2025-07-17T06:44:12.2147762Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.2150556Z with 2025-07-17T06:44:12.2151327Z [ 2025-07-17T06:44:12.2151628Z T=int8_t, 2025-07-17T06:44:12.2151959Z accT=int16_t 2025-07-17T06:44:12.2152285Z ] 2025-07-17T06:44:12.2155973Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.2157539Z with 2025-07-17T06:44:12.2157722Z [ 2025-07-17T06:44:12.2157893Z T=int8_t, 2025-07-17T06:44:12.2158096Z accT=int16_t 2025-07-17T06:44:12.2158300Z ] 2025-07-17T06:44:12.2159391Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.2161046Z with 2025-07-17T06:44:12.2161344Z [ 2025-07-17T06:44:12.2161623Z T=int8_t, 2025-07-17T06:44:12.2161949Z accT=int16_t 2025-07-17T06:44:12.2162289Z ] 2025-07-17T06:44:12.2164469Z 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-07-17T06:44:12.2167180Z with 2025-07-17T06:44:12.2167535Z [ 2025-07-17T06:44:12.2167851Z T=int8_t, 2025-07-17T06:44:12.2168210Z accT=int32_t, 2025-07-17T06:44:12.2168615Z inpType=int8_t 2025-07-17T06:44:12.2169006Z ] 2025-07-17T06:44:12.2170983Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.2172686Z with 2025-07-17T06:44:12.2173034Z [ 2025-07-17T06:44:12.2173362Z T=int8_t, 2025-07-17T06:44:12.2173733Z accT=int32_t 2025-07-17T06:44:12.2174127Z ] 2025-07-17T06:44:12.2176388Z 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-07-17T06:44:12.2179063Z with 2025-07-17T06:44:12.2179373Z [ 2025-07-17T06:44:12.2179650Z T=int8_t, 2025-07-17T06:44:12.2179991Z accT=int32_t 2025-07-17T06:44:12.2180337Z ] 2025-07-17T06:44:12.2181798Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.2183434Z with 2025-07-17T06:44:12.2183740Z [ 2025-07-17T06:44:12.2184057Z T=int8_t, 2025-07-17T06:44:12.2184383Z accT=int32_t 2025-07-17T06:44:12.2184755Z ] 2025-07-17T06:44:12.2186961Z 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-07-17T06:44:12.2189065Z with 2025-07-17T06:44:12.2189416Z [ 2025-07-17T06:44:12.2189692Z T=int8_t, 2025-07-17T06:44:12.2190067Z accT=int16_t, 2025-07-17T06:44:12.2190450Z inpType=int8_t 2025-07-17T06:44:12.2191821Z ] 2025-07-17T06:44:12.2193220Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.2194751Z with 2025-07-17T06:44:12.2195084Z [ 2025-07-17T06:44:12.2195387Z T=int8_t, 2025-07-17T06:44:12.2195737Z accT=int16_t 2025-07-17T06:44:12.2196119Z ] 2025-07-17T06:44:12.2198505Z 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-07-17T06:44:12.2200915Z with 2025-07-17T06:44:12.2201199Z [ 2025-07-17T06:44:12.2201515Z T=int8_t, 2025-07-17T06:44:12.2201826Z accT=int16_t 2025-07-17T06:44:12.2202200Z ] 2025-07-17T06:44:12.2203601Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.2205219Z with 2025-07-17T06:44:12.2205538Z [ 2025-07-17T06:44:12.2205805Z T=int8_t, 2025-07-17T06:44:12.2206175Z accT=int16_t 2025-07-17T06:44:12.2206561Z ] 2025-07-17T06:44:12.2597950Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2602165Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2604262Z [1296/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackMatrix.cc.obj 2025-07-17T06:44:12.2607005Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,short>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2611234Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2615807Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2618655Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2621635Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2624627Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,short>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2626837Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2629291Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2632501Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2635526Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2638577Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.2640952Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.3039926Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(161) : warning C4717: 'fbgemm::PackMatrix,unsigned char,int>::isThisLastKBlock': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.3043156Z [1297/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForConv.cc.obj 2025-07-17T06:44:12.3046042Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'fbgemm::PackMatrix,T,accT>::PackMatrix(int32_t,int32_t,inpType *,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.3048378Z with 2025-07-17T06:44:12.3048677Z [ 2025-07-17T06:44:12.3048971Z T=int8_t, 2025-07-17T06:44:12.3049332Z accT=int32_t, 2025-07-17T06:44:12.3049728Z inpType=int8_t 2025-07-17T06:44:12.3050478Z ] 2025-07-17T06:44:12.3052602Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(107): note: see declaration of 'fbgemm::PackMatrix,T,accT>::PackMatrix' 2025-07-17T06:44:12.3054657Z with 2025-07-17T06:44:12.3054999Z [ 2025-07-17T06:44:12.3055305Z T=int8_t, 2025-07-17T06:44:12.3055663Z accT=int32_t 2025-07-17T06:44:12.3056031Z ] 2025-07-17T06:44:12.3058462Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(317): warning C4661: 'int fbgemm::PackMatrix,T,accT>::packedBufferSize(int,int,const fbgemm::BlockingFactors *)': no suitable definition provided for explicit template instantiation request 2025-07-17T06:44:12.3061239Z with 2025-07-17T06:44:12.3061562Z [ 2025-07-17T06:44:12.3061866Z T=int8_t, 2025-07-17T06:44:12.3062228Z accT=int32_t 2025-07-17T06:44:12.3062599Z ] 2025-07-17T06:44:12.3065115Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm/Fbgemm.h(138): note: see declaration of 'fbgemm::PackMatrix,T,accT>::packedBufferSize' 2025-07-17T06:44:12.3066812Z with 2025-07-17T06:44:12.3067113Z [ 2025-07-17T06:44:12.3067366Z T=int8_t, 2025-07-17T06:44:12.3067666Z accT=int32_t 2025-07-17T06:44:12.3067997Z ] 2025-07-17T06:44:12.3798840Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\include\fbgemm\Fbgemm.h(150) : warning C4717: 'fbgemm::PackMatrix,signed char,int>::getRowOffsetBuffer': recursive on all control paths, function will cause runtime stack overflow 2025-07-17T06:44:12.3801050Z [1298/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\QuantUtils.cc.obj 2025-07-17T06:44:12.4226140Z [1299/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightMatrixForGConv.cc.obj 2025-07-17T06:44:12.4676012Z [1300/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\TransposeUtils.cc.obj 2025-07-17T06:44:12.5675807Z [1301/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\PackWeightsForDirectConv.cc.obj 2025-07-17T06:44:12.5829785Z [1302/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RowWiseSparseAdagradFused.cc.obj 2025-07-17T06:44:12.5845117Z [1303/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\spmmUtils.cc.obj 2025-07-17T06:44:12.6522894Z [1304/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\SparseAdagrad.cc.obj 2025-07-17T06:44:12.6762781Z [1305/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\RefImplementations.cc.obj 2025-07-17T06:44:12.7120145Z [1306/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\EmbeddingSpMDMAvx2.cc.obj 2025-07-17T06:44:12.7194724Z [1307/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\Utils.cc.obj 2025-07-17T06:44:12.7425458Z [1308/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_generic.dir\src\GenerateI8Depthwise.cc.obj 2025-07-17T06:44:12.8128767Z [1309/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmBfloat16ConvertAvx2.cc.obj 2025-07-17T06:44:12.8362209Z [1310/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFloat16ConvertAvx2.cc.obj 2025-07-17T06:44:12.8426206Z 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-07-17T06:44:12.8429180Z 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-07-17T06:44:12.8431023Z [1311/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\OptimizedKernelsAvx2.cc.obj 2025-07-17T06:44:12.8441512Z [1312/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8Depthwise3DAvx2.cc.obj 2025-07-17T06:44:12.9091275Z [1313/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwiseAvx2.cc.obj 2025-07-17T06:44:12.9251160Z [1314/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmI8DepthwisePerChannelQuantAvx2.cc.obj 2025-07-17T06:44:12.9458907Z [1315/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\UtilsAvx2.cc.obj 2025-07-17T06:44:12.9751872Z [1316/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseAvx2.cc.obj 2025-07-17T06:44:12.9998105Z [1317/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmSparseDenseInt8Avx2.cc.obj 2025-07-17T06:44:13.0255334Z [1318/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\PackDepthwiseConvMatrixAvx2.cc.obj 2025-07-17T06:44:13.0666852Z [1319/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\spmmUtilsAvx2.cc.obj 2025-07-17T06:44:13.0847279Z [1320/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\QuantUtilsAvx2.cc.obj 2025-07-17T06:44:13.0849368Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1556): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T06:44:13.0852264Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1906): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T06:44:13.0854564Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(1906): note: the template instantiation context (the oldest one first) is 2025-07-17T06:44:13.0857654Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2202): note: see reference to function template instantiation 'void fbgemm::FusedNBitRowwiseQuantizedSBHalfToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-07-17T06:44:13.0861083Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2142): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T06:44:13.1605048Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2142): note: the template instantiation context (the oldest one first) is 2025-07-17T06:44:13.1608089Z C:\actions-runner\_work\pytorch\pytorch\third_party\fbgemm\src\QuantUtilsAvx2.cc(2224): note: see reference to function template instantiation 'void fbgemm::Fused8BitRowwiseQuantizedSBFloatToFloatOrHalfAvx2(const uint8_t *,size_t,int,float *)' being compiled 2025-07-17T06:44:13.1610854Z [1321/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\EmbeddingSpMDMAvx512.cc.obj 2025-07-17T06:44:13.1661884Z [1322/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmBfloat16ConvertAvx512.cc.obj 2025-07-17T06:44:13.2208832Z [1323/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFloat16ConvertAvx512.cc.obj 2025-07-17T06:44:13.2621744Z [1324/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseAvx512.cc.obj 2025-07-17T06:44:13.2731807Z [1325/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\UtilsAvx512.cc.obj 2025-07-17T06:44:13.2847618Z [1326/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx2.dir\src\FbgemmFP16UKernelsIntrinsicAvx2.cc.obj 2025-07-17T06:44:13.3260210Z [1327/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\QuantUtilsAvx512.cc.obj 2025-07-17T06:44:13.3314724Z [1328/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_autovec.dir\src\EmbeddingSpMDMAutovec.cc.obj 2025-07-17T06:44:13.3370988Z [1329/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseInt8Avx512.cc.obj 2025-07-17T06:44:13.3575503Z [1330/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmSparseDenseVectorInt8Avx512.cc.obj 2025-07-17T06:44:13.4438858Z [1331/7682] Linking CXX shared library bin\asmjit.dll 2025-07-17T06:44:13.5022739Z [1332/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512.cc.obj 2025-07-17T06:44:13.5743604Z [1333/7682] Building CXX object third_party\fbgemm\CMakeFiles\fbgemm_avx512.dir\src\FbgemmFP16UKernelsIntrinsicAvx512_256.cc.obj 2025-07-17T06:44:13.6460515Z [1334/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\algorithm.cc.obj 2025-07-17T06:44:13.6475578Z [1335/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgather.cc.obj 2025-07-17T06:44:13.6752724Z [1336/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allgatherv.cc.obj 2025-07-17T06:44:13.7794845Z [1337/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce.cc.obj 2025-07-17T06:44:13.8098484Z [1338/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\allreduce_local.cc.obj 2025-07-17T06:44:13.8447977Z [1339/7682] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\jitprofiling.c.obj 2025-07-17T06:44:13.8519531Z [1340/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoall.cc.obj 2025-07-17T06:44:13.8591724Z [1341/7682] Building C object third_party\ittapi\CMakeFiles\ittnotify.dir\src\ittnotify\ittnotify_static.c.obj 2025-07-17T06:44:13.9401543Z [1342/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\alltoallv.cc.obj 2025-07-17T06:44:13.9579917Z [1343/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\broadcast.cc.obj 2025-07-17T06:44:13.9803835Z [1344/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\barrier.cc.obj 2025-07-17T06:44:14.0717541Z [1345/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\context.cc.obj 2025-07-17T06:44:14.0936078Z [1346/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gather.cc.obj 2025-07-17T06:44:14.1335250Z [1347/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\gatherv.cc.obj 2025-07-17T06:44:14.1510365Z [1348/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\reduce.cc.obj 2025-07-17T06:44:14.1577561Z [1349/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\scatter.cc.obj 2025-07-17T06:44:14.2027306Z [1350/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\logging.cc.obj 2025-07-17T06:44:14.2089730Z [1351/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\types.cc.obj 2025-07-17T06:44:14.2646878Z [1352/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\store.cc.obj 2025-07-17T06:44:14.3430495Z [1353/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\context.cc.obj 2025-07-17T06:44:14.3584363Z [1354/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\buffer.cc.obj 2025-07-17T06:44:14.3879023Z [1355/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\address.cc.obj 2025-07-17T06:44:14.4107655Z [1356/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\hash_store.cc.obj 2025-07-17T06:44:14.4303024Z [1357/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\prefix_store.cc.obj 2025-07-17T06:44:14.4413855Z [1358/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\rendezvous\file_store.cc.obj 2025-07-17T06:44:14.4787380Z [1359/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\utils.cc.obj 2025-07-17T06:44:14.5105369Z [1360/7682] Linking CXX static library lib\onnx_proto.lib 2025-07-17T06:44:14.6030337Z [1361/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\unbound_buffer.cc.obj 2025-07-17T06:44:14.6109290Z [1362/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\device.cc.obj 2025-07-17T06:44:14.6122325Z [1363/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\pair.cc.obj 2025-07-17T06:44:14.6386750Z [1364/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\assertions.cc.obj 2025-07-17T06:44:14.6452105Z [1365/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\transport\context.cc.obj 2025-07-17T06:44:14.6595591Z [1366/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo.dir\common\win.cc.obj 2025-07-17T06:44:14.7378628Z [1367/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\interned_strings.cc.obj 2025-07-17T06:44:14.8967055Z [1368/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\status.cc.obj 2025-07-17T06:44:15.0309035Z [1369/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\model_helpers.cc.obj 2025-07-17T06:44:15.0749460Z [1370/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\ir_pb_converter.cc.obj 2025-07-17T06:44:15.0836631Z [1371/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\attr_proto_util.cc.obj 2025-07-17T06:44:15.1214288Z [1372/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\defs.cc.obj 2025-07-17T06:44:15.1939902Z [1373/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\old.cc.obj 2025-07-17T06:44:15.2582536Z [1374/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\checker.cc.obj 2025-07-17T06:44:15.3607097Z [1375/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\controlflow\utils.cc.obj 2025-07-17T06:44:15.4286326Z [1376/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\common\path.cc.obj 2025-07-17T06:44:15.4803737Z [1377/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\data_type_utils.cc.obj 2025-07-17T06:44:15.5179188Z [1378/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\defs.cc.obj 2025-07-17T06:44:15.5281918Z [1379/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\function.cc.obj 2025-07-17T06:44:15.5600291Z [1380/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\old.cc.obj 2025-07-17T06:44:15.6086595Z [1381/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\generator\utils.cc.obj 2025-07-17T06:44:15.7051290Z [1382/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\image\defs.cc.obj 2025-07-17T06:44:15.8145626Z [1383/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\defs.cc.obj 2025-07-17T06:44:15.8720313Z [1384/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\logical\old.cc.obj 2025-07-17T06:44:15.9252312Z [1385/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\defs.cc.obj 2025-07-17T06:44:15.9759550Z [1386/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\old.cc.obj 2025-07-17T06:44:16.0165572Z [1387/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\math\utils.cc.obj 2025-07-17T06:44:16.0346927Z [1388/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\defs.cc.obj 2025-07-17T06:44:16.0779690Z [1389/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\nn\old.cc.obj 2025-07-17T06:44:16.1456754Z [1390/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\defs.cc.obj 2025-07-17T06:44:16.2802984Z [1391/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\object_detection\old.cc.obj 2025-07-17T06:44:16.3365446Z [1392/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\defs.cc.obj 2025-07-17T06:44:16.3956314Z [1393/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\optional\old.cc.obj 2025-07-17T06:44:16.4585426Z [1394/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\printer.cc.obj 2025-07-17T06:44:16.4603238Z [1395/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\parser.cc.obj 2025-07-17T06:44:16.4923260Z [1396/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\defs.cc.obj 2025-07-17T06:44:16.5016749Z [1397/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\quantization\old.cc.obj 2025-07-17T06:44:16.6252612Z [1398/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\defs.cc.obj 2025-07-17T06:44:16.7261919Z [1399/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\old.cc.obj 2025-07-17T06:44:16.7931867Z [1400/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\reduction\utils.cc.obj 2025-07-17T06:44:16.8895809Z [1401/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\old.cc.obj 2025-07-17T06:44:16.8977221Z [1402/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\rnn\defs.cc.obj 2025-07-17T06:44:16.9595558Z [1403/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\shape_inference.cc.obj 2025-07-17T06:44:16.9744348Z [1404/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\schema.cc.obj 2025-07-17T06:44:16.9832397Z [1405/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\sequence\defs.cc.obj 2025-07-17T06:44:17.0795733Z [1406/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\defs.cc.obj 2025-07-17T06:44:17.1895749Z [1407/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\old.cc.obj 2025-07-17T06:44:17.2287030Z [1408/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor\utils.cc.obj 2025-07-17T06:44:17.3129117Z [1409/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_proto_util.cc.obj 2025-07-17T06:44:17.3340454Z [1410/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\tensor_util.cc.obj 2025-07-17T06:44:17.4122104Z [1411/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\text\defs.cc.obj 2025-07-17T06:44:17.4401315Z [1412/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\old.cc.obj 2025-07-17T06:44:17.4431228Z [1413/7682] Building RC object third_party\ideep\mkl-dnn\src\CMakeFiles\dnnl.dir\version.rc.res 2025-07-17T06:44:17.4750722Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-17T06:44:17.4751160Z 2025-07-17T06:44:17.4751165Z 2025-07-17T06:44:17.4751329Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-17T06:44:17.4751732Z 2025-07-17T06:44:17.4751738Z 2025-07-17T06:44:17.4751745Z 2025-07-17T06:44:17.4751750Z 2025-07-17T06:44:17.4752250Z [1414/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\traditionalml\defs.cc.obj 2025-07-17T06:44:17.5321617Z [1415/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\defs\training\defs.cc.obj 2025-07-17T06:44:17.6154093Z [1416/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\inliner\inliner.cc.obj 2025-07-17T06:44:17.6216428Z [1417/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\bfloat16.cpp.obj 2025-07-17T06:44:17.7670959Z [1418/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\helper.cc.obj 2025-07-17T06:44:17.8513491Z [1419/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\version_converter\convert.cc.obj 2025-07-17T06:44:18.0064259Z [1420/7682] Building CXX object third_party\onnx\CMakeFiles\onnx.dir\onnx\shape_inference\implementation.cc.obj 2025-07-17T06:44:18.0290298Z [1421/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\binary.cpp.obj 2025-07-17T06:44:18.0386528Z [1422/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\batch_normalization.cpp.obj 2025-07-17T06:44:18.0931961Z [1423/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\broadcast_strategy.cpp.obj 2025-07-17T06:44:18.1531384Z [1424/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\cache_blob_id.cpp.obj 2025-07-17T06:44:18.1594810Z [1425/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_threadpool.cpp.obj 2025-07-17T06:44:18.1643132Z [1426/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug_autogenerated.cpp.obj 2025-07-17T06:44:18.2741505Z [1427/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\concat.cpp.obj 2025-07-17T06:44:18.3688144Z [1428/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution.cpp.obj 2025-07-17T06:44:18.4144653Z [1429/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\convolution_pd.cpp.obj 2025-07-17T06:44:18.4703958Z [1430/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\experimental.cpp.obj 2025-07-17T06:44:18.5461656Z [1431/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float4.cpp.obj 2025-07-17T06:44:18.5874579Z [1432/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\dnnl_debug.cpp.obj 2025-07-17T06:44:18.6663471Z [1433/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\deconvolution.cpp.obj 2025-07-17T06:44:18.6677112Z [1434/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\fpmath_mode.cpp.obj 2025-07-17T06:44:18.7042735Z [1435/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\float8.cpp.obj 2025-07-17T06:44:18.7218617Z [1436/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\eltwise.cpp.obj 2025-07-17T06:44:18.8198144Z [1437/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\engine.cpp.obj 2025-07-17T06:44:18.9392971Z [1438/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify.cpp.obj 2025-07-17T06:44:19.1134919Z [1439/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\gemm.cpp.obj 2025-07-17T06:44:19.1235552Z [1440/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\group_normalization.cpp.obj 2025-07-17T06:44:19.1910907Z [1441/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\inner_product.cpp.obj 2025-07-17T06:44:19.2228890Z [1442/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\kernel_cache.cpp.obj 2025-07-17T06:44:19.2705013Z [1443/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\layer_normalization.cpp.obj 2025-07-17T06:44:19.3719141Z [1444/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\lrn.cpp.obj 2025-07-17T06:44:19.3787795Z [1445/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\matmul.cpp.obj 2025-07-17T06:44:19.5473750Z [1446/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory.cpp.obj 2025-07-17T06:44:19.6253797Z [1447/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_debug.cpp.obj 2025-07-17T06:44:19.7066942Z [1448/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc.cpp.obj 2025-07-17T06:44:19.7486102Z [1449/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_desc_wrapper.cpp.obj 2025-07-17T06:44:19.7870165Z [1450/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_storage.cpp.obj 2025-07-17T06:44:19.8096002Z [1451/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_tracking.cpp.obj 2025-07-17T06:44:19.9786660Z [1452/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\pooling.cpp.obj 2025-07-17T06:44:20.0200635Z [1453/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\memory_zero_pad.cpp.obj 2025-07-17T06:44:20.1073939Z [1454/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\prelu.cpp.obj 2025-07-17T06:44:20.2729141Z [1455/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_attr.cpp.obj 2025-07-17T06:44:20.3192032Z [1456/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive.cpp.obj 2025-07-17T06:44:20.4303681Z [1457/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_exec_types.cpp.obj 2025-07-17T06:44:20.4403534Z [1458/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_cache.cpp.obj 2025-07-17T06:44:20.4494387Z [1459/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_desc_iface.cpp.obj 2025-07-17T06:44:20.5143387Z [1460/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_hashing.cpp.obj 2025-07-17T06:44:20.6901621Z [1461/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\query.cpp.obj 2025-07-17T06:44:20.6996924Z [1462/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\primitive_iface.cpp.obj 2025-07-17T06:44:20.8832309Z [1463/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reduction.cpp.obj 2025-07-17T06:44:20.9193047Z [1464/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\reorder.cpp.obj 2025-07-17T06:44:20.9497906Z [1465/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rw_mutex.cpp.obj 2025-07-17T06:44:20.9902758Z [1466/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\resampling.cpp.obj 2025-07-17T06:44:21.0800914Z [1467/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\rnn.cpp.obj 2025-07-17T06:44:21.0901538Z [1468/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad.cpp.obj 2025-07-17T06:44:21.2057565Z [1469/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\serialization.cpp.obj 2025-07-17T06:44:21.2654065Z [1470/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\scratchpad_debug.cpp.obj 2025-07-17T06:44:21.4532850Z [1471/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\shuffle.cpp.obj 2025-07-17T06:44:21.4964098Z [1472/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\softmax.cpp.obj 2025-07-17T06:44:21.5055938Z [1473/7682] Building ASM_MASM object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittptmark64.asm.obj 2025-07-17T06:44:21.5447140Z Microsoft (R) Macro Assembler (x64) Version 14.38.33145.0 2025-07-17T06:44:21.5447439Z 2025-07-17T06:44:21.5447606Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-17T06:44:21.5447952Z 2025-07-17T06:44:21.5447958Z 2025-07-17T06:44:21.5447963Z 2025-07-17T06:44:21.5448559Z Assembling: C:\actions-runner\_work\pytorch\pytorch\third_party\ideep\mkl-dnn\src\common\ittnotify\ittptmark64.asm 2025-07-17T06:44:21.5449434Z 2025-07-17T06:44:21.5450076Z [1474/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream.cpp.obj 2025-07-17T06:44:21.5980214Z [1475/7682] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\ittnotify_static.c.obj 2025-07-17T06:44:21.6115483Z [1476/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\stream_profiler.cpp.obj 2025-07-17T06:44:21.6366276Z [1477/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\utils.cpp.obj 2025-07-17T06:44:21.6913517Z [1478/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\sum.cpp.obj 2025-07-17T06:44:21.7141069Z [1479/7682] Building C object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\ittnotify\jitprofiling.c.obj 2025-07-17T06:44:21.9048561Z [1480/7682] Building CXX object third_party\ideep\mkl-dnn\src\common\CMakeFiles\dnnl_common.dir\verbose.cpp.obj 2025-07-17T06:44:22.1298390Z [1481/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\bfloat16.cpp.obj 2025-07-17T06:44:22.1834094Z [1482/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\binary_injector_utils.cpp.obj 2025-07-17T06:44:22.1977731Z [1483/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_utils.cpp.obj 2025-07-17T06:44:22.2857298Z [1484/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_binary_list.cpp.obj 2025-07-17T06:44:22.3410805Z [1485/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_concat.cpp.obj 2025-07-17T06:44:22.3474275Z [1486/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_batch_normalization_list.cpp.obj 2025-07-17T06:44:22.6949355Z [1487/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_deconvolution_list.cpp.obj 2025-07-17T06:44:22.7453283Z [1488/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_engine.cpp.obj 2025-07-17T06:44:22.7858969Z [1489/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_eltwise_list.cpp.obj 2025-07-17T06:44:22.8079593Z [1490/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_convolution_list.cpp.obj 2025-07-17T06:44:22.8216497Z [1491/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_group_normalization_list.cpp.obj 2025-07-17T06:44:23.0180600Z [1492/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_layer_normalization_list.cpp.obj 2025-07-17T06:44:23.0385267Z [1493/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_lrn_list.cpp.obj 2025-07-17T06:44:23.0760254Z [1494/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_inner_product_list.cpp.obj 2025-07-17T06:44:23.4280050Z [1495/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_pooling_list.cpp.obj 2025-07-17T06:44:23.4709113Z [1496/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_reduction_list.cpp.obj 2025-07-17T06:44:23.5091439Z [1497/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_prelu_list.cpp.obj 2025-07-17T06:44:23.5470970Z [1498/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_resampling_list.cpp.obj 2025-07-17T06:44:23.6063421Z [1499/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_rnn_list.cpp.obj 2025-07-17T06:44:23.6800970Z [1500/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_shuffle_list.cpp.obj 2025-07-17T06:44:23.7416802Z [1501/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_softmax_list.cpp.obj 2025-07-17T06:44:23.7793296Z [1502/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\cpu_sum.cpp.obj 2025-07-17T06:44:24.1297271Z [1503/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\float16.cpp.obj 2025-07-17T06:44:24.1812327Z [1504/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution.cpp.obj 2025-07-17T06:44:24.2366330Z [1505/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product.cpp.obj 2025-07-17T06:44:24.2458282Z [1506/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_convolution_utils.cpp.obj 2025-07-17T06:44:24.3352168Z [1507/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_inner_product_utils.cpp.obj 2025-07-17T06:44:24.3546919Z [1508/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_conv_zp_src_pad_comp.cpp.obj 2025-07-17T06:44:24.4458684Z [1509/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution.cpp.obj 2025-07-17T06:44:24.4560729Z [1510/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_convolution_utils.cpp.obj 2025-07-17T06:44:24.8597420Z [1511/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm_x8s8s32x_inner_product.cpp.obj 2025-07-17T06:44:24.8765789Z [1512/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nchw_pooling.cpp.obj 2025-07-17T06:44:24.8983711Z [1513/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_batch_normalization.cpp.obj 2025-07-17T06:44:24.9456775Z [1514/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ncsp_group_normalization.cpp.obj 2025-07-17T06:44:25.0159129Z [1515/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nhwc_pooling.cpp.obj 2025-07-17T06:44:25.0370722Z [1516/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\nspc_batch_normalization.cpp.obj 2025-07-17T06:44:25.0622511Z [1517/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\platform.cpp.obj 2025-07-17T06:44:25.1047584Z [1518/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\primitive_attr_postops.cpp.obj 2025-07-17T06:44:25.4835839Z [1519/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_batch_normalization.cpp.obj 2025-07-17T06:44:25.5205081Z [1520/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_binary.cpp.obj 2025-07-17T06:44:25.5696232Z [1521/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution.cpp.obj 2025-07-17T06:44:25.6132903Z [1522/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_convolution_int8.cpp.obj 2025-07-17T06:44:25.6559706Z [1523/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_deconvolution.cpp.obj 2025-07-17T06:44:25.6933053Z [1524/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_eltwise.cpp.obj 2025-07-17T06:44:25.7435067Z [1525/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_group_normalization.cpp.obj 2025-07-17T06:44:25.7860115Z [1526/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product.cpp.obj 2025-07-17T06:44:26.1355130Z [1527/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_inner_product_int8.cpp.obj 2025-07-17T06:44:26.1707308Z [1528/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_layer_normalization.cpp.obj 2025-07-17T06:44:26.2344597Z [1529/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_lrn.cpp.obj 2025-07-17T06:44:26.2899162Z [1530/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_pooling.cpp.obj 2025-07-17T06:44:26.2982574Z [1531/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_prelu.cpp.obj 2025-07-17T06:44:26.3448733Z [1532/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_reduction.cpp.obj 2025-07-17T06:44:26.3850402Z [1533/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_resampling.cpp.obj 2025-07-17T06:44:26.4229508Z [1534/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_shuffle.cpp.obj 2025-07-17T06:44:26.7422619Z [1535/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\bf16\ref_gemm_bf16.cpp.obj 2025-07-17T06:44:26.7573094Z [1536/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\scale_utils.cpp.obj 2025-07-17T06:44:26.8004574Z [1537/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\ref_softmax.cpp.obj 2025-07-17T06:44:26.8737736Z [1538/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_concat.cpp.obj 2025-07-17T06:44:26.9510995Z [1539/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_layer_normalization.cpp.obj 2025-07-17T06:44:26.9566479Z [1540/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_resampling.cpp.obj 2025-07-17T06:44:27.0012775Z [1541/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\zero_point_utils.cpp.obj 2025-07-17T06:44:27.0100976Z [1542/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\simple_sum.cpp.obj 2025-07-17T06:44:27.0595384Z [1543/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\ref_gemm_f32.cpp.obj 2025-07-17T06:44:27.0807766Z [1544/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\f32\gemm_utils_f32.cpp.obj 2025-07-17T06:44:27.4139296Z [1545/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm.cpp.obj 2025-07-17T06:44:27.5012785Z [1546/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\gemm_pack.cpp.obj 2025-07-17T06:44:27.5367469Z [1547/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\ref_gemm_s8x8s32.cpp.obj 2025-07-17T06:44:27.5985282Z [1548/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\gemm\s8x8s32\simple_gemm_s8s8s32.cpp.obj 2025-07-17T06:44:27.7278820Z [1549/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_bf16_matmul.cpp.obj 2025-07-17T06:44:27.7609826Z [1550/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\cpu_matmul_list.cpp.obj 2025-07-17T06:44:27.7704905Z [1551/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_f32_matmul.cpp.obj 2025-07-17T06:44:27.8128395Z [1552/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\gemm_x8s8s32x_matmul.cpp.obj 2025-07-17T06:44:28.0974643Z [1553/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul.cpp.obj 2025-07-17T06:44:28.1671612Z [1554/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_matmul_int8.cpp.obj 2025-07-17T06:44:28.1860735Z [1555/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\matmul\ref_sparse_matmul.cpp.obj 2025-07-17T06:44:28.3241398Z [1556/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder.cpp.obj 2025-07-17T06:44:28.5050880Z [1557/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_f32_s8.cpp.obj 2025-07-17T06:44:28.5233603Z [1558/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_bf16_s8.cpp.obj 2025-07-17T06:44:28.5687662Z [1559/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_bf16.cpp.obj 2025-07-17T06:44:28.5748716Z [1560/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_comp_s8_s8.cpp.obj 2025-07-17T06:44:28.8353611Z [1561/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f16.cpp.obj 2025-07-17T06:44:28.9318049Z [1562/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f16.cpp.obj 2025-07-17T06:44:28.9744891Z [1563/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_bf16.cpp.obj 2025-07-17T06:44:29.0694694Z [1564/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_f32.cpp.obj 2025-07-17T06:44:29.2245051Z [1565/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_fp8.cpp.obj 2025-07-17T06:44:29.2521489Z [1566/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s32.cpp.obj 2025-07-17T06:44:29.2908779Z [1567/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_u8.cpp.obj 2025-07-17T06:44:29.3274289Z [1568/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_f32_s8.cpp.obj 2025-07-17T06:44:29.6082469Z [1569/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp4.cpp.obj 2025-07-17T06:44:29.7323192Z [1570/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_fp8.cpp.obj 2025-07-17T06:44:29.7948768Z [1571/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s32.cpp.obj 2025-07-17T06:44:29.8266748Z [1572/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s4.cpp.obj 2025-07-17T06:44:29.9718652Z [1573/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_s8.cpp.obj 2025-07-17T06:44:30.0188510Z [1574/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u4.cpp.obj 2025-07-17T06:44:30.1000407Z [1575/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\brgemm_cell_common.cpp.obj 2025-07-17T06:44:30.1209590Z [1576/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\reorder\cpu_reorder_regular_u8.cpp.obj 2025-07-17T06:44:30.3729521Z [1577/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_common.cpp.obj 2025-07-17T06:44:30.5228488Z [1578/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru.cpp.obj 2025-07-17T06:44:30.5385289Z [1579/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru.cpp.obj 2025-07-17T06:44:30.6079625Z [1580/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\cell_gru_lbr.cpp.obj 2025-07-17T06:44:30.6798637Z [1581/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\linux_perf\linux_perf.cpp.obj 2025-07-17T06:44:30.6926136Z [1582/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_gru_lbr.cpp.obj 2025-07-17T06:44:30.7035379Z [1583/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm.cpp.obj 2025-07-17T06:44:30.8042024Z [1584/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_lstm_projection.cpp.obj 2025-07-17T06:44:30.8701080Z [1585/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_postgemm_rnn.cpp.obj 2025-07-17T06:44:31.0795206Z [1586/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\jit_utils\jit_utils.cpp.obj 2025-07-17T06:44:31.2630462Z [1587/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\rnn_utils.cpp.obj 2025-07-17T06:44:31.2837099Z [1588/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\CMakeFiles\dnnl_cpu.dir\rnn\ref_rnn.cpp.obj 2025-07-17T06:44:31.3345568Z [1589/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm.cpp.obj 2025-07-17T06:44:31.3493352Z [1590/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\amx_tile_configure.cpp.obj 2025-07-17T06:44:31.3513111Z [1591/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_containers.cpp.obj 2025-07-17T06:44:31.4543989Z [1592/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\brgemm_utils.cpp.obj 2025-07-17T06:44:31.5424879Z [1593/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\capi\brgemm_api.cpp.obj 2025-07-17T06:44:31.7300128Z [1594/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brdgmm_kernel.cpp.obj 2025-07-17T06:44:31.9470498Z [1595/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_kernel.cpp.obj 2025-07-17T06:44:31.9775908Z [1596/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_isa_traits.cpp.obj 2025-07-17T06:44:31.9863280Z [1597/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\brgemm\jit_brgemm_amx_uker.cpp.obj 2025-07-17T06:44:32.0047359Z [1598/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_barrier.cpp.obj 2025-07-17T06:44:32.0373559Z [1599/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\cpu_reducer.cpp.obj 2025-07-17T06:44:32.1034882Z [1600/7682] 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-07-17T06:44:32.2150367Z [1601/7682] 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-07-17T06:44:32.3639828Z [1602/7682] 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-07-17T06:44:32.6335329Z [1603/7682] 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-07-17T06:44:32.6426311Z [1604/7682] 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-07-17T06:44:32.6446821Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:32.6447622Z [1605/7682] 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-07-17T06:44:32.6507258Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:32.6508718Z [1606/7682] 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-07-17T06:44:32.6575512Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:32.6576892Z [1607/7682] 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-07-17T06:44:32.7004010Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:32.7004837Z [1608/7682] 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-07-17T06:44:32.8443294Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:32.8444801Z [1609/7682] 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-07-17T06:44:33.0298026Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.0298843Z [1610/7682] 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-07-17T06:44:33.2885323Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.2886314Z [1611/7682] 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-07-17T06:44:33.2902463Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.2903843Z [1612/7682] 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-07-17T06:44:33.3166119Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.3166948Z [1613/7682] 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-07-17T06:44:33.3390068Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.3391464Z [1614/7682] 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-07-17T06:44:33.3482909Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.3484316Z [1615/7682] 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-07-17T06:44:33.3647466Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.3648369Z [1616/7682] 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-07-17T06:44:33.4867787Z [1617/7682] 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-07-17T06:44:33.6800493Z [1618/7682] 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-07-17T06:44:33.9372085Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:33.9373595Z [1619/7682] 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-07-17T06:44:33.9462444Z [1620/7682] 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-07-17T06:44:33.9925325Z [1621/7682] 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-07-17T06:44:34.0230274Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:34.0231545Z [1622/7682] 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-07-17T06:44:34.0304822Z [1623/7682] 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-07-17T06:44:34.0414914Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:34.0416294Z [1624/7682] 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-07-17T06:44:34.1833856Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:34.1834668Z [1625/7682] 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-07-17T06:44:34.3142666Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:34.3144044Z [1626/7682] 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-07-17T06:44:34.5974910Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:34.5975663Z [1627/7682] 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-07-17T06:44:34.6065079Z [1628/7682] 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-07-17T06:44:34.6344528Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:34.6345246Z [1629/7682] 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-07-17T06:44:34.6590228Z [1630/7682] 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-07-17T06:44:34.6608580Z [1631/7682] 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-07-17T06:44:34.6747305Z [1632/7682] 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-07-17T06:44:34.8778173Z [1633/7682] 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-07-17T06:44:34.9182520Z [1634/7682] 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-07-17T06:44:35.2207019Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:35.2208286Z [1635/7682] 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-07-17T06:44:35.2459855Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:35.2461066Z [1636/7682] 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-07-17T06:44:35.3008791Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:35.3010015Z [1637/7682] 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-07-17T06:44:35.3100793Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:35.3101606Z [1638/7682] 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-07-17T06:44:35.3183837Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:35.3184628Z [1639/7682] 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-07-17T06:44:35.3372291Z [1640/7682] 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-07-17T06:44:35.5246252Z [1641/7682] 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-07-17T06:44:35.5978544Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:35.5979767Z [1642/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_driver.cpp.obj 2025-07-17T06:44:35.8821133Z [1643/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_info.cpp.obj 2025-07-17T06:44:35.8956085Z [1644/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemm_pack.cpp.obj 2025-07-17T06:44:35.9342485Z [1645/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm\gemv_driver.cpp.obj 2025-07-17T06:44:35.9671923Z [1646/7682] 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-07-17T06:44:35.9760110Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:35.9761072Z [1647/7682] 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-07-17T06:44:35.9813758Z [1648/7682] 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-07-17T06:44:36.1475046Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.1476777Z [1649/7682] 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-07-17T06:44:36.2626022Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.2626823Z [1650/7682] 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-07-17T06:44:36.5582284Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.5583607Z [1651/7682] 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-07-17T06:44:36.5724058Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.5724853Z [1652/7682] 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-07-17T06:44:36.5806044Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.5807494Z [1653/7682] 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-07-17T06:44:36.6017525Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.6018378Z [1654/7682] 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-07-17T06:44:36.6169885Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.6170968Z [1655/7682] 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-07-17T06:44:36.6267518Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.6269019Z [1656/7682] 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-07-17T06:44:36.8755074Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.8755940Z [1657/7682] 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-07-17T06:44:36.9072217Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:36.9073206Z [1658/7682] 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-07-17T06:44:37.1949777Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.1950605Z [1659/7682] 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-07-17T06:44:37.2439485Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.2440314Z [1660/7682] 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-07-17T06:44:37.2456129Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.2456948Z [1661/7682] 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-07-17T06:44:37.2883723Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.2884745Z [1662/7682] 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-07-17T06:44:37.2980036Z [1663/7682] 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-07-17T06:44:37.3004778Z [1664/7682] 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-07-17T06:44:37.5098085Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.5099592Z [1665/7682] 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-07-17T06:44:37.5732082Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.5733516Z [1666/7682] 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-07-17T06:44:37.8214509Z [1667/7682] 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-07-17T06:44:37.9146973Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.9148460Z [1668/7682] 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-07-17T06:44:37.9265350Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.9266155Z [1669/7682] 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-07-17T06:44:37.9689677Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.9690510Z [1670/7682] 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-07-17T06:44:37.9777947Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:37.9779475Z [1671/7682] 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-07-17T06:44:38.0086490Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.0087529Z [1672/7682] 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-07-17T06:44:38.1539982Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.1541505Z [1673/7682] 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-07-17T06:44:38.2373562Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.2375238Z [1674/7682] 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-07-17T06:44:38.4431219Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.4432068Z [1675/7682] 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-07-17T06:44:38.5583915Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.5584820Z [1676/7682] 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-07-17T06:44:38.5713433Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.5714329Z [1677/7682] 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-07-17T06:44:38.6213022Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.6214406Z [1678/7682] 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-07-17T06:44:38.6230353Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.6231348Z [1679/7682] 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-07-17T06:44:38.6319814Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.6321357Z [1680/7682] 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-07-17T06:44:38.8810324Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.8811311Z [1681/7682] 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-07-17T06:44:38.8886437Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:38.8887878Z [1682/7682] 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-07-17T06:44:39.1349885Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.1350737Z [1683/7682] 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-07-17T06:44:39.1875739Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.1876725Z [1684/7682] 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-07-17T06:44:39.2484507Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.2485346Z [1685/7682] 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-07-17T06:44:39.2932290Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.2933717Z [1686/7682] 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-07-17T06:44:39.3056512Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.3057973Z [1687/7682] 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-07-17T06:44:39.3220655Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.3221985Z [1688/7682] 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-07-17T06:44:39.5072458Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.5073397Z [1689/7682] 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-07-17T06:44:39.5841627Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.5842568Z [1690/7682] 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-07-17T06:44:39.8002084Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.8002991Z [1691/7682] 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-07-17T06:44:39.8252263Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.8253340Z [1692/7682] 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-07-17T06:44:39.9548120Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.9549111Z [1693/7682] 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-07-17T06:44:39.9640402Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.9641242Z [1694/7682] 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-07-17T06:44:39.9728068Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:39.9729397Z [1695/7682] 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-07-17T06:44:40.0089446Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.0090901Z [1696/7682] 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-07-17T06:44:40.1087356Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.1088739Z [1697/7682] 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-07-17T06:44:40.1818767Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.1820217Z [1698/7682] 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-07-17T06:44:40.4446304Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.4447181Z [1699/7682] 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-07-17T06:44:40.5032962Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.5034371Z [1700/7682] 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-07-17T06:44:40.5793684Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.5794943Z [1701/7682] 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-07-17T06:44:40.6080635Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.6081937Z [1702/7682] 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-07-17T06:44:40.6172851Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.6173668Z [1703/7682] 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-07-17T06:44:40.6469704Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.6470616Z [1704/7682] 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-07-17T06:44:40.7848068Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.7849283Z [1705/7682] 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-07-17T06:44:40.8711415Z cl : Command line warning D9025 : overriding '/O2' with '/Od' 2025-07-17T06:44:40.8712260Z [1706/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_convolution.cpp.obj 2025-07-17T06:44:41.1158879Z [1707/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\gemm_bf16_inner_product.cpp.obj 2025-07-17T06:44:41.1259069Z [1708/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\injector_utils.cpp.obj 2025-07-17T06:44:41.2957467Z [1709/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_eltwise_injector.cpp.obj 2025-07-17T06:44:41.2976000Z [1710/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_postops_injector.cpp.obj 2025-07-17T06:44:41.3470782Z [1711/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\ip_convolution.cpp.obj 2025-07-17T06:44:41.3757979Z [1712/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\injectors\jit_uni_binary_injector.cpp.obj 2025-07-17T06:44:41.4919692Z [1713/7682] 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-07-17T06:44:41.6383803Z [1714/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_1x1_convolution.cpp.obj 2025-07-17T06:44:41.8282437Z [1715/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_conv_kernel_f32.cpp.obj 2025-07-17T06:44:41.8555353Z [1716/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx2_convolution.cpp.obj 2025-07-17T06:44:42.0157194Z [1717/7682] 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-07-17T06:44:42.0644577Z [1718/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_1x1_convolution.cpp.obj 2025-07-17T06:44:42.0919566Z [1719/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_conv_kernel.cpp.obj 2025-07-17T06:44:42.1391685Z [1720/7682] 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-07-17T06:44:42.1459156Z [1721/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_common_convolution.cpp.obj 2025-07-17T06:44:42.3551786Z [1722/7682] 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-07-17T06:44:42.5639095Z [1723/7682] 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-07-17T06:44:42.6320805Z [1724/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_convolution.cpp.obj 2025-07-17T06:44:42.7427699Z [1725/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_amx_deconvolution.cpp.obj 2025-07-17T06:44:42.7845822Z [1726/7682] 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-07-17T06:44:42.8192512Z [1727/7682] 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-07-17T06:44:42.8627035Z [1728/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_bf16_convolution.cpp.obj 2025-07-17T06:44:42.9082870Z [1729/7682] 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-07-17T06:44:43.0893164Z [1730/7682] 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-07-17T06:44:43.2340765Z [1731/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp16cvt.cpp.obj 2025-07-17T06:44:43.2775265Z [1732/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_fp8cvt.cpp.obj 2025-07-17T06:44:43.4383055Z [1733/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_resampling.cpp.obj 2025-07-17T06:44:43.4585825Z [1734/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_scale_precompute.cpp.obj 2025-07-17T06:44:43.5072381Z [1735/7682] 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-07-17T06:44:43.5835881Z [1736/7682] 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-07-17T06:44:43.6026385Z [1737/7682] 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-07-17T06:44:43.8623929Z [1738/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_convolution.cpp.obj 2025-07-17T06:44:43.9229667Z [1739/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_sparse_decompress_kernel.cpp.obj 2025-07-17T06:44:43.9760381Z [1740/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_avx512_core_x8s8s32x_deconvolution.cpp.obj 2025-07-17T06:44:44.1686528Z [1741/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_1x1_conv.cpp.obj 2025-07-17T06:44:44.2033876Z [1742/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brdgmm_dw_conv.cpp.obj 2025-07-17T06:44:44.3008252Z [1743/7682] 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-07-17T06:44:44.3298362Z [1744/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv.cpp.obj 2025-07-17T06:44:44.3477106Z [1745/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd.cpp.obj 2025-07-17T06:44:44.6332389Z [1746/7682] 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-07-17T06:44:44.6442696Z [1747/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_utils.cpp.obj 2025-07-17T06:44:44.6467150Z [1748/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_strided.cpp.obj 2025-07-17T06:44:44.8768071Z [1749/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_bwd_w.cpp.obj 2025-07-17T06:44:44.9099289Z [1750/7682] 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-07-17T06:44:44.9812459Z [1751/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_trans_kernel.cpp.obj 2025-07-17T06:44:45.0884601Z [1752/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_conv_utils.cpp.obj 2025-07-17T06:44:45.1094530Z [1753/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_deconv.cpp.obj 2025-07-17T06:44:45.3444014Z [1754/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product_utils.cpp.obj 2025-07-17T06:44:45.3842921Z [1755/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_post_ops.cpp.obj 2025-07-17T06:44:45.3943295Z [1756/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_inner_product.cpp.obj 2025-07-17T06:44:45.5145361Z [1757/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_primitive_conf.cpp.obj 2025-07-17T06:44:45.5647712Z [1758/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_brgemm_transpose_utils.cpp.obj 2025-07-17T06:44:45.6805049Z [1759/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_inner_product_utils.cpp.obj 2025-07-17T06:44:45.7410955Z [1760/7682] 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-07-17T06:44:45.8093470Z [1761/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_gemm_x8s8s32x_convolution_utils.cpp.obj 2025-07-17T06:44:45.9586766Z [1762/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_generator.cpp.obj 2025-07-17T06:44:46.0605095Z [1763/7682] 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-07-17T06:44:46.0910696Z [1764/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_1x1_convolution.cpp.obj 2025-07-17T06:44:46.2489781Z [1765/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_convolution.cpp.obj 2025-07-17T06:44:46.2846289Z [1766/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_sse41_conv_kernel_f32.cpp.obj 2025-07-17T06:44:46.2962921Z [1767/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_transpose_utils.cpp.obj 2025-07-17T06:44:46.4482638Z [1768/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization.cpp.obj 2025-07-17T06:44:46.5188258Z [1769/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_batch_normalization_s8.cpp.obj 2025-07-17T06:44:46.6471630Z [1770/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary.cpp.obj 2025-07-17T06:44:46.7496588Z [1771/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_convert_xf16.cpp.obj 2025-07-17T06:44:46.7761391Z [1772/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_binary_kernel.cpp.obj 2025-07-17T06:44:46.9472929Z [1773/7682] 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-07-17T06:44:47.0039687Z [1774/7682] 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-07-17T06:44:47.0137697Z [1775/7682] 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-07-17T06:44:47.1677537Z [1776/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_dw_convolution.cpp.obj 2025-07-17T06:44:47.2370890Z [1777/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise.cpp.obj 2025-07-17T06:44:47.4126792Z [1778/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_eltwise_int.cpp.obj 2025-07-17T06:44:47.4755531Z [1779/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_group_normalization.cpp.obj 2025-07-17T06:44:47.5155539Z [1780/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_i8i8_pooling.cpp.obj 2025-07-17T06:44:47.7002066Z [1781/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_instance_normalization.cpp.obj 2025-07-17T06:44:47.7198685Z [1782/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_ncsp_convolution.cpp.obj 2025-07-17T06:44:47.7379271Z [1783/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_layer_normalization.cpp.obj 2025-07-17T06:44:47.8879821Z [1784/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pool_kernel.cpp.obj 2025-07-17T06:44:47.9550753Z [1785/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_pooling.cpp.obj 2025-07-17T06:44:48.1507090Z [1786/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction.cpp.obj 2025-07-17T06:44:48.1747774Z [1787/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reduction_kernel.cpp.obj 2025-07-17T06:44:48.2206650Z [1788/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder.cpp.obj 2025-07-17T06:44:48.3943020Z [1789/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_utils.cpp.obj 2025-07-17T06:44:48.4102727Z [1790/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling.cpp.obj 2025-07-17T06:44:48.4337925Z [1791/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_reorder_direct_copy.cpp.obj 2025-07-17T06:44:48.6020360Z [1792/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_resampling_kernel.cpp.obj 2025-07-17T06:44:48.7272544Z [1793/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_softmax.cpp.obj 2025-07-17T06:44:48.8660926Z [1794/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_tbb_batch_normalization.cpp.obj 2025-07-17T06:44:48.9097439Z [1795/7682] 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-07-17T06:44:48.9610851Z [1796/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_1x1_convolution.cpp.obj 2025-07-17T06:44:49.1100026Z [1797/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_convolution.cpp.obj 2025-07-17T06:44:49.1809103Z [1798/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_deconvolution.cpp.obj 2025-07-17T06:44:49.1813084Z [1799/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_x8s8s32x_conv_kernel.cpp.obj 2025-07-17T06:44:49.2862772Z [1800/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\jit_uni_xf16_sum.cpp.obj 2025-07-17T06:44:49.3937426Z [1801/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_avx512_common_lrn.cpp.obj 2025-07-17T06:44:49.5468262Z [1802/7682] 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-07-17T06:44:49.5651372Z [1803/7682] 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-07-17T06:44:49.6015509Z [1804/7682] 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-07-17T06:44:49.7746173Z [1805/7682] 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-07-17T06:44:49.8690140Z [1806/7682] 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-07-17T06:44:49.8963170Z [1807/7682] 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-07-17T06:44:49.9627928Z [1808/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn.cpp.obj 2025-07-17T06:44:50.0594545Z [1809/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\lrn\jit_uni_lrn_kernel.cpp.obj 2025-07-17T06:44:50.2592474Z [1810/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_copy_utils.cpp.obj 2025-07-17T06:44:50.2850141Z [1811/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_reorders.cpp.obj 2025-07-17T06:44:50.3023121Z [1812/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul.cpp.obj 2025-07-17T06:44:50.4411572Z [1813/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\brgemm_matmul_utils.cpp.obj 2025-07-17T06:44:50.5919657Z [1814/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_backward.cpp.obj 2025-07-17T06:44:50.5944248Z [1815/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_base_kernel.cpp.obj 2025-07-17T06:44:50.6039071Z [1816/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\matmul\jit_uni_sparse_matmul.cpp.obj 2025-07-17T06:44:50.7600623Z [1817/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_forward.cpp.obj 2025-07-17T06:44:50.9311308Z [1818/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_utils.cpp.obj 2025-07-17T06:44:50.9717807Z [1819/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\prelu\jit_prelu_reduction_kernel.cpp.obj 2025-07-17T06:44:50.9885444Z [1820/7682] 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-07-17T06:44:51.0803419Z [1821/7682] 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-07-17T06:44:51.2979104Z [1822/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_fwd.cpp.obj 2025-07-17T06:44:51.3102333Z [1823/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_reorders.cpp.obj 2025-07-17T06:44:51.3124645Z [1824/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_bwd.cpp.obj 2025-07-17T06:44:51.3917459Z [1825/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\brgemm_cell_common_utils.cpp.obj 2025-07-17T06:44:51.5910939Z [1826/7682] 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-07-17T06:44:51.6365502Z [1827/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_diff_weights_peephole.cpp.obj 2025-07-17T06:44:51.6466710Z [1828/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\jit_gates_reduction.cpp.obj 2025-07-17T06:44:51.8141605Z [1829/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\rnn\rnn_brgemm_utils.cpp.obj 2025-07-17T06:44:51.9627156Z [1830/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\allocator.cpp.obj 2025-07-17T06:44:52.0273141Z [1831/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle.cpp.obj 2025-07-17T06:44:52.0373884Z [1832/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\utils\jit_io_helper.cpp.obj 2025-07-17T06:44:52.0399824Z [1833/7682] Building CXX object third_party\ideep\mkl-dnn\src\cpu\x64\CMakeFiles\dnnl_cpu_x64.dir\shuffle\jit_uni_shuffle_kernel.cpp.obj 2025-07-17T06:44:52.2141552Z [1834/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\backend.cpp.obj 2025-07-17T06:44:52.2873721Z [1835/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\graph.cpp.obj 2025-07-17T06:44:52.2978003Z [1836/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\constant_tensor_cache.cpp.obj 2025-07-17T06:44:52.5211434Z [1837/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\logical_tensor.cpp.obj 2025-07-17T06:44:52.5644488Z [1838/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op.cpp.obj 2025-07-17T06:44:52.6353265Z [1839/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_def_constraint.cpp.obj 2025-07-17T06:44:52.6858732Z [1840/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\op_schema.cpp.obj 2025-07-17T06:44:52.7263767Z [1841/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition.cpp.obj 2025-07-17T06:44:52.8704104Z [1842/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_cache.cpp.obj 2025-07-17T06:44:52.9310941Z [1843/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_hashing.cpp.obj 2025-07-17T06:44:52.9569443Z [1844/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\partition_impl.cpp.obj 2025-07-17T06:44:53.1213073Z [1845/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\shape_infer.cpp.obj 2025-07-17T06:44:53.1575056Z [1846/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\tensor.cpp.obj 2025-07-17T06:44:53.2549644Z [1847/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\interface\CMakeFiles\dnnl_graph_interface.dir\value.cpp.obj 2025-07-17T06:44:53.3220263Z [1848/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\fake\CMakeFiles\dnnl_graph_backend_fake.dir\fake_backend.cpp.obj 2025-07-17T06:44:53.4310407Z [1849/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\common.cpp.obj 2025-07-17T06:44:53.5758854Z [1850/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_shape_infer.cpp.obj 2025-07-17T06:44:53.6459722Z [1851/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_partition_impl.cpp.obj 2025-07-17T06:44:53.6673160Z [1852/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\dnnl_backend.cpp.obj 2025-07-17T06:44:53.8098863Z [1853/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_id_mgr.cpp.obj 2025-07-17T06:44:53.8121238Z [1854/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\fusion_info.cpp.obj 2025-07-17T06:44:53.9671849Z [1855/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\layout_propagator.cpp.obj 2025-07-17T06:44:54.0204286Z [1856/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\op_executable.cpp.obj 2025-07-17T06:44:54.0521895Z [1857/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\platform.cpp.obj 2025-07-17T06:44:54.2972101Z [1858/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\subgraph.cpp.obj 2025-07-17T06:44:54.3819377Z [1859/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\binary.cpp.obj 2025-07-17T06:44:54.3919255Z [1860/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\batch_norm.cpp.obj 2025-07-17T06:44:54.4783057Z [1861/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\concat.cpp.obj 2025-07-17T06:44:54.5444648Z [1862/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv.cpp.obj 2025-07-17T06:44:54.7400051Z [1863/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_base.cpp.obj 2025-07-17T06:44:54.7816971Z [1864/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\dummy.cpp.obj 2025-07-17T06:44:54.7891873Z [1865/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\conv_transpose.cpp.obj 2025-07-17T06:44:54.9969929Z [1866/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\eltwise.cpp.obj 2025-07-17T06:44:55.0603203Z [1867/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\gen_index.cpp.obj 2025-07-17T06:44:55.0991017Z [1868/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\group_norm.cpp.obj 2025-07-17T06:44:55.1925728Z [1869/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\kernel_base.cpp.obj 2025-07-17T06:44:55.2484573Z [1870/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\large_partition.cpp.obj 2025-07-17T06:44:55.4575840Z [1871/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\layer_norm.cpp.obj 2025-07-17T06:44:55.5157908Z [1872/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\matmul.cpp.obj 2025-07-17T06:44:55.5413555Z [1873/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\log_softmax.cpp.obj 2025-07-17T06:44:55.6607281Z [1874/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\mqa_decomp.cpp.obj 2025-07-17T06:44:55.7632384Z [1875/7682] 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-07-17T06:44:55.8397533Z [1876/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\pool.cpp.obj 2025-07-17T06:44:55.9105864Z [1877/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\prelu.cpp.obj 2025-07-17T06:44:56.0174655Z [1878/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\quantize.cpp.obj 2025-07-17T06:44:56.1710697Z [1879/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reduction.cpp.obj 2025-07-17T06:44:56.2676752Z [1880/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\resampling.cpp.obj 2025-07-17T06:44:56.3029086Z [1881/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\reorder.cpp.obj 2025-07-17T06:44:56.4108837Z [1882/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_decomp.cpp.obj 2025-07-17T06:44:56.5061679Z [1883/7682] 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-07-17T06:44:56.5592847Z [1884/7682] 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-07-17T06:44:56.6153225Z [1885/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sdp_primitive.cpp.obj 2025-07-17T06:44:56.7647803Z [1886/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\select.cpp.obj 2025-07-17T06:44:56.8381203Z [1887/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\shuffle.cpp.obj 2025-07-17T06:44:56.9963217Z [1888/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\softmax.cpp.obj 2025-07-17T06:44:57.0040936Z [1889/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\kernels\sum.cpp.obj 2025-07-17T06:44:57.1499650Z [1890/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\compile_ops.cpp.obj 2025-07-17T06:44:57.1869861Z [1891/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\constant_propagation.cpp.obj 2025-07-17T06:44:57.2441163Z [1892/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\insert_ops.cpp.obj 2025-07-17T06:44:57.3461557Z [1893/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\layout_propagation.cpp.obj 2025-07-17T06:44:57.5027615Z [1894/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\lower.cpp.obj 2025-07-17T06:44:57.5172391Z [1895/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\memory_planning.cpp.obj 2025-07-17T06:44:57.6932387Z [1896/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\utils.cpp.obj 2025-07-17T06:44:57.7594437Z [1897/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\passes\transform.cpp.obj 2025-07-17T06:44:57.8827245Z [1898/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\binary_fusion.cpp.obj 2025-07-17T06:44:57.9015126Z [1899/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\bn_fusion.cpp.obj 2025-07-17T06:44:57.9470893Z [1900/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\concat_fusion.cpp.obj 2025-07-17T06:44:58.1396796Z [1901/7682] 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-07-17T06:44:58.2376220Z [1902/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\convtranspose_fusion.cpp.obj 2025-07-17T06:44:58.2624106Z [1903/7682] 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-07-17T06:44:58.4231708Z [1904/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\eltwise_fusion.cpp.obj 2025-07-17T06:44:58.5223167Z [1905/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\groupnorm_fusion.cpp.obj 2025-07-17T06:44:58.5886214Z [1906/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\interpolate_fusion.cpp.obj 2025-07-17T06:44:58.6427700Z [1907/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\layernorm_fusion.cpp.obj 2025-07-17T06:44:58.7696859Z [1908/7682] 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-07-17T06:44:58.8636419Z [1909/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\mlp.cpp.obj 2025-07-17T06:44:58.9761707Z [1910/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\quantize_fusion.cpp.obj 2025-07-17T06:44:59.0074922Z [1911/7682] 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-07-17T06:44:59.1888166Z [1912/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reduction_fusion.cpp.obj 2025-07-17T06:44:59.2703670Z [1913/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\reorder_fusion.cpp.obj 2025-07-17T06:44:59.3200955Z [1914/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sdp.cpp.obj 2025-07-17T06:44:59.3290773Z [1915/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\alloc.cpp.obj 2025-07-17T06:44:59.3723974Z [1916/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\shuffle_fusion.cpp.obj 2025-07-17T06:44:59.3830713Z [1917/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\debug.cpp.obj 2025-07-17T06:44:59.3845346Z [1918/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\id.cpp.obj 2025-07-17T06:44:59.4139694Z [1919/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\ocl_usm_utils.cpp.obj 2025-07-17T06:44:59.4668174Z [1920/7682] 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-07-17T06:44:59.6019937Z [1921/7682] 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-07-17T06:44:59.6565000Z [1922/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\backend\dnnl\CMakeFiles\dnnl_graph_backend_dnnl.dir\patterns\sum_fusion.cpp.obj 2025-07-17T06:44:59.9361154Z [1923/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\nested_matcher.cpp.obj 2025-07-17T06:45:00.0068599Z [1924/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pbuilder.cpp.obj 2025-07-17T06:45:00.0359786Z [1925/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\utils.cpp.obj 2025-07-17T06:45:00.0480739Z [1926/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_base.cpp.obj 2025-07-17T06:45:00.0621053Z [1927/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\pm\pass_manager.cpp.obj 2025-07-17T06:45:00.0688297Z [1928/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\libkineto_api.cpp.obj 2025-07-17T06:45:00.1173222Z [1929/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_api.dir\src\ThreadUtil.cpp.obj 2025-07-17T06:45:00.1174963Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-07-17T06:45:00.1177244Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(21): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-07-17T06:45:00.1179249Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): warning C4005: 'NOGDI': macro redefinition 2025-07-17T06:45:00.1269639Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\ThreadUtil.cpp(22): note: 'NOGDI' previously declared on the command line 2025-07-17T06:45:00.1270716Z [1930/7682] Building CXX object third_party\ideep\mkl-dnn\src\graph\utils\CMakeFiles\dnnl_graph_utils.dir\verbose.cpp.obj 2025-07-17T06:45:00.4530083Z [1931/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerConfig.cpp.obj 2025-07-17T06:45:00.5680716Z [1932/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiNvPerfMetric.cpp.obj 2025-07-17T06:45:00.5743191Z [1933/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfiler.cpp.obj 2025-07-17T06:45:00.6244785Z [1934/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Demangle.cpp.obj 2025-07-17T06:45:00.6685864Z [1935/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityApi.cpp.obj 2025-07-17T06:45:00.7293764Z [1936/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiRangeProfilerApi.cpp.obj 2025-07-17T06:45:00.7513983Z [1937/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiCallbackApi.cpp.obj 2025-07-17T06:45:00.7739814Z [1938/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiMetricApi.cpp.obj 2025-07-17T06:45:00.8326926Z [1939/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiEventApi.cpp.obj 2025-07-17T06:45:00.8387412Z [1940/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\WeakSymbols.cpp.obj 2025-07-17T06:45:00.8774688Z [1941/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\KernelRegistry.cpp.obj 2025-07-17T06:45:01.0153862Z [1942/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\cupti_strings.cpp.obj 2025-07-17T06:45:01.0862731Z [1943/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfilerController.cpp.obj 2025-07-17T06:45:01.1441738Z [1944/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ApproximateClock.cpp.obj 2025-07-17T06:45:01.1523004Z [1945/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\AbstractConfig.cpp.obj 2025-07-17T06:45:01.1797832Z [1946/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\EventProfiler.cpp.obj 2025-07-17T06:45:01.1799269Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\numeric(37): warning C4244: '=': conversion from '_Ty' to '_Ty', possible loss of data 2025-07-17T06:45:01.1800073Z with 2025-07-17T06:45:01.1800283Z [ 2025-07-17T06:45:01.1800889Z _Ty=int64_t 2025-07-17T06:45:01.1801381Z ] 2025-07-17T06:45:01.1801708Z and 2025-07-17T06:45:01.1801992Z [ 2025-07-17T06:45:01.1802340Z _Ty=unsigned long 2025-07-17T06:45:01.1803030Z ] 2025-07-17T06:45:01.1804184Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\numeric(37): note: the template instantiation context (the oldest one first) is 2025-07-17T06:45:01.2220467Z C:\actions-runner\_work\pytorch\pytorch\third_party\kineto\libkineto\src\EventProfiler.cpp(67): note: see reference to function template instantiation '_Ty std::accumulate>,std::vector>>>>>,unsigned long,libkineto::Event::sumInstance::>(const _InIt,const _InIt,_Ty,_Fn)' being compiled 2025-07-17T06:45:01.2224668Z with 2025-07-17T06:45:01.2224992Z [ 2025-07-17T06:45:01.2225317Z _Ty=unsigned long, 2025-07-17T06:45:01.2226788Z _InIt=std::_List_const_iterator>>, 2025-07-17T06:45:01.2228069Z _Fn=libkineto::Event::sumInstance:: 2025-07-17T06:45:01.2229347Z ] 2025-07-17T06:45:01.2230275Z [1947/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DaemonConfigLoader.cpp.obj 2025-07-17T06:45:01.3918375Z [1948/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityType.cpp.obj 2025-07-17T06:45:01.4350190Z [1949/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerProxy.cpp.obj 2025-07-17T06:45:01.4842084Z [1950/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ActivityProfilerController.cpp.obj 2025-07-17T06:45:01.5129007Z [1951/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\CuptiActivityProfiler.cpp.obj 2025-07-17T06:45:01.5192479Z [1952/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ConfigLoader.cpp.obj 2025-07-17T06:45:01.5526244Z [1953/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Config.cpp.obj 2025-07-17T06:45:01.5645194Z [1954/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\IpcFabricConfigClient.cpp.obj 2025-07-17T06:45:01.7488941Z [1955/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceProperties.cpp.obj 2025-07-17T06:45:01.7572619Z [1956/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\DeviceUtil.cpp.obj 2025-07-17T06:45:01.7670287Z [1957/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\GenericTraceActivity.cpp.obj 2025-07-17T06:45:01.7873962Z [1958/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\LoggingAPI.cpp.obj 2025-07-17T06:45:01.8158656Z [1959/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\ILoggerObserver.cpp.obj 2025-07-17T06:45:01.8415888Z [1960/7682] Linking CXX static library lib\mimalloc.lib 2025-07-17T06:45:01.8544192Z [1961/7682] Building CXX object c10\CMakeFiles\c10.dir\core\AutogradState.cpp.obj 2025-07-17T06:45:01.8932393Z [1962/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\Logger.cpp.obj 2025-07-17T06:45:01.9680757Z [1963/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_csv.cpp.obj 2025-07-17T06:45:02.1555200Z [1964/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\output_json.cpp.obj 2025-07-17T06:45:02.1970712Z [1965/7682] Building CXX object third_party\kineto\libkineto\CMakeFiles\kineto_base.dir\src\init.cpp.obj 2025-07-17T06:45:03.1329861Z [1966/7682] Building CXX object c10\CMakeFiles\c10.dir\core\Allocator.cpp.obj 2025-07-17T06:45:03.1831958Z [1967/7682] Building CXX object c10\CMakeFiles\c10.dir\core\ConstantSymNodeImpl.cpp.obj 2025-07-17T06:45:03.2327818Z [1968/7682] Building CXX object c10\CMakeFiles\c10.dir\core\CachingDeviceAllocator.cpp.obj 2025-07-17T06:45:03.6072253Z [1969/7682] Building CXX object c10\CMakeFiles\c10.dir\core\CopyBytes.cpp.obj 2025-07-17T06:45:03.6572362Z [1970/7682] Building CXX object c10\CMakeFiles\c10.dir\core\Device.cpp.obj 2025-07-17T06:45:03.7119439Z [1971/7682] Building CXX object c10\CMakeFiles\c10.dir\core\GradMode.cpp.obj 2025-07-17T06:45:03.7490244Z [1972/7682] Building CXX object c10\CMakeFiles\c10.dir\core\DeviceType.cpp.obj 2025-07-17T06:45:03.9787739Z [1973/7682] Building CXX object c10\CMakeFiles\c10.dir\core\DefaultDtype.cpp.obj 2025-07-17T06:45:04.3128574Z [1974/7682] Building CXX object c10\CMakeFiles\c10.dir\core\CPUAllocator.cpp.obj 2025-07-17T06:45:04.8155173Z [1975/7682] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKeySet.cpp.obj 2025-07-17T06:45:05.1513218Z [1976/7682] Building CXX object c10\CMakeFiles\c10.dir\core\InferenceMode.cpp.obj 2025-07-17T06:45:05.5277290Z [1977/7682] Building CXX object c10\CMakeFiles\c10.dir\core\SafePyObject.cpp.obj 2025-07-17T06:45:05.8093877Z [1978/7682] Building CXX object c10\CMakeFiles\c10.dir\core\RefcountedDeleter.cpp.obj 2025-07-17T06:45:06.1640340Z [1979/7682] Building CXX object c10\CMakeFiles\c10.dir\core\DispatchKey.cpp.obj 2025-07-17T06:45:06.2981418Z [1980/7682] Building CXX object c10\CMakeFiles\c10.dir\core\GeneratorImpl.cpp.obj 2025-07-17T06:45:06.3722815Z [1981/7682] Building CXX object c10\CMakeFiles\c10.dir\core\ScalarType.cpp.obj 2025-07-17T06:45:07.0566406Z [1982/7682] Building CXX object c10\CMakeFiles\c10.dir\core\Scalar.cpp.obj 2025-07-17T06:45:07.4544374Z [1983/7682] Building CXX object c10\CMakeFiles\c10.dir\core\Stream.cpp.obj 2025-07-17T06:45:07.5134510Z [1984/7682] Building CXX object c10\CMakeFiles\c10.dir\core\Storage.cpp.obj 2025-07-17T06:45:07.6486398Z [1985/7682] Building CXX object c10\CMakeFiles\c10.dir\core\SymBool.cpp.obj 2025-07-17T06:45:07.9465959Z [1986/7682] Building CXX object c10\CMakeFiles\c10.dir\core\StorageImpl.cpp.obj 2025-07-17T06:45:07.9779065Z [1987/7682] Building CXX object c10\CMakeFiles\c10.dir\core\SymFloat.cpp.obj 2025-07-17T06:45:08.2417538Z [1988/7682] Building CXX object c10\CMakeFiles\c10.dir\core\SymIntArrayRef.cpp.obj 2025-07-17T06:45:08.7127238Z [1989/7682] Building CXX object c10\CMakeFiles\c10.dir\core\SymInt.cpp.obj 2025-07-17T06:45:08.7716119Z [1990/7682] Building CXX object c10\CMakeFiles\c10.dir\core\SymNodeImpl.cpp.obj 2025-07-17T06:45:09.6224990Z [1991/7682] Building CXX object c10\CMakeFiles\c10.dir\core\WrapDimMinimal.cpp.obj 2025-07-17T06:45:09.6927270Z [1992/7682] Building CXX object c10\CMakeFiles\c10.dir\core\SymbolicShapeMeta.cpp.obj 2025-07-17T06:45:09.9136882Z [1993/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\HermeticPyObjectTLS.cpp.obj 2025-07-17T06:45:10.0981674Z [1994/7682] Building CXX object c10\CMakeFiles\c10.dir\core\TensorOptions.cpp.obj 2025-07-17T06:45:10.1366373Z [1995/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COWDeleter.cpp.obj 2025-07-17T06:45:10.5016800Z [1996/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\DeviceGuardImplInterface.cpp.obj 2025-07-17T06:45:10.5845680Z [1997/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\COW.cpp.obj 2025-07-17T06:45:11.0278886Z [1998/7682] Building CXX object c10\CMakeFiles\c10.dir\core\UndefinedTensorImpl.cpp.obj 2025-07-17T06:45:11.6417818Z [1999/7682] Building CXX object c10\CMakeFiles\c10.dir\core\TensorImpl.cpp.obj 2025-07-17T06:45:11.9434822Z [2000/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\LocalDispatchKeySet.cpp.obj 2025-07-17T06:45:11.9895695Z [2001/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\GPUTrace.cpp.obj 2025-07-17T06:45:12.4383565Z [2002/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\SizesAndStrides.cpp.obj 2025-07-17T06:45:12.5113535Z [2003/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyObjectSlot.cpp.obj 2025-07-17T06:45:12.7790836Z C:\actions-runner\_work\pytorch\pytorch\c10\core\impl\PyObjectSlot.cpp(58): warning C4805: '|': unsafe mix of type 'uintptr_t' and type 'bool' in operation 2025-07-17T06:45:12.7795036Z [2004/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PythonDispatcherTLS.cpp.obj 2025-07-17T06:45:12.9326663Z [2005/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\TorchDispatchModeTLS.cpp.obj 2025-07-17T06:45:13.3174380Z [2006/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\PyInterpreter.cpp.obj 2025-07-17T06:45:13.8351173Z [2007/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Bfloat16.cpp.obj 2025-07-17T06:45:13.9276662Z [2008/7682] Building CXX object c10\CMakeFiles\c10.dir\util\C++17.cpp.obj 2025-07-17T06:45:13.9496193Z [2009/7682] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUCachingAllocator.cpp.obj 2025-07-17T06:45:13.9786058Z [2010/7682] Building CXX object c10\CMakeFiles\c10.dir\core\impl\alloc_cpu.cpp.obj 2025-07-17T06:45:14.4271096Z [2011/7682] Building CXX object c10\CMakeFiles\c10.dir\core\thread_pool.cpp.obj 2025-07-17T06:45:14.7384668Z [2012/7682] Building CXX object c10\CMakeFiles\c10.dir\mobile\CPUProfilingAllocator.cpp.obj 2025-07-17T06:45:14.8933732Z [2013/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fn.cpp.obj 2025-07-17T06:45:15.1792844Z [2014/7682] Building CXX object c10\CMakeFiles\c10.dir\util\DynamicCounter.cpp.obj 2025-07-17T06:45:15.2018359Z [2015/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Backtrace.cpp.obj 2025-07-17T06:45:15.2560439Z [2016/7682] Building CXX object c10\CMakeFiles\c10.dir\util\DeadlockDetection.cpp.obj 2025-07-17T06:45:15.2623265Z [2017/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e4m3fnuz.cpp.obj 2025-07-17T06:45:15.3267063Z [2018/7682] Building CXX object c10\CMakeFiles\c10.dir\util\ApproximateClock.cpp.obj 2025-07-17T06:45:15.6852629Z [2019/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2.cpp.obj 2025-07-17T06:45:15.8318951Z [2020/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Exception.cpp.obj 2025-07-17T06:45:15.8749784Z [2021/7682] Building CXX object c10\CMakeFiles\c10.dir\util\LeftRight.cpp.obj 2025-07-17T06:45:15.9152123Z [2022/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e8m0fnu.cpp.obj 2025-07-17T06:45:15.9745832Z [2023/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Float8_e5m2fnuz.cpp.obj 2025-07-17T06:45:16.0422084Z [2024/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Half.cpp.obj 2025-07-17T06:45:16.0543051Z [2025/7682] Building CXX object c10\CMakeFiles\c10.dir\util\ParallelGuard.cpp.obj 2025-07-17T06:45:16.1215829Z [2026/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Optional.cpp.obj 2025-07-17T06:45:16.2789302Z [2027/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Metaprogramming.cpp.obj 2025-07-17T06:45:16.5233682Z [2028/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Gauge.cpp.obj 2025-07-17T06:45:16.5355801Z [2029/7682] Building CXX object c10\CMakeFiles\c10.dir\util\MathConstants.cpp.obj 2025-07-17T06:45:16.8866346Z [2030/7682] Building CXX object c10\CMakeFiles\c10.dir\util\TypeTraits.cpp.obj 2025-07-17T06:45:16.9507330Z [2031/7682] Building CXX object c10\CMakeFiles\c10.dir\util\TypeList.cpp.obj 2025-07-17T06:45:16.9564861Z [2032/7682] Building CXX object c10\CMakeFiles\c10.dir\util\SmallVector.cpp.obj 2025-07-17T06:45:17.4239323Z [2033/7682] Building CXX object c10\CMakeFiles\c10.dir\util\ThreadLocalDebugInfo.cpp.obj 2025-07-17T06:45:17.4436646Z [2034/7682] Building CXX object c10\CMakeFiles\c10.dir\util\TypeCast.cpp.obj 2025-07-17T06:45:17.5237082Z [2035/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Type_demangle.cpp.obj 2025-07-17T06:45:17.6910656Z [2036/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Logging.cpp.obj 2025-07-17T06:45:17.7672896Z [2037/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Type_no_demangle.cpp.obj 2025-07-17T06:45:17.7695396Z [2038/7682] Building CXX object c10\CMakeFiles\c10.dir\util\StringUtil.cpp.obj 2025-07-17T06:45:17.8506673Z [2039/7682] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_gflags.cpp.obj 2025-07-17T06:45:17.9236430Z [2040/7682] Building CXX object c10\CMakeFiles\c10.dir\util\UniqueVoidPtr.cpp.obj 2025-07-17T06:45:17.9497084Z [2041/7682] Building CXX object c10\CMakeFiles\c10.dir\util\NetworkFlow.cpp.obj 2025-07-17T06:45:18.2325472Z [2042/7682] Building CXX object c10\CMakeFiles\c10.dir\util\error.cpp.obj 2025-07-17T06:45:18.4367751Z [2043/7682] Building CXX object c10\CMakeFiles\c10.dir\util\complex_math.cpp.obj 2025-07-17T06:45:18.7446339Z [2044/7682] Building CXX object c10\CMakeFiles\c10.dir\util\Unicode.cpp.obj 2025-07-17T06:45:18.8387358Z [2045/7682] Building CXX object c10\CMakeFiles\c10.dir\util\WaitCounter.cpp.obj 2025-07-17T06:45:19.2153980Z [2046/7682] Building CXX object c10\CMakeFiles\c10.dir\util\intrusive_ptr.cpp.obj 2025-07-17T06:45:19.4085483Z [2047/7682] Building CXX object c10\CMakeFiles\c10.dir\util\flags_use_no_gflags.cpp.obj 2025-07-17T06:45:19.4315668Z [2048/7682] Building CXX object c10\CMakeFiles\c10.dir\util\int128.cpp.obj 2025-07-17T06:45:19.5250791Z [2049/7682] Building CXX object c10\CMakeFiles\c10.dir\util\thread_name.cpp.obj 2025-07-17T06:45:19.5951575Z [2050/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimdsp.c.obj 2025-07-17T06:45:19.8460610Z [2051/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx512fnofma.dir\sleefsimddp.c.obj 2025-07-17T06:45:19.9864010Z [2052/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.0338903Z [2053/7682] Building CXX object c10\CMakeFiles\c10.dir\util\numa.cpp.obj 2025-07-17T06:45:20.0941752Z [2054/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512fnofma.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.2129170Z [2055/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.2228021Z [2056/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx512f.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.2549626Z [2057/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.3618250Z [2058/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx512f.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.3681251Z [2059/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.4356148Z [2060/7682] Building CXX object c10\CMakeFiles\c10.dir\util\signal_handler.cpp.obj 2025-07-17T06:45:20.4680710Z [2061/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx2.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.5043723Z [2062/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.5398514Z [2063/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.5497717Z [2064/7682] Building CXX object c10\CMakeFiles\c10.dir\util\env.cpp.obj 2025-07-17T06:45:20.5715657Z [2065/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.6143507Z [2066/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx2128.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.6397753Z [2067/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.6970379Z [2068/7682] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.7104808Z [2069/7682] Building C object sleef\src\libm\CMakeFiles\sleeffma4.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.7302028Z [2070/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx2128.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.7419989Z [2071/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.7798240Z [2072/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetfma4.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.8503191Z [2073/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.8559550Z [2074/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.8572028Z [2075/7682] Building C object sleef\src\libm\CMakeFiles\sleefavx.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.8889612Z [2076/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetavx.dir\sleefsimddp.c.obj 2025-07-17T06:45:20.9354964Z [2077/7682] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimdsp.c.obj 2025-07-17T06:45:20.9737351Z [2078/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.0295591Z [2079/7682] Building C object sleef\src\libm\CMakeFiles\sleefsse4.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.0346721Z [2080/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetsse4.dir\sleefsimdsp.c.obj 2025-07-17T06:45:21.0469614Z [2081/7682] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimdsp.c.obj 2025-07-17T06:45:21.0869331Z [2082/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimdsp.c.obj 2025-07-17T06:45:21.1029780Z [2083/7682] Building C object sleef\src\libm\CMakeFiles\sleefsse2.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.1787750Z [2084/7682] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimdsp.c.obj 2025-07-17T06:45:21.1805712Z [2085/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetsse2.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.1878249Z [2086/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimdsp.c.obj 2025-07-17T06:45:21.2091359Z [2087/7682] Building C object sleef\src\libm\CMakeFiles\sleefpurec_scalar.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.2945749Z [2088/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-07-17T06:45:21.2957957Z [2089/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetpurec_scalar.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.3171955Z [2090/7682] Building CXX object c10\CMakeFiles\c10.dir\util\tempfile.cpp.obj 2025-07-17T06:45:21.3290995Z [2091/7682] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.3458138Z [2092/7682] Building C object sleef\src\libm\CMakeFiles\sleefpurecfma_scalar.dir\sleefsimdsp.c.obj 2025-07-17T06:45:21.3662627Z [2093/7682] Building C object sleef\src\libm\CMakeFiles\sleefdetpurecfma_scalar.dir\sleefsimddp.c.obj 2025-07-17T06:45:21.4083588Z [2094/7682] Building C object sleef\src\libm\CMakeFiles\sleef.dir\rempitab.c.obj 2025-07-17T06:45:21.4154343Z [2095/7682] Building C object sleef\src\libm\CMakeFiles\dispscalar_obj.dir\dispscalar.c.obj 2025-07-17T06:45:21.4307657Z [2096/7682] Building C object sleef\src\libm\CMakeFiles\dispsse_obj.dir\dispsse.c.obj 2025-07-17T06:45:21.4420375Z [2097/7682] Building C object sleef\src\libm\CMakeFiles\dispavx_obj.dir\dispavx.c.obj 2025-07-17T06:45:21.4821963Z [2098/7682] Linking C static library lib\libittnotify.lib 2025-07-17T06:45:21.4873934Z [2099/7682] Linking CXX static library lib\XNNPACK.lib 2025-07-17T06:45:21.4986181Z [2100/7682] Building C object sleef\src\common\CMakeFiles\common.dir\common.c.obj 2025-07-17T06:45:21.6144269Z [2101/7682] Linking CXX static library lib\gloo.lib 2025-07-17T06:45:21.7360135Z [2102/7682] Building CXX object c10\CMakeFiles\c10.dir\util\typeid.cpp.obj 2025-07-17T06:45:21.9766334Z [2103/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_bcube.cc.obj 2025-07-17T06:45:21.9768466Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-07-17T06:45:21.9770891Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-07-17T06:45:21.9773652Z 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-07-17T06:45:21.9776555Z 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-07-17T06:45:21.9779192Z 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-07-17T06:45:21.9780228Z with 2025-07-17T06:45:21.9780407Z [ 2025-07-17T06:45:21.9780587Z _Ty=gloo::cuda::bcube::Node 2025-07-17T06:45:21.9780843Z ] 2025-07-17T06:45:21.9781850Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(int &,const size_t &)' being compiled 2025-07-17T06:45:21.9782933Z with 2025-07-17T06:45:21.9783098Z [ 2025-07-17T06:45:21.9783281Z _Ty=gloo::cuda::bcube::Node 2025-07-17T06:45:21.9783528Z ] 2025-07-17T06:45:21.9784580Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): 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-07-17T06:45:21.9785829Z with 2025-07-17T06:45:21.9785996Z [ 2025-07-17T06:45:21.9786182Z _Ty=gloo::cuda::bcube::Node 2025-07-17T06:45:21.9786425Z ] 2025-07-17T06:45:21.9933707Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(798): 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-07-17T06:45:21.9936301Z with 2025-07-17T06:45:21.9936607Z [ 2025-07-17T06:45:21.9937009Z _Alloc=std::allocator, 2025-07-17T06:45:21.9937582Z _Ty=gloo::cuda::bcube::Node, 2025-07-17T06:45:21.9938142Z _Objty=gloo::cuda::bcube::Node 2025-07-17T06:45:21.9938587Z ] 2025-07-17T06:45:21.9939319Z [2104/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_local.cc.obj 2025-07-17T06:45:22.0053561Z [2105/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_halving_doubling.cc.obj 2025-07-17T06:45:22.0853540Z [2106/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring.cc.obj 2025-07-17T06:45:22.1887084Z [2107/7682] Linking CXX shared library bin\fbgemm.dll 2025-07-17T06:45:22.2487753Z [2108/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_allreduce_ring_chunked.cc.obj 2025-07-17T06:45:22.4019344Z [2109/7682] Building CXX object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_broadcast_one_to_all.cc.obj 2025-07-17T06:45:24.7634586Z [2110/7682] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda.cu.obj 2025-07-17T06:45:24.7701423Z cuda.cu 2025-07-17T06:45:24.7701844Z tmpxft_00001210_00000000-7_cuda.cudafe1.cpp 2025-07-17T06:45:24.7702491Z [2111/7682] Linking CXX static library lib\kineto.lib 2025-07-17T06:45:24.7740081Z [2112/7682] Linking CXX static library lib\onnx.lib 2025-07-17T06:45:25.1685545Z [2113/7682] Linking CXX shared library bin\c10.dll 2025-07-17T06:45:25.3173385Z [2114/7682] Building CUDA object third_party\gloo\gloo\CMakeFiles\gloo_cuda.dir\cuda_private.cu.obj 2025-07-17T06:45:26.1228885Z cuda_private.cu 2025-07-17T06:45:26.1229946Z tmpxft_000015c0_00000000-7_cuda_private.cudafe1.cpp 2025-07-17T06:45:26.1230996Z [2115/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAException.cpp.obj 2025-07-17T06:45:26.7610685Z [2116/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAAllocatorConfig.cpp.obj 2025-07-17T06:45:26.7638250Z [2117/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMiscFunctions.cpp.obj 2025-07-17T06:45:26.8579304Z [2118/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDADeviceAssertionHost.cpp.obj 2025-07-17T06:45:26.8766181Z [2119/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAFunctions.cpp.obj 2025-07-17T06:45:26.9330485Z [2120/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\driver_api.cpp.obj 2025-07-17T06:45:27.6334194Z [2121/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAMallocAsyncAllocator.cpp.obj 2025-07-17T06:45:28.0189375Z [2122/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDATest.cpp.obj 2025-07-17T06:45:28.4188296Z [2123/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\impl\CUDAGuardImpl.cpp.obj 2025-07-17T06:45:28.4931556Z [2124/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDAStream.cpp.obj 2025-07-17T06:45:28.7087156Z [2125/7682] Generating C:/actions-runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-07-17T06:45:31.5881468Z [2126/7682] Regenerating version file... 2025-07-17T06:45:32.0317550Z [2127/7682] Building CXX object c10\cuda\CMakeFiles\c10_cuda.dir\CUDACachingAllocator.cpp.obj 2025-07-17T06:45:34.8326455Z [2128/7682] Linking C static library sleef\lib\sleef.lib 2025-07-17T06:45:37.9943172Z [2129/7682] Generating C:/actions-runner/_work/pytorch/pytorch/torch/_C/__init__.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/_C/_VariableFunctions.pyi, C:/actions-runner/_work/pytorch/pytorch/torch/nn/functional.pyi 2025-07-17T06:45:38.2809070Z [2130/7682] Linking CXX static library lib\gloo_cuda.lib 2025-07-17T06:45:38.9332978Z [2131/7682] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\__\googletest\src\gtest-all.cc.obj 2025-07-17T06:45:41.6165908Z [2132/7682] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock.dir\src\gmock-all.cc.obj 2025-07-17T06:45:41.6226440Z [2133/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark.cc.obj 2025-07-17T06:45:41.6363686Z [2134/7682] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest.dir\src\gtest-all.cc.obj 2025-07-17T06:45:42.8926825Z [2135/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_name.cc.obj 2025-07-17T06:45:42.9013036Z [2136/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_api_internal.cc.obj 2025-07-17T06:45:42.9023601Z [2137/7682] Linking CXX shared library bin\c10_cuda.dll 2025-07-17T06:45:42.9092645Z [2138/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_register.cc.obj 2025-07-17T06:45:43.1239233Z [2139/7682] Generating C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, C:/actions-runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, C:/actions-runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-07-17T06:45:44.3717651Z [2140/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\check.cc.obj 2025-07-17T06:45:44.3734814Z [2141/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\commandlineflags.cc.obj 2025-07-17T06:45:44.3852702Z [2142/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\benchmark_runner.cc.obj 2025-07-17T06:45:44.3872122Z [2143/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\colorprint.cc.obj 2025-07-17T06:45:44.3884896Z [2144/7682] Linking CXX static library lib\gtest.lib 2025-07-17T06:45:44.4234541Z [2145/7682] Linking CXX static library lib\dnnl.lib 2025-07-17T06:45:44.5732556Z [2146/7682] Building CXX object third_party\googletest\googletest\CMakeFiles\gtest_main.dir\src\gtest_main.cc.obj 2025-07-17T06:45:45.6505733Z [2147/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\AccumulateType.cpp.obj 2025-07-17T06:45:45.7614507Z [2148/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Dispatch.cpp.obj 2025-07-17T06:45:46.8479733Z [2149/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DeviceAccelerator.cpp.obj 2025-07-17T06:45:47.7567603Z [2150/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Context.cpp.obj 2025-07-17T06:45:48.2606288Z [2151/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FuncTorchTLS.cpp.obj 2025-07-17T06:45:48.3107057Z [2152/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CPUGeneratorImpl.cpp.obj 2025-07-17T06:45:48.7150766Z [2153/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\EmptyTensor.cpp.obj 2025-07-17T06:45:50.0373031Z [2154/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DynamicLibrary.cpp.obj 2025-07-17T06:45:53.9469533Z [2155/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ConjugateFallback.cpp.obj 2025-07-17T06:45:54.7834358Z [2156/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ExpandUtils.cpp.obj 2025-07-17T06:45:58.6601089Z [2157/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalStorageImpl.cpp.obj 2025-07-17T06:46:00.1194926Z [2158/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalTensorWrapper.cpp.obj 2025-07-17T06:46:02.7336911Z [2159/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\DLConvertor.cpp.obj 2025-07-17T06:46:02.7597687Z [2160/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapMode.cpp.obj 2025-07-17T06:46:02.8890308Z [2161/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CachedTensorUtils.cpp.obj 2025-07-17T06:46:05.1369203Z [2162/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MemoryOverlap.cpp.obj 2025-07-17T06:46:05.9709741Z [2163/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalizeFallbackKernel.cpp.obj 2025-07-17T06:46:06.3596505Z [2164/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\MapAllocator.cpp.obj 2025-07-17T06:46:07.2569167Z [2165/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedTensorImpl.cpp.obj 2025-07-17T06:46:07.3561019Z [2166/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelNative.cpp.obj 2025-07-17T06:46:10.3668193Z [2167/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelCommon.cpp.obj 2025-07-17T06:46:10.7285638Z [2168/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\FunctionalInverses.cpp.obj 2025-07-17T06:46:12.6675312Z [2169/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\PythonTorchFunctionTLS.cpp.obj 2025-07-17T06:46:14.4625930Z [2170/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NamedTensorUtils.cpp.obj 2025-07-17T06:46:15.1966705Z [2171/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SavedTensorHooks.cpp.obj 2025-07-17T06:46:15.3732759Z [2172/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SequenceNumber.cpp.obj 2025-07-17T06:46:15.8066056Z [2173/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelOpenMP.cpp.obj 2025-07-17T06:46:19.8624656Z [2174/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ParallelThreadPoolNative.cpp.obj 2025-07-17T06:46:20.2348530Z [2175/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchedFallback.cpp.obj 2025-07-17T06:46:23.5033115Z [2176/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorGeometry.cpp.obj 2025-07-17T06:46:24.3640701Z [2177/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyVmapTransforms.cpp.obj 2025-07-17T06:46:24.5907194Z [2178/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\LegacyBatchingRegistrations.cpp.obj 2025-07-17T06:46:26.3654526Z [2179/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorMeta.cpp.obj 2025-07-17T06:46:28.6561099Z [2180/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ScalarOps.cpp.obj 2025-07-17T06:46:30.3668270Z [2181/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\NestedTensorImpl.cpp.obj 2025-07-17T06:46:33.4414558Z [2182/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIndexing.cpp.obj 2025-07-17T06:46:34.7014490Z [2183/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorIterator.cpp.obj 2025-07-17T06:46:35.7620696Z [2184/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalPythonObjects.cpp.obj 2025-07-17T06:46:35.9080979Z [2185/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseCsrTensorImpl.cpp.obj 2025-07-17T06:46:37.1909838Z [2186/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorNames.cpp.obj 2025-07-17T06:46:39.1601452Z [2187/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\StorageUtils.cpp.obj 2025-07-17T06:46:42.0826746Z [2188/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Version.cpp.obj 2025-07-17T06:46:42.2494914Z [2189/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\FlushDenormal.cpp.obj 2025-07-17T06:46:42.3481903Z [2190/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\cpu\Utils.cpp.obj 2025-07-17T06:46:42.4017094Z [2191/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\SparseTensorImpl.cpp.obj 2025-07-17T06:46:43.4911664Z [2192/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CPUGuardImpl.cpp.obj 2025-07-17T06:46:45.0598275Z [2193/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\CUDAHooksInterface.cpp.obj 2025-07-17T06:46:46.8447115Z [2194/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HIPHooksInterface.cpp.obj 2025-07-17T06:46:46.8508901Z [2195/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\VmapModeRegistrations.cpp.obj 2025-07-17T06:46:48.6127238Z [2196/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\HPUHooksInterface.cpp.obj 2025-07-17T06:46:49.2224106Z [2197/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Utils.cpp.obj 2025-07-17T06:46:50.6602526Z [2198/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MAIAHooksInterface.cpp.obj 2025-07-17T06:46:50.7795003Z [2199/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\IPUHooksInterface.cpp.obj 2025-07-17T06:46:51.0552728Z [2200/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\TensorUtils.cpp.obj 2025-07-17T06:46:51.3395199Z [2201/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MPSHooksInterface.cpp.obj 2025-07-17T06:46:51.8050226Z [2202/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MTIAHooksInterface.cpp.obj 2025-07-17T06:46:51.8797006Z [2203/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\MetaGuardImpl.cpp.obj 2025-07-17T06:46:52.7308065Z [2204/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\PrivateUse1HooksInterface.cpp.obj 2025-07-17T06:46:53.3374646Z [2205/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\detail\XPUHooksInterface.cpp.obj 2025-07-17T06:46:57.8955318Z [2206/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ThreadLocalState.cpp.obj 2025-07-17T06:46:59.0076716Z [2207/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\ZeroTensorFallback.cpp.obj 2025-07-17T06:47:03.2592365Z [2208/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\ADInterpreters.cpp.obj 2025-07-17T06:47:06.5778561Z [2209/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\autocast_mode.cpp.obj 2025-07-17T06:47:24.6437338Z [2210/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesActivation.cpp.obj 2025-07-17T06:47:25.4212829Z [2211/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesBinaryOps.cpp.obj 2025-07-17T06:47:30.3799681Z [2212/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesConvolution.cpp.obj 2025-07-17T06:47:30.6888024Z [2213/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesFactory.cpp.obj 2025-07-17T06:47:31.0537804Z [2214/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDynamic.cpp.obj 2025-07-17T06:47:31.9693837Z [2215/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesHelper.cpp.obj 2025-07-17T06:47:33.5658229Z [2216/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesDecompositions.cpp.obj 2025-07-17T06:47:35.0911682Z [2217/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesIndexing.cpp.obj 2025-07-17T06:47:54.4217363Z [2218/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLoss.cpp.obj 2025-07-17T06:47:58.4975445Z [2219/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesPooling.cpp.obj 2025-07-17T06:48:00.9524363Z [2220/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesNorm.cpp.obj 2025-07-17T06:48:03.8108153Z [2221/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesModules.cpp.obj 2025-07-17T06:48:04.1139946Z [2222/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesRandomness.cpp.obj 2025-07-17T06:48:05.5124423Z [2223/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesReduceOps.cpp.obj 2025-07-17T06:48:05.6069838Z [2224/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesLinearAlgebra.cpp.obj 2025-07-17T06:48:05.8614985Z [2225/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesScatterOps.cpp.obj 2025-07-17T06:48:10.6835478Z [2226/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedTensorImpl.cpp.obj 2025-07-17T06:48:15.5520244Z [2227/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\FunctionalizeInterpreter.cpp.obj 2025-07-17T06:48:15.5595493Z [2228/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\Interpreter.cpp.obj 2025-07-17T06:48:26.0716042Z [2229/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchedFallback.cpp.obj 2025-07-17T06:48:26.1329095Z [2230/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PlumbingHelper.cpp.obj 2025-07-17T06:48:31.3550479Z [2231/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\DynamicLayer.cpp.obj 2025-07-17T06:48:33.1247989Z [2232/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesUnaryOps.cpp.obj 2025-07-17T06:48:34.6881470Z [2233/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\BatchRulesViews.cpp.obj 2025-07-17T06:48:34.8025065Z [2234/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenGeneral.cpp.obj 2025-07-17T06:48:36.9252845Z [2235/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyVmapTransforms.cpp.obj 2025-07-17T06:48:36.9654434Z [2236/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\LegacyBatchingRegistrations.cpp.obj 2025-07-17T06:48:38.3308755Z [2237/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\CachingHostAllocator.cpp.obj 2025-07-17T06:48:42.4284294Z [2238/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypeProperties.cpp.obj 2025-07-17T06:48:42.5417585Z [2239/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapInterpreter.cpp.obj 2025-07-17T06:48:43.1928118Z [2240/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\TensorWrapper.cpp.obj 2025-07-17T06:48:43.8444681Z [2241/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\DeprecatedTypePropertiesRegistry.cpp.obj 2025-07-17T06:48:44.2535868Z [2242/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dimname.cpp.obj 2025-07-17T06:48:45.1822717Z [2243/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\record_function.cpp.obj 2025-07-17T06:48:47.0289372Z [2244/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\BackendSelectFallbackKernel.cpp.obj 2025-07-17T06:48:47.0718639Z [2245/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\GeneratorForPrivateuseone.cpp.obj 2025-07-17T06:48:49.3960776Z [2246/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\PyTorchOperatorHacks.cpp.obj 2025-07-17T06:48:49.6861899Z [2247/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Generator.cpp.obj 2025-07-17T06:48:51.2415036Z [2248/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Dict.cpp.obj 2025-07-17T06:48:51.6516294Z [2249/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Formatting.cpp.obj 2025-07-17T06:48:52.0559190Z [2250/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NestedIntSymNodeImpl.cpp.obj 2025-07-17T06:48:52.6316598Z [2251/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedTensor.cpp.obj 2025-07-17T06:48:53.0148586Z [2252/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Range.cpp.obj 2025-07-17T06:48:54.4339056Z [2253/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\List.cpp.obj 2025-07-17T06:48:58.0465342Z [2254/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\MetaFallbackKernel.cpp.obj 2025-07-17T06:49:02.7054827Z [2255/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\NamedRegistrations.cpp.obj 2025-07-17T06:49:03.9153983Z [2256/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonFallbackKernel.cpp.obj 2025-07-17T06:49:04.4003331Z [2257/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\PythonOpRegistrationTrampoline.cpp.obj 2025-07-17T06:49:04.6805298Z [2258/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\functorch\VmapModeRegistrations.cpp.obj 2025-07-17T06:49:05.2858746Z [2259/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Vitals.cpp.obj 2025-07-17T06:49:05.7467390Z [2260/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TorchDispatchUtils.cpp.obj 2025-07-17T06:49:06.6910889Z [2261/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\blob.cpp.obj 2025-07-17T06:49:06.7457028Z [2262/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\Tensor.cpp.obj 2025-07-17T06:49:07.2893862Z [2263/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableHooksInterface.cpp.obj 2025-07-17T06:49:08.9581366Z [2264/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\ObservedOperators.cpp.obj 2025-07-17T06:49:09.9558890Z [2265/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\VariableFallbackKernel.cpp.obj 2025-07-17T06:49:13.4580395Z [2266/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\adaption.cpp.obj 2025-07-17T06:49:14.2801356Z [2267/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\boxing\KernelFunction.cpp.obj 2025-07-17T06:49:17.2387031Z [2268/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\DispatchKeyExtractor.cpp.obj 2025-07-17T06:49:17.5296901Z [2269/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\class_type.cpp.obj 2025-07-17T06:49:17.9633557Z [2270/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\custom_class.cpp.obj 2025-07-17T06:49:20.4839104Z [2271/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\Dispatcher.cpp.obj 2025-07-17T06:49:23.0734788Z [2272/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dispatch\OperatorEntry.cpp.obj 2025-07-17T06:49:24.5473179Z [2273/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\operator_name.cpp.obj 2025-07-17T06:49:25.0418265Z [2274/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\dynamic_type.cpp.obj 2025-07-17T06:49:26.4445306Z [2275/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\function_schema.cpp.obj 2025-07-17T06:49:27.6991212Z [2276/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\register_symbols.cpp.obj 2025-07-17T06:49:30.3560648Z [2277/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\library.cpp.obj 2025-07-17T06:49:30.4054756Z [2278/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ivalue.cpp.obj 2025-07-17T06:49:32.7973704Z [2279/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\infer_schema.cpp.obj 2025-07-17T06:49:33.3714191Z [2280/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\op_registration\op_registration.cpp.obj 2025-07-17T06:49:33.8831228Z [2281/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\error_report.cpp.obj 2025-07-17T06:49:34.6082288Z [2282/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\tensor_type.cpp.obj 2025-07-17T06:49:35.5127741Z [2283/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\strtod.cpp.obj 2025-07-17T06:49:36.7000757Z [2284/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\lexer.cpp.obj 2025-07-17T06:49:38.3803635Z [2285/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type_factory.cpp.obj 2025-07-17T06:49:41.0907862Z [2286/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\type.cpp.obj 2025-07-17T06:49:41.1851401Z [2287/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\union_type.cpp.obj 2025-07-17T06:49:41.4264193Z [2288/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\interned_strings.cpp.obj 2025-07-17T06:49:44.4990188Z [2289/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\function_schema_parser.cpp.obj 2025-07-17T06:49:46.1630029Z [2290/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_type_parser.cpp.obj 2025-07-17T06:49:46.9055253Z [2291/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\source_range.cpp.obj 2025-07-17T06:49:48.3370790Z [2292/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling2d.cpp.obj 2025-07-17T06:49:48.6982320Z [2293/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveMaxPooling3d.cpp.obj 2025-07-17T06:49:51.6948054Z [2294/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling.cpp.obj 2025-07-17T06:49:53.0983531Z [2295/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AdaptiveAveragePooling3d.cpp.obj 2025-07-17T06:49:54.0341795Z [2296/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AffineGridGenerator.cpp.obj 2025-07-17T06:49:54.5008613Z [2297/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Activation.cpp.obj 2025-07-17T06:49:58.0783966Z [2298/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AmpKernels.cpp.obj 2025-07-17T06:49:59.4515666Z [2299/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AutogradComposite.cpp.obj 2025-07-17T06:50:00.0933009Z [2300/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool2d.cpp.obj 2025-07-17T06:50:01.2129464Z [2301/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\AveragePool3d.cpp.obj 2025-07-17T06:50:02.8223473Z [2302/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BlasKernel.cpp.obj 2025-07-17T06:50:05.8404988Z [2303/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebraKernel.cpp.obj 2025-07-17T06:50:06.7972586Z [2304/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BatchLinearAlgebra.cpp.obj 2025-07-17T06:50:08.1871967Z [2305/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\BinaryOps.cpp.obj 2025-07-17T06:50:09.1323821Z [2306/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Blas.cpp.obj 2025-07-17T06:50:11.2776930Z [2307/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ComparisonUtils.cpp.obj 2025-07-17T06:50:12.1457553Z [2308/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Bucketization.cpp.obj 2025-07-17T06:50:15.1892463Z [2309/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ChanelShuffle.cpp.obj 2025-07-17T06:50:16.5059329Z [2310/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUFallback.cpp.obj 2025-07-17T06:50:17.4897743Z [2311/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Col2Im.cpp.obj 2025-07-17T06:50:18.9752732Z [2312/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\CPUBlas.cpp.obj 2025-07-17T06:50:20.0352421Z [2313/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Constraints.cpp.obj 2025-07-17T06:50:23.6749212Z [2314/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM3d.cpp.obj 2025-07-17T06:50:23.8876396Z [2315/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionMM2d.cpp.obj 2025-07-17T06:50:25.6783437Z [2316/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DispatchStub.cpp.obj 2025-07-17T06:50:26.5341917Z [2317/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ConvolutionTBC.cpp.obj 2025-07-17T06:50:28.3309994Z [2318/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Convolution.cpp.obj 2025-07-17T06:50:29.4359472Z [2319/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Correlation.cpp.obj 2025-07-17T06:50:30.2448824Z [2320/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Copy.cpp.obj 2025-07-17T06:50:31.0427627Z [2321/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Cross.cpp.obj 2025-07-17T06:50:33.1436329Z [2322/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool2d.cpp.obj 2025-07-17T06:50:34.2771647Z [2323/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\DilatedMaxPool3d.cpp.obj 2025-07-17T06:50:38.8580494Z [2324/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distance.cpp.obj 2025-07-17T06:50:40.0403272Z [2325/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Dropout.cpp.obj 2025-07-17T06:50:40.5488913Z [2326/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Embedding.cpp.obj 2025-07-17T06:50:42.1739231Z [2327/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\EmbeddingBag.cpp.obj 2025-07-17T06:50:42.7586064Z [2328/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Fill.cpp.obj 2025-07-17T06:50:43.3856669Z [2329/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Distributions.cpp.obj 2025-07-17T06:50:44.2053947Z [2330/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool2d.cpp.obj 2025-07-17T06:50:46.7712191Z [2331/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ForeachOpsKernels.cpp.obj 2025-07-17T06:50:50.5331411Z [2332/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdagrad.cpp.obj 2025-07-17T06:50:51.6353297Z [2333/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FractionalMaxPool3d.cpp.obj 2025-07-17T06:50:53.3216429Z [2334/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FunctionOfAMatrixUtils.cpp.obj 2025-07-17T06:50:53.7146092Z [2335/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedAdam.cpp.obj 2025-07-17T06:50:53.8811529Z [2336/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GatedLinearUnit.cpp.obj 2025-07-17T06:50:53.9185391Z [2337/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\FusedSGD.cpp.obj 2025-07-17T06:50:57.9317203Z [2338/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\GridSampler.cpp.obj 2025-07-17T06:50:58.6386129Z [2339/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Lerp.cpp.obj 2025-07-17T06:51:02.0650809Z [2340/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Histogram.cpp.obj 2025-07-17T06:51:02.7098408Z [2341/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Integration.cpp.obj 2025-07-17T06:51:04.3243032Z [2342/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LegacyBatching.cpp.obj 2025-07-17T06:51:04.4150370Z [2343/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Itertools.cpp.obj 2025-07-17T06:51:04.9321770Z [2344/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\IndexingUtils.cpp.obj 2025-07-17T06:51:05.0497209Z [2345/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Im2Col.cpp.obj 2025-07-17T06:51:14.5467153Z [2346/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiMargin.cpp.obj 2025-07-17T06:51:15.3900823Z [2347/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Linear.cpp.obj 2025-07-17T06:51:16.8274909Z [2348/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossMultiLabelMargin.cpp.obj 2025-07-17T06:51:16.8626812Z [2349/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossCTC.cpp.obj 2025-07-17T06:51:17.1448990Z [2350/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL.cpp.obj 2025-07-17T06:51:17.9536477Z [2351/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Loss.cpp.obj 2025-07-17T06:51:18.3460296Z [2352/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LossNLL2d.cpp.obj 2025-07-17T06:51:19.9473380Z [2353/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\LinearAlgebra.cpp.obj 2025-07-17T06:51:21.0563374Z [2354/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MetaTensor.cpp.obj 2025-07-17T06:51:26.4074023Z [2355/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Memory.cpp.obj 2025-07-17T06:51:26.5245087Z [2356/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxPooling.cpp.obj 2025-07-17T06:51:28.0535051Z [2357/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\MaxUnpooling.cpp.obj 2025-07-17T06:51:28.3215669Z [2358/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NNPACK.cpp.obj 2025-07-17T06:51:28.3564483Z [2359/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose2d.cpp.obj 2025-07-17T06:51:29.1481747Z [2360/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveConvolutionTranspose3d.cpp.obj 2025-07-17T06:51:33.7529753Z [2361/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NaiveDilatedConvolution.cpp.obj 2025-07-17T06:51:34.1351241Z [2362/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NamedTensor.cpp.obj 2025-07-17T06:51:36.3131232Z [2363/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Onehot.cpp.obj 2025-07-17T06:51:36.8977955Z [2364/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PadNd.cpp.obj 2025-07-17T06:51:40.2127577Z [2365/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\NegateFallback.cpp.obj 2025-07-17T06:51:40.5970045Z [2366/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PackedSequence.cpp.obj 2025-07-17T06:51:41.9261401Z [2367/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Normalization.cpp.obj 2025-07-17T06:51:42.0829125Z [2368/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PixelShuffle.cpp.obj 2025-07-17T06:51:43.6919038Z [2369/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\PointwiseOps.cpp.obj 2025-07-17T06:51:48.1349027Z [2370/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pooling.cpp.obj 2025-07-17T06:51:48.8055124Z [2371/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Pow.cpp.obj 2025-07-17T06:51:50.2182366Z [2372/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\QuantizedLinear.cpp.obj 2025-07-17T06:51:51.6303477Z [2373/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceAllOps.cpp.obj 2025-07-17T06:51:51.7480993Z [2374/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RangeFactories.cpp.obj 2025-07-17T06:51:53.7279161Z [2375/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReflectionPad.cpp.obj 2025-07-17T06:51:58.4292802Z [2376/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReduceOps.cpp.obj 2025-07-17T06:52:00.6058754Z [2377/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Repeat.cpp.obj 2025-07-17T06:52:01.2426104Z [2378/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ReplicationPadding.cpp.obj 2025-07-17T06:52:01.9402239Z [2379/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RNN.cpp.obj 2025-07-17T06:52:03.2457234Z [2380/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Resize.cpp.obj 2025-07-17T06:52:03.8259854Z [2381/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\RowwisePrune.cpp.obj 2025-07-17T06:52:06.2517314Z [2382/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Scalar.cpp.obj 2025-07-17T06:52:06.3363469Z [2383/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SegmentReduce.cpp.obj 2025-07-17T06:52:11.0168077Z [2384/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOps.cpp.obj 2025-07-17T06:52:11.8000945Z [2385/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SoftMax.cpp.obj 2025-07-17T06:52:14.4939526Z [2386/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SobolEngineOpsUtils.cpp.obj 2025-07-17T06:52:15.3110472Z [2387/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Sorting.cpp.obj 2025-07-17T06:52:15.9069073Z [2388/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SummaryOps.cpp.obj 2025-07-17T06:52:18.3799775Z [2389/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SpectralOps.cpp.obj 2025-07-17T06:52:21.1166209Z [2390/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorCompare.cpp.obj 2025-07-17T06:52:23.8262505Z [2391/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorIteratorReduce.cpp.obj 2025-07-17T06:52:23.9602665Z [2392/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorProperties.cpp.obj 2025-07-17T06:52:27.6798796Z [2393/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\SparseTensorUtils.cpp.obj 2025-07-17T06:52:27.8352621Z [2394/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorFactories.cpp.obj 2025-07-17T06:52:35.9924327Z [2395/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorShape.cpp.obj 2025-07-17T06:52:36.0315080Z [2396/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorAdvancedIndexing.cpp.obj 2025-07-17T06:52:36.5232680Z [2397/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorTransformations.cpp.obj 2025-07-17T06:52:36.5915682Z [2398/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TestOps.cpp.obj 2025-07-17T06:52:36.8304905Z [2399/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TriangularOps.cpp.obj 2025-07-17T06:52:37.4343154Z [2400/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold2d.cpp.obj 2025-07-17T06:52:41.7006404Z [2401/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TypeProperties.cpp.obj 2025-07-17T06:52:42.3534898Z [2402/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnaryOps.cpp.obj 2025-07-17T06:52:42.5838955Z [2403/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unfold3d.cpp.obj 2025-07-17T06:52:43.7339965Z [2404/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSample.cpp.obj 2025-07-17T06:52:46.9426240Z [2405/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UnfoldBackward.cpp.obj 2025-07-17T06:52:49.2559063Z [2406/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\Unique.cpp.obj 2025-07-17T06:52:49.4949506Z [2407/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBicubic2d.cpp.obj 2025-07-17T06:52:49.5117550Z [2408/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\TensorConversions.cpp.obj 2025-07-17T06:52:55.6561803Z [2409/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleBilinear2d.cpp.obj 2025-07-17T06:52:57.4157999Z [2410/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest1d.cpp.obj 2025-07-17T06:52:59.1921103Z [2411/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleLinear1d.cpp.obj 2025-07-17T06:52:59.2021019Z [2412/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest3d.cpp.obj 2025-07-17T06:52:59.7352767Z [2413/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleNearest2d.cpp.obj 2025-07-17T06:52:59.7889019Z [2414/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\VariableMethodStubs.cpp.obj 2025-07-17T06:53:02.1673011Z [2415/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\WeightNorm.cpp.obj 2025-07-17T06:53:02.5113562Z [2416/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\UpSampleTrilinear3d.cpp.obj 2025-07-17T06:53:03.7120109Z [2417/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\prim_native_functions.cpp.obj 2025-07-17T06:53:08.0711644Z [2418/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\group_norm.cpp.obj 2025-07-17T06:53:08.3923138Z [2419/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\layer_norm.cpp.obj 2025-07-17T06:53:08.6319374Z [2420/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\verbose_wrapper.cpp.obj 2025-07-17T06:53:10.8366727Z [2421/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\fbgemm_utils.cpp.obj 2025-07-17T06:53:11.6352684Z [2422/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\library.cpp.obj 2025-07-17T06:53:15.0691698Z [2423/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear.cpp.obj 2025-07-17T06:53:16.0726938Z [2424/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_dynamic.cpp.obj 2025-07-17T06:53:20.4270709Z [2425/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_unpack.cpp.obj 2025-07-17T06:53:20.6103357Z [2426/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_prepack.cpp.obj 2025-07-17T06:53:22.7480554Z [2427/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ParamUtils.cpp.obj 2025-07-17T06:53:24.0247758Z [2428/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\FlattenIndicesKernel.cpp.obj 2025-07-17T06:53:27.1585546Z [2429/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SoftMax.cpp.obj 2025-07-17T06:53:27.3382409Z [2430/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_deserialize.cpp.obj 2025-07-17T06:53:30.9301978Z [2431/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\ao_sparse\quantized\cpu\qlinear_serialize.cpp.obj 2025-07-17T06:53:31.0950634Z [2432/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBinaryOpIntersectionKernel.cpp.obj 2025-07-17T06:53:33.2842336Z [2433/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlas.cpp.obj 2025-07-17T06:53:34.6449847Z [2434/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseBlasImpl.cpp.obj 2025-07-17T06:53:38.6314601Z [2435/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensor.cpp.obj 2025-07-17T06:53:38.8915973Z [2436/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseFactories.cpp.obj 2025-07-17T06:53:44.4599130Z [2437/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensor.cpp.obj 2025-07-17T06:53:44.4743291Z [2438/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseMatMul.cpp.obj 2025-07-17T06:53:45.3930744Z [2439/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseCsrTensorMath.cpp.obj 2025-07-17T06:53:46.2365790Z [2440/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseTensorMath.cpp.obj 2025-07-17T06:53:47.5433598Z [2441/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\SparseUnaryOps.cpp.obj 2025-07-17T06:53:50.9091097Z [2442/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\sparse\ValidateCompressedIndicesKernel.cpp.obj 2025-07-17T06:53:58.9015735Z [2443/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorAliases.cpp.obj 2025-07-17T06:54:03.0186581Z [2444/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBackward.cpp.obj 2025-07-17T06:54:03.5036936Z [2445/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorBinaryOps.cpp.obj 2025-07-17T06:54:05.2678348Z [2446/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMatmul.cpp.obj 2025-07-17T06:54:05.5175362Z [2447/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizerBase.cpp.obj 2025-07-17T06:54:05.8389085Z [2448/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorFactories.cpp.obj 2025-07-17T06:54:06.2327044Z [2449/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorMath.cpp.obj 2025-07-17T06:54:08.3926254Z [2450/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\AffineQuantizer.cpp.obj 2025-07-17T06:54:11.0278124Z [2451/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorTransformerFunctions.cpp.obj 2025-07-17T06:54:12.4318178Z [2452/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUtils.cpp.obj 2025-07-17T06:54:15.2300769Z [2453/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\nested\NestedTensorUnaryOps.cpp.obj 2025-07-17T06:54:15.2901628Z [2454/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ACLUtils.cpp.obj 2025-07-17T06:54:24.6528098Z [2455/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerTensorAffine.cpp.obj 2025-07-17T06:54:25.4843731Z [2456/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\Copy.cpp.obj 2025-07-17T06:54:27.4496504Z [2457/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AdaptiveAveragePooling.cpp.obj 2025-07-17T06:54:28.0231825Z [2458/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\FakeQuantPerChannelAffine.cpp.obj 2025-07-17T06:54:28.1713875Z [2459/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorAdvancedIndexing.cpp.obj 2025-07-17T06:54:28.7424989Z [2460/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\QTensor.cpp.obj 2025-07-17T06:54:36.2181356Z [2461/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorCompare.cpp.obj 2025-07-17T06:54:36.7110927Z [2462/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\TensorFactories.cpp.obj 2025-07-17T06:54:37.1477322Z [2463/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ChannelShuffle.cpp.obj 2025-07-17T06:54:37.7235697Z [2464/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool2d.cpp.obj 2025-07-17T06:54:38.4632471Z [2465/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\AveragePool3d.cpp.obj 2025-07-17T06:54:38.5892931Z [2466/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\RuyUtils.cpp.obj 2025-07-17T06:54:39.9813506Z [2467/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\IntReprQuant.cpp.obj 2025-07-17T06:54:42.7101744Z [2468/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\BinaryOps.cpp.obj 2025-07-17T06:54:48.1238977Z [2469/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\MakePerTensorQuantizedTensor.cpp.obj 2025-07-17T06:54:48.9446376Z [2470/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\LinearUnpackImpl.cpp.obj 2025-07-17T06:54:50.5975414Z [2471/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Sorting.cpp.obj 2025-07-17T06:54:51.3222263Z [2472/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\ReduceOps.cpp.obj 2025-07-17T06:54:51.4135568Z [2473/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Pooling.cpp.obj 2025-07-17T06:54:52.0538211Z [2474/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\Normalization.cpp.obj 2025-07-17T06:54:54.7806790Z [2475/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorOperators.cpp.obj 2025-07-17T06:54:54.8362687Z [2476/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\init_qnnpack.cpp.obj 2025-07-17T06:55:00.4870236Z [2477/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleBilinear2d.cpp.obj 2025-07-17T06:55:01.0688348Z [2478/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\TensorShape.cpp.obj 2025-07-17T06:55:02.5769319Z [2479/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest3d.cpp.obj 2025-07-17T06:55:02.7408144Z [2480/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\UpSampleNearest2d.cpp.obj 2025-07-17T06:55:03.4497922Z [2481/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fused_obs_fake_quant.cpp.obj 2025-07-17T06:55:10.1665272Z [2482/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qclamp.cpp.obj 2025-07-17T06:55:11.4107057Z [2483/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\fbgemm_utils.cpp.obj 2025-07-17T06:55:13.2914293Z [2484/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\XnnpackUtils.cpp.obj 2025-07-17T06:55:19.3632520Z [2485/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_dynamic.cpp.obj 2025-07-17T06:55:23.0063961Z [2486/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv.cpp.obj 2025-07-17T06:55:23.0614170Z [2487/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qelu.cpp.obj 2025-07-17T06:55:25.2853212Z [2488/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_prepack.cpp.obj 2025-07-17T06:55:28.4748346Z [2489/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qdropout.cpp.obj 2025-07-17T06:55:28.8597442Z [2490/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag.cpp.obj 2025-07-17T06:55:31.4439076Z [2491/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_prepack.cpp.obj 2025-07-17T06:55:34.0688525Z [2492/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qgelu.cpp.obj 2025-07-17T06:55:35.4065861Z [2493/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardsigmoid.cpp.obj 2025-07-17T06:55:37.7801931Z [2494/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qconv_unpack_impl.cpp.obj 2025-07-17T06:55:39.2001475Z [2495/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qembeddingbag_unpack.cpp.obj 2025-07-17T06:55:41.4491090Z [2496/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qhardswish.cpp.obj 2025-07-17T06:55:51.1028282Z [2497/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_prepack.cpp.obj 2025-07-17T06:55:51.8409244Z [2498/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear.cpp.obj 2025-07-17T06:55:54.3130908Z [2499/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qnormalization.cpp.obj 2025-07-17T06:55:55.0865251Z [2500/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qrelu.cpp.obj 2025-07-17T06:55:55.8240594Z [2501/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qlinear_dynamic.cpp.obj 2025-07-17T06:55:56.1247016Z [2502/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmul.cpp.obj 2025-07-17T06:55:59.9281509Z [2503/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsigmoid.cpp.obj 2025-07-17T06:56:03.0249161Z [2504/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qtanh.cpp.obj 2025-07-17T06:56:04.0282574Z [2505/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\MklAllocationHelper.cpp.obj 2025-07-17T06:56:05.5197227Z [2506/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qmatmul.cpp.obj 2025-07-17T06:56:05.7109010Z [2507/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\LinearAlgebra.cpp.obj 2025-07-17T06:56:06.7265477Z [2508/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\library.cpp.obj 2025-07-17T06:56:07.1557351Z [2509/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qthreshold.cpp.obj 2025-07-17T06:56:15.0122773Z [2510/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseBlasImpl.cpp.obj 2025-07-17T06:56:16.4348444Z [2511/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qconv_unpack.cpp.obj 2025-07-17T06:56:17.6003632Z [2512/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SpectralOps.cpp.obj 2025-07-17T06:56:17.7005162Z [2513/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkl\SparseCsrLinearAlgebra.cpp.obj 2025-07-17T06:56:19.9945299Z [2514/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\BinaryOps.cpp.obj 2025-07-17T06:56:20.9861353Z [2515/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\qsoftmax.cpp.obj 2025-07-17T06:56:24.3785192Z [2516/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\IDeepRegistration.cpp.obj 2025-07-17T06:56:26.5964467Z [2517/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\qlinear_unpack.cpp.obj 2025-07-17T06:56:27.9395733Z [2518/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Conv.cpp.obj 2025-07-17T06:56:28.2419382Z [2519/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Copy.cpp.obj 2025-07-17T06:56:31.5116223Z [2520/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Gelu.cpp.obj 2025-07-17T06:56:37.7704091Z [2521/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MkldnnTensorMath.cpp.obj 2025-07-17T06:56:38.8770526Z [2522/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNCommon.cpp.obj 2025-07-17T06:56:40.5726705Z [2523/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Linear.cpp.obj 2025-07-17T06:56:42.4545347Z [2524/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Normalization.cpp.obj 2025-07-17T06:56:44.4573988Z [2525/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Matmul.cpp.obj 2025-07-17T06:56:46.3931278Z [2526/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\MKLDNNConversions.cpp.obj 2025-07-17T06:56:46.5985315Z [2527/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\ConvPrepack.cpp.obj 2025-07-17T06:56:52.9183353Z [2528/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Pooling.cpp.obj 2025-07-17T06:56:52.9376416Z [2529/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorFactories.cpp.obj 2025-07-17T06:56:54.3208557Z [2530/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\SoftMax.cpp.obj 2025-07-17T06:56:57.0569244Z [2531/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Relu.cpp.obj 2025-07-17T06:56:57.4068190Z [2532/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\OpContext.cpp.obj 2025-07-17T06:57:01.0788484Z [2533/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\TensorShape.cpp.obj 2025-07-17T06:57:01.4950421Z [2534/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\UnaryOps.cpp.obj 2025-07-17T06:57:09.5812314Z [2535/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Utils.cpp.obj 2025-07-17T06:57:09.5924363Z [2536/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\Prelu.cpp.obj 2025-07-17T06:57:10.8149603Z [2537/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\sdp_utils_cpp.cpp.obj 2025-07-17T06:57:11.2058052Z [2538/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\attention.cpp.obj 2025-07-17T06:57:11.2399004Z [2539/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RNN.cpp.obj 2025-07-17T06:57:12.6659380Z [2540/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Init.cpp.obj 2025-07-17T06:57:14.5564986Z [2541/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Activation.cpp.obj 2025-07-17T06:57:14.6693568Z [2542/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\mkldnn\RegisterMkldnnOpContextClass.cpp.obj 2025-07-17T06:57:14.9723971Z [2543/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\AveragePooling.cpp.obj 2025-07-17T06:57:15.2768225Z [2544/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\ChannelShuffle.cpp.obj 2025-07-17T06:57:15.7420166Z [2545/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Shim.cpp.obj 2025-07-17T06:57:16.7563496Z [2546/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\utils\Factory.cpp.obj 2025-07-17T06:57:18.9609945Z [2547/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\transformers\transformer.cpp.obj 2025-07-17T06:57:19.8642160Z [2548/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\MaxPooling.cpp.obj 2025-07-17T06:57:20.9717553Z [2549/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Convolution.cpp.obj 2025-07-17T06:57:22.3075335Z [2550/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\Linear.cpp.obj 2025-07-17T06:57:24.9908150Z [2551/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\OpContext.cpp.obj 2025-07-17T06:57:28.8988681Z [2552/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\xnnpack\RegisterOpContextClass.cpp.obj 2025-07-17T06:57:32.3448307Z [2553/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\CompositeViewCopyKernels.cpp.obj 2025-07-17T06:57:33.6837452Z [2554/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Functions.cpp.obj 2025-07-17T06:57:43.9214837Z [2555/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterBackendSelect.cpp.obj 2025-07-17T06:58:06.5713628Z [2556/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_0.cpp.obj 2025-07-17T06:58:07.4344595Z [2557/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_1.cpp.obj 2025-07-17T06:58:22.7614359Z [2558/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_3.cpp.obj 2025-07-17T06:58:25.1471965Z [2559/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_4.cpp.obj 2025-07-17T06:58:31.9276173Z [2560/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\Operators_2.cpp.obj 2025-07-17T06:58:32.1286175Z [2561/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutogradNestedTensor_0.cpp.obj 2025-07-17T06:58:41.6887113Z [2562/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutograd_0.cpp.obj 2025-07-17T06:58:54.2647196Z [2563/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_2.cpp.obj 2025-07-17T06:58:58.1755671Z [2564/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeExplicitAutogradNonFunctional_0.cpp.obj 2025-07-17T06:59:02.8558881Z [2565/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_0.cpp.obj 2025-07-17T06:59:07.4369184Z [2566/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_1.cpp.obj 2025-07-17T06:59:08.4083102Z [2567/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_0.cpp.obj 2025-07-17T06:59:20.3724912Z [2568/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCompositeImplicitAutograd_0.cpp.obj 2025-07-17T06:59:21.6974000Z [2569/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMkldnnCPU_0.cpp.obj 2025-07-17T06:59:26.1385791Z [2570/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterCPU_3.cpp.obj 2025-07-17T06:59:32.9839286Z [2571/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorCPU_0.cpp.obj 2025-07-17T06:59:35.7798546Z [2572/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_2.cpp.obj 2025-07-17T06:59:38.1147169Z [2573/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_1.cpp.obj 2025-07-17T06:59:49.1026409Z [2574/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorMeta_0.cpp.obj 2025-07-17T06:59:49.2312660Z [2575/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorXPU_0.cpp.obj 2025-07-17T06:59:55.0404816Z [2576/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterFunctionalization_3.cpp.obj 2025-07-17T06:59:55.8220868Z [2577/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedMeta_0.cpp.obj 2025-07-17T06:59:57.4501510Z [2578/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterQuantizedCPU_0.cpp.obj 2025-07-17T06:59:58.2435373Z [2579/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterNestedTensorHPU_0.cpp.obj 2025-07-17T06:59:59.9400717Z [2580/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSchema.cpp.obj 2025-07-17T07:00:07.9855665Z [2581/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMPS_0.cpp.obj 2025-07-17T07:00:12.1745505Z [2582/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterMeta_0.cpp.obj 2025-07-17T07:00:13.0807828Z [2583/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrCPU_0.cpp.obj 2025-07-17T07:00:13.3136986Z [2584/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrXPU_0.cpp.obj 2025-07-17T07:00:13.8915659Z [2585/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMeta_0.cpp.obj 2025-07-17T07:00:16.3874899Z [2586/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPU_add.cpp.obj 2025-07-17T07:00:16.5266680Z [2587/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCsrMeta_0.cpp.obj 2025-07-17T07:00:18.4296997Z [2588/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseCPU_0.cpp.obj 2025-07-17T07:00:18.5954431Z [2589/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\TensorMethods.cpp.obj 2025-07-17T07:00:20.1950107Z [2590/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_model_loader.cpp.obj 2025-07-17T07:00:21.2925095Z [2591/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\QTensorImpl.cpp.obj 2025-07-17T07:00:21.9478618Z [2592/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseMPS_0.cpp.obj 2025-07-17T07:00:24.3244231Z [2593/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_wrapper.cpp.obj 2025-07-17T07:00:24.7918438Z [2594/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterZeroTensor_0.cpp.obj 2025-07-17T07:00:25.5795891Z [2595/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\RegisterSparseXPU_0.cpp.obj 2025-07-17T07:00:27.5158651Z [2596/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:28.1593263Z [2597/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:28.8791809Z [2598/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:30.8183775Z [2599/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:34.3913170Z [2600/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:36.7563376Z [2601/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\quantized\Quantizer.cpp.obj 2025-07-17T07:00:43.5177553Z [2602/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_bind.cpp.obj 2025-07-17T07:00:43.8186529Z [2603/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:44.8625135Z [2604/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:48.2500055Z [2605/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:48.5104188Z [2606/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:48.5910956Z [2607/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\nnapi\nnapi_register.cpp.obj 2025-07-17T07:00:48.8702343Z [2608/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:50.1257816Z [2609/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\core\ATenOpList.cpp.obj 2025-07-17T07:00:55.0396705Z [2610/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:55.7563469Z [2611/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:56.3250036Z [2612/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:00:56.4186764Z [2613/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:01.6434273Z [2614/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:01.8623550Z [2615/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:02.0892821Z [2616/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:03.4623120Z [2617/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:04.6890397Z [2618/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:11.5516705Z [2619/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:14.9044533Z [2620/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:20.0468128Z [2621/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:22.8902619Z [2622/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:23.2240465Z [2623/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:25.2613803Z [2624/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:30.0029336Z [2625/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:30.9281998Z [2626/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:30.9481259Z [2627/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:32.1208094Z [2628/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:32.8101109Z [2629/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:35.8938274Z [2630/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:36.1381824Z [2631/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:39.4489985Z [2632/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:40.3189994Z [2633/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:43.6645400Z [2634/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:43.9554746Z [2635/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:44.0335768Z [2636/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:44.1206985Z [2637/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:45.7170897Z [2638/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:47.9267102Z [2639/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:50.6737390Z [2640/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:50.8602298Z [2641/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:51.0283704Z [2642/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:53.8016738Z [2643/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:54.4554542Z [2644/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:56.1145838Z [2645/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:56.8802970Z [2646/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:58.3991973Z [2647/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:01:59.4841039Z [2648/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:02.9166610Z [2649/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:02.9168840Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-17T07:02:02.9171539Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-17T07:02:02.9174269Z 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-07-17T07:02:02.9181358Z 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-07-17T07:02:02.9200191Z with 2025-07-17T07:02:02.9200648Z [ 2025-07-17T07:02:02.9207018Z scalar_t=scalar_t 2025-07-17T07:02:02.9309428Z ] 2025-07-17T07:02:02.9384618Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-17T07:02:02.9389630Z 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-07-17T07:02:02.9392722Z with 2025-07-17T07:02:02.9393151Z [ 2025-07-17T07:02:02.9393524Z scalar_t=scalar_t 2025-07-17T07:02:02.9393993Z ] 2025-07-17T07:02:02.9397081Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-17T07:02:02.9399887Z with 2025-07-17T07:02:02.9400240Z [ 2025-07-17T07:02:02.9400577Z scalar_t=scalar_t, 2025-07-17T07:02:02.9401097Z data_t=at::vec::DEFAULT::Vectorized, 2025-07-17T07:02:02.9401994Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-17T07:02:02.9403637Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-17T07:02:02.9411509Z ] 2025-07-17T07:02:02.9413226Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::DEFAULT::Vectorized &)' being compiled 2025-07-17T07:02:02.9417299Z with 2025-07-17T07:02:02.9417662Z [ 2025-07-17T07:02:02.9418003Z scalar_t=float, 2025-07-17T07:02:02.9418936Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &), 2025-07-17T07:02:02.9420446Z Op=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-17T07:02:02.9421392Z ] 2025-07-17T07:02:06.1841197Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-17T07:02:06.1843281Z with 2025-07-17T07:02:06.2256442Z [ 2025-07-17T07:02:06.2257747Z ReduceOp=at::vec::DEFAULT::Vectorized (const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &) 2025-07-17T07:02:06.2392287Z ] 2025-07-17T07:02:06.2733602Z [2650/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:09.4670798Z [2651/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:10.0578586Z [2652/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:11.5642979Z [2653/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:13.1752815Z [2654/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:14.3082097Z [2655/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:18.6239464Z [2656/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:24.3750822Z [2657/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:26.3051421Z [2658/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:26.5753634Z [2659/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:34.3588815Z [2660/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\vulkan\Context.cpp.obj 2025-07-17T07:02:34.6431106Z [2661/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:35.2399365Z [2662/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\mkl\SparseBlas.cpp.obj 2025-07-17T07:02:36.1080035Z [2663/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:36.3785785Z [2664/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\core\common.cc.obj 2025-07-17T07:02:38.4371184Z [2665/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\istream_adapter.cc.obj 2025-07-17T07:02:39.1319238Z [2666/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:39.6909264Z [2667/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\crc.cc.obj 2025-07-17T07:02:39.7945161Z [2668/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\read_adapter_interface.cc.obj 2025-07-17T07:02:40.7544792Z [2669/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\inline_container.cc.obj 2025-07-17T07:02:40.8710512Z [2670/7682] Building C object caffe2\CMakeFiles\torch_cpu.dir\__\third_party\miniz-3.0.2\miniz.c.obj 2025-07-17T07:02:40.9731011Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): warning C4005: 'WIN32_LEAN_AND_MEAN': macro redefinition 2025-07-17T07:02:40.9733004Z C:\actions-runner\_work\pytorch\pytorch\third_party\miniz-3.0.2\miniz.c(3137): note: 'WIN32_LEAN_AND_MEAN' previously declared on the command line 2025-07-17T07:02:40.9736050Z [2671/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\serialize\file_adapter.cc.obj 2025-07-17T07:02:41.0802561Z [2672/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\metal\Context.cpp.obj 2025-07-17T07:02:41.1057610Z [2673/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\thread_pool_guard.cpp.obj 2025-07-17T07:02:42.0038037Z [2674/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\string_utils.cc.obj 2025-07-17T07:02:42.5330613Z [2675/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\pthreadpool-cpp.cc.obj 2025-07-17T07:02:43.5899220Z [2676/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:43.7041943Z [2677/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\proto_wrap.cc.obj 2025-07-17T07:02:43.8032781Z [2678/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\utils\threadpool\ThreadPool.cc.obj 2025-07-17T07:02:47.6800288Z [2679/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:55.5232854Z [2680/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ViewFuncs.cpp.obj 2025-07-17T07:02:55.5483585Z [2681/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.DEFAULT.cpp.obj 2025-07-17T07:02:55.5484899Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-17T07:02:55.5486089Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): warning C4333: '>>': right shift by too large amount, data loss 2025-07-17T07:02:55.5487135Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec_base.h(1194): note: the template instantiation context (the oldest one first) is 2025-07-17T07:03:46.8986807Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): note: see reference to function template instantiation 'at::vec::DEFAULT::Vectorized at::vec::DEFAULT::operator >>(const at::vec::DEFAULT::Vectorized &,const at::vec::DEFAULT::Vectorized &)' being compiled 2025-07-17T07:03:47.3040056Z [2682/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\Functions.cpp.obj 2025-07-17T07:04:02.2661055Z [2683/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_3.cpp.obj 2025-07-17T07:04:10.9240450Z [2684/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_1.cpp.obj 2025-07-17T07:04:11.1305432Z [2685/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_0.cpp.obj 2025-07-17T07:04:16.8599516Z [2686/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_1.cpp.obj 2025-07-17T07:04:18.0105196Z [2687/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_0.cpp.obj 2025-07-17T07:04:19.5353713Z [2688/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_4.cpp.obj 2025-07-17T07:04:20.7858239Z [2689/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\VariableType_2.cpp.obj 2025-07-17T07:04:25.8954472Z [2690/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cpu.cpp.obj 2025-07-17T07:04:31.5816492Z [2691/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterAutogradLazy.cpp.obj 2025-07-17T07:04:44.0594799Z [2692/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_0.cpp.obj 2025-07-17T07:04:54.4637088Z [2693/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\ADInplaceOrViewType_1.cpp.obj 2025-07-17T07:05:00.0095021Z [2694/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_3.cpp.obj 2025-07-17T07:05:02.4717940Z [2695/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\anomaly_mode.cpp.obj 2025-07-17T07:05:05.7096947Z [2696/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\RegisterLazy.cpp.obj 2025-07-17T07:05:06.7540220Z [2697/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_4.cpp.obj 2025-07-17T07:05:11.0438188Z [2698/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_meta.cpp.obj 2025-07-17T07:05:12.8452817Z [2699/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd.cpp.obj 2025-07-17T07:05:15.9903398Z [2700/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\cpp_hook.cpp.obj 2025-07-17T07:05:17.2872283Z [2701/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\generated\TraceType_2.cpp.obj 2025-07-17T07:05:17.3437289Z [2702/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\autograd_not_implemented_fallback.cpp.obj 2025-07-17T07:05:19.1526924Z [2703/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\forward_grad.cpp.obj 2025-07-17T07:05:28.3767823Z [2704/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\engine.cpp.obj 2025-07-17T07:05:32.6512602Z [2705/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\generated\LazyNativeFunctions.cpp.obj 2025-07-17T07:05:33.2289468Z [2706/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\utils.cpp.obj 2025-07-17T07:05:40.7729608Z [2707/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\custom_function.cpp.obj 2025-07-17T07:05:43.4067810Z [2708/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\function.cpp.obj 2025-07-17T07:05:44.5173486Z [2709/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\basic_ops.cpp.obj 2025-07-17T07:05:45.3772115Z [2710/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_metadata.cpp.obj 2025-07-17T07:05:47.5304499Z [2711/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\accumulate_grad.cpp.obj 2025-07-17T07:05:48.0515095Z [2712/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\functions\tensor.cpp.obj 2025-07-17T07:05:48.5538914Z [2713/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\utils\warnings.cpp.obj 2025-07-17T07:05:51.2034312Z [2714/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\jit_decomp_interface.cpp.obj 2025-07-17T07:05:53.8205685Z [2715/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\input_buffer.cpp.obj 2025-07-17T07:05:57.2878333Z [2716/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\saved_variable.cpp.obj 2025-07-17T07:05:59.8087430Z [2717/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\record_function_ops.cpp.obj 2025-07-17T07:06:01.2376622Z [2718/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable_info.cpp.obj 2025-07-17T07:06:02.4931753Z [2719/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_legacy.cpp.obj 2025-07-17T07:06:03.0675467Z [2720/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\profiler_kineto.cpp.obj 2025-07-17T07:06:08.3983662Z [2721/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cpu.cpp.obj 2025-07-17T07:06:08.4484711Z [2722/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\dynamo\compiled_autograd.cpp.obj 2025-07-17T07:06:08.6425869Z [2723/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\mkldnn_tensor.cpp.obj 2025-07-17T07:06:12.9648684Z [2724/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_package\model_package_loader.cpp.obj 2025-07-17T07:06:18.4687701Z [2725/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner.cpp.obj 2025-07-17T07:06:20.3049819Z [2726/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\tensor_converter.cpp.obj 2025-07-17T07:06:22.9375260Z [2727/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\variable.cpp.obj 2025-07-17T07:06:25.3832722Z [2728/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_common.cpp.obj 2025-07-17T07:06:27.6287935Z [2729/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\oss_proxy_executor.cpp.obj 2025-07-17T07:06:40.1148801Z [2730/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\object.cpp.obj 2025-07-17T07:06:42.5652483Z [2731/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\aoti_torch\shim_cpu.cpp.obj 2025-07-17T07:06:46.8186275Z [2732/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_handler.cpp.obj 2025-07-17T07:06:46.9228857Z [2733/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module.cpp.obj 2025-07-17T07:06:47.7288623Z [2734/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_debug_info.cpp.obj 2025-07-17T07:06:48.4380912Z [2735/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\inductor\inductor_ops.cpp.obj 2025-07-17T07:06:49.6028609Z [2736/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_detail.cpp.obj 2025-07-17T07:06:55.6268852Z [2737/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_interface.cpp.obj 2025-07-17T07:06:59.9103019Z [2738/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\function_impl.cpp.obj 2025-07-17T07:07:01.4505496Z [2739/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\backends\backend_resolver.cpp.obj 2025-07-17T07:07:16.7102952Z [2740/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\codegen.cpp.obj 2025-07-17T07:07:17.2930215Z [2741/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\compiler.cpp.obj 2025-07-17T07:07:21.3698531Z [2742/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\canonicalize_modified_loop.cpp.obj 2025-07-17T07:07:21.9406008Z [2743/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\edit_distance.cpp.obj 2025-07-17T07:07:22.3167711Z [2744/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\executor.cpp.obj 2025-07-17T07:07:23.1201421Z [2745/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\builtin_functions.cpp.obj 2025-07-17T07:07:23.1896316Z [2746/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\fallback.cpp.obj 2025-07-17T07:07:24.1598240Z [2747/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\interface.cpp.obj 2025-07-17T07:07:24.4592276Z [2748/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\name_mangler.cpp.obj 2025-07-17T07:07:26.8606019Z [2749/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\parser.cpp.obj 2025-07-17T07:07:35.7523357Z [2750/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\exit_transforms.cpp.obj 2025-07-17T07:07:36.0772767Z [2751/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\kernel_cache.cpp.obj 2025-07-17T07:07:40.3899381Z [2752/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\inline_loop_condition.cpp.obj 2025-07-17T07:07:44.2699635Z [2753/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\script_type_parser.cpp.obj 2025-07-17T07:07:44.5805981Z [2754/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\convert_to_ssa.cpp.obj 2025-07-17T07:07:47.7539370Z [2755/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\schema_matching.cpp.obj 2025-07-17T07:07:49.2144917Z [2756/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\ir_emitter.cpp.obj 2025-07-17T07:07:57.4264881Z [2757/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\sugared_value.cpp.obj 2025-07-17T07:07:57.7543358Z [2758/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\attributes.cpp.obj 2025-07-17T07:08:04.7397092Z [2759/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\graph_utils.cpp.obj 2025-07-17T07:08:05.1140334Z [2760/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\versioned_symbols.cpp.obj 2025-07-17T07:08:05.8354646Z [2761/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\alias_analysis.cpp.obj 2025-07-17T07:08:06.1243302Z [2762/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\frontend\tracer.cpp.obj 2025-07-17T07:08:10.9745263Z [2763/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\ir.cpp.obj 2025-07-17T07:08:16.1286961Z [2764/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\scope.cpp.obj 2025-07-17T07:08:17.9172239Z [2765/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\node_hashing.cpp.obj 2025-07-17T07:08:22.0578833Z [2766/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\type_hashing.cpp.obj 2025-07-17T07:08:22.0582221Z [2767/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\subgraph_matcher.cpp.obj 2025-07-17T07:08:24.2666045Z [2768/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\irparser.cpp.obj 2025-07-17T07:08:28.1788102Z [2769/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_log.cpp.obj 2025-07-17T07:08:28.4155818Z [2770/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\ir\constants.cpp.obj 2025-07-17T07:08:34.5052582Z [2771/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\function.cpp.obj 2025-07-17T07:08:35.6092417Z [2772/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\runtime_compatibility.cpp.obj 2025-07-17T07:08:41.0628184Z [2773/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\jit_opt_limit.cpp.obj 2025-07-17T07:08:42.7006483Z [2774/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\model_compatibility.cpp.obj 2025-07-17T07:08:45.1581142Z [2775/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\registry.cpp.obj 2025-07-17T07:08:45.2005378Z [2776/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import.cpp.obj 2025-07-17T07:08:45.9023967Z [2777/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\observer.cpp.obj 2025-07-17T07:08:46.5828400Z [2778/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\module.cpp.obj 2025-07-17T07:08:51.5098966Z [2779/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\interpreter.cpp.obj 2025-07-17T07:08:55.6188987Z [2780/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\backend.cpp.obj 2025-07-17T07:08:56.5560849Z [2781/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_bytecode.cpp.obj 2025-07-17T07:08:56.9890943Z [2782/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\flatbuffer_loader.cpp.obj 2025-07-17T07:08:57.8538781Z [2783/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\parse_operators.cpp.obj 2025-07-17T07:09:00.9085876Z [2784/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\prim_ops_registery.cpp.obj 2025-07-17T07:09:04.7301975Z [2785/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\context.cpp.obj 2025-07-17T07:09:07.4258846Z [2786/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\promoted_prim_ops.cpp.obj 2025-07-17T07:09:08.7972474Z [2787/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\type_parser.cpp.obj 2025-07-17T07:09:11.7079186Z [2788/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\register_ops_common_utils.cpp.obj 2025-07-17T07:09:11.9736537Z [2789/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\upgrader_mobile.cpp.obj 2025-07-17T07:09:12.1702158Z [2790/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\utils.cpp.obj 2025-07-17T07:09:12.3233075Z [2791/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\quantization.cpp.obj 2025-07-17T07:09:12.4242968Z [2792/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\version_map.cpp.obj 2025-07-17T07:09:23.2639080Z [2793/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders.cpp.obj 2025-07-17T07:09:27.7671598Z [2794/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\nnc\aot_compiler.cpp.obj 2025-07-17T07:09:28.0597896Z [2795/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\annotate_warns.cpp.obj 2025-07-17T07:09:29.5943801Z [2796/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\add_if_then_else.cpp.obj 2025-07-17T07:09:30.2945028Z [2797/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\operator_upgraders\upgraders_entry.cpp.obj 2025-07-17T07:09:31.0411256Z [2798/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize.cpp.obj 2025-07-17T07:09:43.0127876Z [2799/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\canonicalize_graph_fuser_ops.cpp.obj 2025-07-17T07:09:43.7963516Z [2800/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\common_subexpression_elimination.cpp.obj 2025-07-17T07:09:47.2203240Z [2801/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\concat_opt.cpp.obj 2025-07-17T07:09:49.1284615Z [2802/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\check_strict_fusion.cpp.obj 2025-07-17T07:09:49.8390180Z [2803/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\batch_mm.cpp.obj 2025-07-17T07:09:51.2086214Z [2804/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\bailout_graph.cpp.obj 2025-07-17T07:09:59.9407425Z [2805/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_undefinedness.cpp.obj 2025-07-17T07:10:01.5911925Z [2806/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\clear_profiling.cpp.obj 2025-07-17T07:10:02.8291380Z [2807/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_propagation.cpp.obj 2025-07-17T07:10:04.1887737Z [2808/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\constant_pooling.cpp.obj 2025-07-17T07:10:05.6432438Z [2809/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_autodiff_subgraphs.cpp.obj 2025-07-17T07:10:05.7870890Z [2810/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\create_functional_graphs.cpp.obj 2025-07-17T07:10:11.6459977Z [2811/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dead_code_elimination.cpp.obj 2025-07-17T07:10:13.8498071Z [2812/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dbr_quantization\remove_redundant_aliases.cpp.obj 2025-07-17T07:10:20.3668658Z [2813/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\decompose_ops.cpp.obj 2025-07-17T07:10:20.6725840Z [2814/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\dtype_analysis.cpp.obj 2025-07-17T07:10:23.3305317Z [2815/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\eliminate_no_ops.cpp.obj 2025-07-17T07:10:24.2302389Z [2816/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\device_type_analysis.cpp.obj 2025-07-17T07:10:24.8957506Z [2817/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\erase_number_types.cpp.obj 2025-07-17T07:10:30.1444153Z [2818/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fixup_trace_scope_blocks.cpp.obj 2025-07-17T07:10:35.9053919Z [2819/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_linear_bn.cpp.obj 2025-07-17T07:10:39.6522646Z [2820/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fold_conv_bn.cpp.obj 2025-07-17T07:10:40.7636210Z [2821/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion.cpp.obj 2025-07-17T07:10:43.0342917Z [2822/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_concat_linear.cpp.obj 2025-07-17T07:10:45.4774134Z [2823/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_graph_optimizations.cpp.obj 2025-07-17T07:10:46.1370008Z [2824/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_conv_folding.cpp.obj 2025-07-17T07:10:52.6686419Z [2825/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_folding.cpp.obj 2025-07-17T07:10:55.4124275Z [2826/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_linear_transpose.cpp.obj 2025-07-17T07:10:57.0607596Z [2827/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_linear.cpp.obj 2025-07-17T07:11:02.0115720Z [2828/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\fuse_relu.cpp.obj 2025-07-17T07:11:04.0980833Z [2829/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\freeze_module.cpp.obj 2025-07-17T07:11:08.2967672Z [2830/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_rewrite_helper.cpp.obj 2025-07-17T07:11:13.0727397Z [2831/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\hoist_conv_packed_params.cpp.obj 2025-07-17T07:11:14.0215649Z [2832/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_autodiff_subgraphs.cpp.obj 2025-07-17T07:11:16.6511690Z [2833/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_fork_wait.cpp.obj 2025-07-17T07:11:23.9411784Z [2834/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\graph_fuser.cpp.obj 2025-07-17T07:11:24.3200039Z [2835/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\frozen_ops_to_mkldnn.cpp.obj 2025-07-17T07:11:27.1200258Z [2836/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inline_forked_closures.cpp.obj 2025-07-17T07:11:27.4909127Z [2837/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inliner.cpp.obj 2025-07-17T07:11:34.9041527Z [2838/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\inplace_check.cpp.obj 2025-07-17T07:11:35.1382430Z [2839/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\integer_value_refinement.cpp.obj 2025-07-17T07:11:43.4361855Z [2840/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\insert_guards.cpp.obj 2025-07-17T07:11:44.0099116Z [2841/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lift_closures.cpp.obj 2025-07-17T07:11:45.1312600Z [2842/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\guard_elimination.cpp.obj 2025-07-17T07:11:47.3785170Z [2843/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_grad_of.cpp.obj 2025-07-17T07:11:47.6933419Z [2844/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\loop_unrolling.cpp.obj 2025-07-17T07:11:56.0052221Z [2845/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_tuples.cpp.obj 2025-07-17T07:11:57.4928980Z [2846/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\liveness.cpp.obj 2025-07-17T07:12:00.4187583Z [2847/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\normalize_ops.cpp.obj 2025-07-17T07:12:00.5669543Z [2848/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\pass_manager.cpp.obj 2025-07-17T07:12:05.1892089Z [2849/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_alias_sensitive.cpp.obj 2025-07-17T07:12:05.9367999Z [2850/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole.cpp.obj 2025-07-17T07:12:13.7684252Z [2851/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_dict_idioms.cpp.obj 2025-07-17T07:12:15.2513732Z [2852/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\metal_rewrite.cpp.obj 2025-07-17T07:12:18.5832035Z [2853/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_list_idioms.cpp.obj 2025-07-17T07:12:20.8927943Z [2854/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\peephole_non_tensor.cpp.obj 2025-07-17T07:12:23.4515333Z [2855/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\prepack_folding.cpp.obj 2025-07-17T07:12:24.3051833Z [2856/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\quantization_type.cpp.obj 2025-07-17T07:12:25.9759108Z [2857/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\mkldnn_rewrite.cpp.obj 2025-07-17T07:12:29.8013982Z [2858/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\dedup_module_uses.cpp.obj 2025-07-17T07:12:37.7963192Z [2859/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\fusion_passes.cpp.obj 2025-07-17T07:12:40.6719081Z [2860/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\helper.cpp.obj 2025-07-17T07:12:43.7921243Z [2861/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_observers.cpp.obj 2025-07-17T07:12:43.9208721Z [2862/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\refine_tuple_types.cpp.obj 2025-07-17T07:12:46.9526424Z [2863/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\insert_quant_dequant.cpp.obj 2025-07-17T07:12:49.5305068Z [2864/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\finalize.cpp.obj 2025-07-17T07:12:56.8708350Z [2865/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_dropout.cpp.obj 2025-07-17T07:12:57.0740023Z [2866/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_expands.cpp.obj 2025-07-17T07:12:59.6683771Z [2867/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_exceptions.cpp.obj 2025-07-17T07:13:01.2994648Z [2868/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_redundant_profiles.cpp.obj 2025-07-17T07:13:02.6565614Z [2869/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_mutation.cpp.obj 2025-07-17T07:13:06.1867099Z [2870/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\quantization\register_packed_params.cpp.obj 2025-07-17T07:13:07.0132314Z [2871/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\replacement_of_old_operators.cpp.obj 2025-07-17T07:13:12.0226791Z [2872/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\requires_grad_analysis.cpp.obj 2025-07-17T07:13:14.6508681Z [2873/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\restore_mutation.cpp.obj 2025-07-17T07:13:17.1107923Z [2874/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\shape_analysis.cpp.obj 2025-07-17T07:13:19.2931713Z [2875/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_analysis.cpp.obj 2025-07-17T07:13:23.2012332Z [2876/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\subgraph_rewrite.cpp.obj 2025-07-17T07:13:25.0726033Z [2877/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_cache.cpp.obj 2025-07-17T07:13:30.7041635Z [2878/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\update_differentiable_graph_requires_grad.cpp.obj 2025-07-17T07:13:30.8543844Z [2879/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\memory_dag.cpp.obj 2025-07-17T07:13:36.8914385Z [2880/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\op_registry.cpp.obj 2025-07-17T07:13:38.8140711Z [2881/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\optimization_utils.cpp.obj 2025-07-17T07:13:39.2929754Z [2882/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\specialize_autogradzero.cpp.obj 2025-07-17T07:13:42.4015609Z [2883/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\update_graph_executor_opt.cpp.obj 2025-07-17T07:13:43.2111246Z [2884/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\python\utf8_decoding_ignore.cpp.obj 2025-07-17T07:13:44.7453076Z [2885/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\subgraph_utils.cpp.obj 2025-07-17T07:13:49.2188942Z [2886/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\variadic_ops.cpp.obj 2025-07-17T07:13:51.8748077Z [2887/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\tensorexpr_fuser.cpp.obj 2025-07-17T07:13:53.6513847Z 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-07-17T07:13:53.6515987Z 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-07-17T07:13:53.6517617Z [2888/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\value_refinement_utils.cpp.obj 2025-07-17T07:13:57.7148792Z [2889/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\symbolic_shape_runtime_fusion.cpp.obj 2025-07-17T07:14:00.3009165Z [2890/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\instruction.cpp.obj 2025-07-17T07:14:03.1566766Z [2891/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\argument_spec.cpp.obj 2025-07-17T07:14:05.1898415Z [2892/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\autodiff.cpp.obj 2025-07-17T07:14:08.9437287Z [2893/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry.cpp.obj 2025-07-17T07:14:09.0354068Z [2894/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\decomposition_registry_util.cpp.obj 2025-07-17T07:14:09.7393795Z [2895/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_exception.cpp.obj 2025-07-17T07:14:11.0497395Z [2896/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\logging.cpp.obj 2025-07-17T07:14:12.7022879Z [2897/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\vulkan_rewrite.cpp.obj 2025-07-17T07:14:13.4570779Z [2898/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\print_handler.cpp.obj 2025-07-17T07:14:20.4745796Z [2899/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\preprocess_graph.cpp.obj 2025-07-17T07:14:24.5540844Z [2900/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\xnnpack_rewrite.cpp.obj 2025-07-17T07:14:29.6175180Z [2901/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\graph_executor.cpp.obj 2025-07-17T07:14:33.6830298Z [2902/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\operator.cpp.obj 2025-07-17T07:14:36.4069488Z [2903/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter\frame.cpp.obj 2025-07-17T07:14:38.2683062Z [2904/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\jit_trace.cpp.obj 2025-07-17T07:14:39.3092915Z [2905/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\slice_indices_adjust.cpp.obj 2025-07-17T07:14:48.2814470Z [2906/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\interpreter.cpp.obj 2025-07-17T07:14:52.0240456Z [2907/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\script_profile.cpp.obj 2025-07-17T07:14:54.9663257Z [2908/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_graph_executor_impl.cpp.obj 2025-07-17T07:14:55.1443620Z [2909/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\serialized_shape_function_registry.cpp.obj 2025-07-17T07:14:57.7712010Z [2910/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\profiling_record.cpp.obj 2025-07-17T07:15:00.8975555Z [2911/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_ops_utils.cpp.obj 2025-07-17T07:15:02.5276066Z [2912/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\fusion.cpp.obj 2025-07-17T07:15:13.9841644Z [2913/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\memory_planner.cpp.obj 2025-07-17T07:15:14.9919237Z [2914/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\impl.cpp.obj 2025-07-17T07:15:18.6210817Z [2915/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\passes.cpp.obj 2025-07-17T07:15:20.5667733Z [2916/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\simple_graph_executor_impl.cpp.obj 2025-07-17T07:15:32.9514049Z [2917/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_script.cpp.obj 2025-07-17T07:15:36.8279067Z [2918/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\native_ops.cpp.obj 2025-07-17T07:15:43.1832884Z [2919/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry_util.cpp.obj 2025-07-17T07:15:44.5519797Z [2920/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\symbolic_shape_registry.cpp.obj 2025-07-17T07:15:51.0133764Z [2921/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\ops.cpp.obj 2025-07-17T07:15:54.0823778Z [2922/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\generated_ops.cpp.obj 2025-07-17T07:15:54.9033469Z [2923/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\vararg_functions.cpp.obj 2025-07-17T07:15:55.4191382Z [2924/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_export_helpers.cpp.obj 2025-07-17T07:15:56.0949235Z [2925/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\static\te_wrapper.cpp.obj 2025-07-17T07:16:03.3428609Z [2926/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\callstack_debug_info_serialization.cpp.obj 2025-07-17T07:16:03.6259487Z [2927/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_read.cpp.obj 2025-07-17T07:16:18.4002946Z [2928/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickle.cpp.obj 2025-07-17T07:16:21.4858286Z [2929/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import_source.cpp.obj 2025-07-17T07:16:26.6144803Z [2930/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\source_range_serialization.cpp.obj 2025-07-17T07:16:26.8695997Z [2931/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\type_name_uniquer.cpp.obj 2025-07-17T07:16:28.0158212Z [2932/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\python_print.cpp.obj 2025-07-17T07:16:29.4947767Z [2933/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler.cpp.obj 2025-07-17T07:16:29.9427741Z [2934/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\pickler_helper.cpp.obj 2025-07-17T07:16:33.9587854Z [2935/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\import.cpp.obj 2025-07-17T07:16:51.1988016Z [2936/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\block_codegen.cpp.obj 2025-07-17T07:16:52.4629496Z [2937/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\codegen.cpp.obj 2025-07-17T07:16:59.0384308Z [2938/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_overlap.cpp.obj 2025-07-17T07:16:59.0849307Z [2939/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\cpp_codegen.cpp.obj 2025-07-17T07:17:00.7158521Z [2940/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\bounds_inference.cpp.obj 2025-07-17T07:17:00.9362878Z [2941/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_registry.cpp.obj 2025-07-17T07:17:04.6747598Z [2942/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\unpickler.cpp.obj 2025-07-17T07:17:04.7412326Z [2943/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\intrinsic_symbols.cpp.obj 2025-07-17T07:17:05.7305091Z [2944/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\expr.cpp.obj 2025-07-17T07:17:06.2136338Z [2945/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\eval.cpp.obj 2025-07-17T07:17:13.6183446Z [2946/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir.cpp.obj 2025-07-17T07:17:18.0822154Z [2947/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_core.cpp.obj 2025-07-17T07:17:19.7663380Z [2948/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions_codegen.cpp.obj 2025-07-17T07:17:27.3491896Z [2949/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\hash_provider.cpp.obj 2025-07-17T07:17:31.4449605Z [2950/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_cloner.cpp.obj 2025-07-17T07:17:32.5565136Z [2951/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_mutator.cpp.obj 2025-07-17T07:17:32.6403038Z [2952/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_codegen.cpp.obj 2025-07-17T07:17:32.7148941Z [2953/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\llvm_jit.cpp.obj 2025-07-17T07:17:40.5938058Z [2954/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\graph_opt.cpp.obj 2025-07-17T07:17:42.0087593Z [2955/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\external_functions.cpp.obj 2025-07-17T07:17:47.8483401Z [2956/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_printer.cpp.obj 2025-07-17T07:17:51.9554779Z [2957/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_simplifier.cpp.obj 2025-07-17T07:17:51.9556096Z 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-07-17T07:17:51.9557014Z with 2025-07-17T07:17:51.9557246Z [ 2025-07-17T07:17:51.9557437Z T=int 2025-07-17T07:17:51.9557675Z ] 2025-07-17T07:17:51.9558303Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-17T07:17:52.1291810Z 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-07-17T07:17:52.1293368Z with 2025-07-17T07:17:52.1293607Z [ 2025-07-17T07:17:52.1293807Z T=int 2025-07-17T07:17:52.1294064Z ] 2025-07-17T07:17:52.1294599Z [2958/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_verifier.cpp.obj 2025-07-17T07:17:58.4998382Z [2959/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\ir_visitor.cpp.obj 2025-07-17T07:18:08.4826762Z [2960/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest.cpp.obj 2025-07-17T07:18:16.2308356Z [2961/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\kernel.cpp.obj 2025-07-17T07:18:17.0440199Z [2962/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\loopnest_randomization.cpp.obj 2025-07-17T07:18:19.2127793Z [2963/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\mem_dependency_checker.cpp.obj 2025-07-17T07:18:19.2131106Z 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-07-17T07:18:19.2133004Z with 2025-07-17T07:18:19.2133484Z [ 2025-07-17T07:18:19.2133912Z T=int 2025-07-17T07:18:19.2134459Z ] 2025-07-17T07:18:19.2135650Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-17T07:18:27.5649633Z 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-07-17T07:18:27.5650890Z with 2025-07-17T07:18:27.5651099Z [ 2025-07-17T07:18:27.5651317Z T=int 2025-07-17T07:18:27.5651640Z ] 2025-07-17T07:18:27.5652163Z [2964/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\conv2d.cpp.obj 2025-07-17T07:18:29.8392608Z [2965/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\lowerings.cpp.obj 2025-07-17T07:18:38.3694493Z [2966/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\matmul.cpp.obj 2025-07-17T07:18:44.6997996Z [2967/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\reduction.cpp.obj 2025-07-17T07:18:47.9829028Z [2968/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\misc.cpp.obj 2025-07-17T07:18:54.1201444Z [2969/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\types.cpp.obj 2025-07-17T07:18:55.8083979Z [2970/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\norm.cpp.obj 2025-07-17T07:18:56.5266323Z [2971/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\quantization.cpp.obj 2025-07-17T07:18:58.1597325Z [2972/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\pointwise.cpp.obj 2025-07-17T07:19:04.0629709Z [2973/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\reduction.cpp.obj 2025-07-17T07:19:05.9966277Z [2974/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\tensor.cpp.obj 2025-07-17T07:19:09.1064864Z [2975/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\unique_name_manager.cpp.obj 2025-07-17T07:19:11.8929987Z [2976/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\config.cpp.obj 2025-07-17T07:19:13.2602850Z [2977/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\operators\softmax.cpp.obj 2025-07-17T07:19:15.2894068Z [2978/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\hooks_for_testing.cpp.obj 2025-07-17T07:19:17.3648611Z [2979/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\tensorexpr\registerizer.cpp.obj 2025-07-17T07:19:17.3651030Z 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-07-17T07:19:17.3653030Z with 2025-07-17T07:19:17.3653387Z [ 2025-07-17T07:19:17.3653716Z T=int 2025-07-17T07:19:17.3654038Z ] 2025-07-17T07:19:17.3655119Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-17T07:19:18.8479429Z 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-07-17T07:19:18.8481610Z with 2025-07-17T07:19:18.8482002Z [ 2025-07-17T07:19:18.8482389Z T=int 2025-07-17T07:19:18.8482762Z ] 2025-07-17T07:19:18.8483601Z [2980/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\hash.cpp.obj 2025-07-17T07:19:20.1457618Z [2981/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\testing\file_check.cpp.obj 2025-07-17T07:19:25.5695906Z [2982/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_device.cpp.obj 2025-07-17T07:19:28.1725388Z [2983/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\lowering_context.cpp.obj 2025-07-17T07:19:29.1764934Z [2984/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\debug_util.cpp.obj 2025-07-17T07:19:31.4694587Z [2985/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\backend\backend_interface.cpp.obj 2025-07-17T07:19:32.9372194Z [2986/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\multi_wait.cpp.obj 2025-07-17T07:19:33.4220815Z [2987/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\helpers.cpp.obj 2025-07-17T07:19:36.8010828Z [2988/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir.cpp.obj 2025-07-17T07:19:40.8003251Z [2989/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_metadata.cpp.obj 2025-07-17T07:19:40.9352947Z [2990/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\permutation_util.cpp.obj 2025-07-17T07:19:42.2740751Z [2991/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_dump_util.cpp.obj 2025-07-17T07:19:46.5544463Z [2992/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ir_util.cpp.obj 2025-07-17T07:19:47.0816923Z [2993/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\lazy_graph_executor.cpp.obj 2025-07-17T07:19:47.5049955Z [2994/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\metrics.cpp.obj 2025-07-17T07:19:49.0477058Z [2995/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\thread_pool.cpp.obj 2025-07-17T07:19:55.0029021Z [2996/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\arithmetic_ir_ops.cpp.obj 2025-07-17T07:19:57.6120063Z [2997/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\ops\utils.cpp.obj 2025-07-17T07:19:59.8636169Z [2998/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape.cpp.obj 2025-07-17T07:20:01.1379739Z [2999/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor.cpp.obj 2025-07-17T07:20:02.2774024Z [3000/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\counters.cpp.obj 2025-07-17T07:20:02.8284842Z [3001/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\monitor\events.cpp.obj 2025-07-17T07:20:03.7917413Z [3002/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_util.cpp.obj 2025-07-17T07:20:04.7447369Z [3003/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\tensor_impl.cpp.obj 2025-07-17T07:20:12.6268683Z [3004/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\combined_traceback.cpp.obj 2025-07-17T07:20:12.7359112Z [3005/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\trie.cpp.obj 2025-07-17T07:20:17.3261314Z [3006/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_client_interface.cpp.obj 2025-07-17T07:20:17.3781406Z [3007/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\mtia\profiler\MTIAMemoryProfiler.cpp.obj 2025-07-17T07:20:19.7998224Z [3008/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\data_flow.cpp.obj 2025-07-17T07:20:21.1027025Z [3009/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\collection.cpp.obj 2025-07-17T07:20:21.8048169Z [3010/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\kineto_shim.cpp.obj 2025-07-17T07:20:22.3924997Z [3011/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\perf.cpp.obj 2025-07-17T07:20:24.4179454Z [3012/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\core\shape_inference.cpp.obj 2025-07-17T07:20:27.1276907Z [3013/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\base.cpp.obj 2025-07-17T07:20:28.5544587Z [3014/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\python_tracer.cpp.obj 2025-07-17T07:20:28.9368284Z [3015/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\observer.cpp.obj 2025-07-17T07:20:29.2530710Z [3016/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind_fb.cpp.obj 2025-07-17T07:20:30.4345544Z [3017/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\itt_observer.cpp.obj 2025-07-17T07:20:32.3057816Z [3018/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\orchestration\vulkan.cpp.obj 2025-07-17T07:20:32.6908452Z [3019/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\unwind\unwind.cpp.obj 2025-07-17T07:20:33.0300445Z [3020/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\nvtx_observer.cpp.obj 2025-07-17T07:20:33.3528787Z [3021/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\cpp_stacktraces.cpp.obj 2025-07-17T07:20:34.7280534Z [3022/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\execution_trace_observer.cpp.obj 2025-07-17T07:20:34.9332528Z [3023/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\standalone\privateuse1_observer.cpp.obj 2025-07-17T07:20:40.8058772Z [3024/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\variadic.cpp.obj 2025-07-17T07:20:41.8082628Z [3025/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\schema_info.cpp.obj 2025-07-17T07:20:47.2983401Z [3026/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\util.cpp.obj 2025-07-17T07:20:49.5539159Z [3027/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\lower_graph.cpp.obj 2025-07-17T07:20:50.8580638Z [3028/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\tensor_flatten.cpp.obj 2025-07-17T07:20:52.2219922Z [3029/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\remove_inplace_ops.cpp.obj 2025-07-17T07:20:58.4350440Z [3030/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\utils\check_alias_annotation.cpp.obj 2025-07-17T07:21:00.6198306Z [3031/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_c10_ops.cpp.obj 2025-07-17T07:21:06.0704546Z [3032/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\cuda\interface.cpp.obj 2025-07-17T07:21:07.7042462Z [3033/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\passes\autocast.cpp.obj 2025-07-17T07:21:16.4183270Z [3034/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-07-17T07:21:19.4574716Z [3035/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Graph.cpp.obj 2025-07-17T07:21:23.0915857Z [3036/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-07-17T07:21:26.8525528Z [3037/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops.cpp.obj 2025-07-17T07:21:29.4367239Z [3038/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_prim_ops_fulljit.cpp.obj 2025-07-17T07:21:29.7063687Z [3039/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\runtime\register_special_ops.cpp.obj 2025-07-17T07:21:30.4718798Z [3040/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\GraphPasses.cpp.obj 2025-07-17T07:21:32.0911923Z [3041/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\graph\Serialization.cpp.obj 2025-07-17T07:21:32.2274340Z [3042/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Placement.cpp.obj 2025-07-17T07:21:34.1791759Z [3043/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-07-17T07:21:43.3418912Z [3044/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\DelegateExecutor.cpp.obj 2025-07-17T07:21:44.8288205Z [3045/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-07-17T07:21:53.1013625Z [3046/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-07-17T07:21:55.9016072Z [3047/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-07-17T07:21:58.7273262Z [3048/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Executor.cpp.obj 2025-07-17T07:21:58.8905479Z [3049/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-07-17T07:22:00.4048824Z [3050/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\common\FileUtil.cpp.obj 2025-07-17T07:22:01.0053108Z [3051/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-07-17T07:22:03.5753399Z [3052/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-07-17T07:22:03.9245880Z [3053/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-07-17T07:22:04.7286283Z [3054/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-07-17T07:22:04.9008758Z [3055/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\OpKernel.cpp.obj 2025-07-17T07:22:12.7463776Z [3056/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\Weights.cpp.obj 2025-07-17T07:22:16.4914158Z [3057/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\detail\ITree.cpp.obj 2025-07-17T07:22:18.3312574Z [3058/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-07-17T07:22:32.6409078Z [3059/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-07-17T07:22:33.7306077Z [3060/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-07-17T07:22:37.3216794Z [3061/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-07-17T07:22:38.3445079Z [3062/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-07-17T07:22:39.0503979Z [3063/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-07-17T07:22:39.0629483Z [3064/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-07-17T07:22:39.2157640Z [3065/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-07-17T07:22:51.0719822Z [3066/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\PrimKernelRegistry.cpp.obj 2025-07-17T07:22:54.8284885Z [3067/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\debug_info.cpp.obj 2025-07-17T07:22:55.0308264Z [3068/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-07-17T07:22:55.9018525Z [3069/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\config.cpp.obj 2025-07-17T07:23:08.6947354Z [3070/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\dynamic_ir.cpp.obj 2025-07-17T07:23:09.7926322Z [3071/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\NativeKernels.cpp.obj 2025-07-17T07:23:15.8962092Z [3072/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-07-17T07:23:17.4507725Z [3073/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\device_data.cpp.obj 2025-07-17T07:23:17.9240037Z [3074/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedNativeStaticDispatchKernels.cpp.obj 2025-07-17T07:23:18.0892513Z [3075/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ops\generic.cpp.obj 2025-07-17T07:23:22.8420428Z [3076/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\GeneratedStaticDispatchKernels.cpp.obj 2025-07-17T07:23:32.0353025Z [3077/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\nativert\kernels\KernelRegistry.cpp.obj 2025-07-17T07:23:32.3384042Z [3078/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_autograd_functions.cpp.obj 2025-07-17T07:23:33.6575467Z [3079/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\tensor_aten_ops.cpp.obj 2025-07-17T07:23:38.8089779Z [3080/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_eager_fallback.cpp.obj 2025-07-17T07:23:39.4485008Z [3081/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_lowering_context.cpp.obj 2025-07-17T07:23:40.6676064Z [3082/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_backend_impl.cpp.obj 2025-07-17T07:23:44.4467722Z [3083/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node.cpp.obj 2025-07-17T07:23:54.5626128Z [3084/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\export_data.cpp.obj 2025-07-17T07:23:59.7726170Z [3085/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_native_functions.cpp.obj 2025-07-17T07:24:01.7636967Z [3086/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\import_data.cpp.obj 2025-07-17T07:24:03.1773806Z [3087/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\random.cpp.obj 2025-07-17T07:24:03.3310229Z [3088/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\lazy\ts_backend\ts_node_lowering.cpp.obj 2025-07-17T07:24:04.5803883Z [3089/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\itt_wrapper.cpp.obj 2025-07-17T07:24:05.0837659Z [3090/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\out_types.cpp.obj 2025-07-17T07:24:05.6907646Z [3091/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\profiler\stubs\itt.cpp.obj 2025-07-17T07:24:12.0753559Z [3092/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\optim\sgd.cpp.obj 2025-07-17T07:24:12.7568851Z [3093/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\train\sequential.cpp.obj 2025-07-17T07:24:15.4967542Z [3094/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\TraceTypeManual.cpp.obj 2025-07-17T07:24:20.4309861Z [3095/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport.cpp.obj 2025-07-17T07:24:22.4531976Z [3096/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\flatbuffer_serializer.cpp.obj 2025-07-17T07:24:26.1100710Z [3097/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\FunctionsManual.cpp.obj 2025-07-17T07:24:27.7172047Z [3098/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\jit.cpp.obj 2025-07-17T07:24:35.4443835Z [3099/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\autograd\VariableTypeManual.cpp.obj 2025-07-17T07:24:35.6426277Z [3100/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\mobile\compatibility\backport_manager.cpp.obj 2025-07-17T07:24:36.9307493Z [3101/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\utils\byte_order.cpp.obj 2025-07-17T07:24:37.3927490Z [3102/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backoff.cpp.obj 2025-07-17T07:24:37.8497066Z [3103/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\onnx.cpp.obj 2025-07-17T07:24:42.2270185Z [3104/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_bytecode.cpp.obj 2025-07-17T07:24:48.9247245Z [3105/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FileStore.cpp.obj 2025-07-17T07:24:49.0378280Z [3106/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\api\module_save.cpp.obj 2025-07-17T07:25:01.6347951Z [3107/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export.cpp.obj 2025-07-17T07:25:02.0122153Z [3108/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\serialization\export_module.cpp.obj 2025-07-17T07:25:04.5200547Z [3109/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Backend.cpp.obj 2025-07-17T07:25:05.5195060Z [3110/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\jit\codegen\fuser\cpu\fused_kernel.cpp.obj 2025-07-17T07:25:09.8834292Z [3111/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ParamCommsUtils.cpp.obj 2025-07-17T07:25:16.5254512Z [3112/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GlooDeviceFactory.cpp.obj 2025-07-17T07:25:16.5994817Z [3113/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupMPI.cpp.obj 2025-07-17T07:25:17.6439028Z [3114/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\FlightRecorder.cpp.obj 2025-07-17T07:25:18.1901046Z [3115/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\PrefixStore.cpp.obj 2025-07-17T07:25:27.7046150Z [3116/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\GroupRegistry.cpp.obj 2025-07-17T07:25:28.7794409Z [3117/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Store.cpp.obj 2025-07-17T07:25:29.4817727Z [3118/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Functional.cpp.obj 2025-07-17T07:25:31.7016201Z [3119/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Ops.cpp.obj 2025-07-17T07:25:42.6997332Z [3120/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreLibUvBackend.cpp.obj 2025-07-17T07:25:43.8010864Z [3121/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStore.cpp.obj 2025-07-17T07:25:43.8294740Z [3122/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroup.cpp.obj 2025-07-17T07:25:49.6321927Z [3123/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupWrapper.cpp.obj 2025-07-17T07:25:50.7017482Z [3124/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\Handlers.cpp.obj 2025-07-17T07:25:52.0099628Z [3125/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\cuda\StreamBlock.cpp.obj 2025-07-17T07:25:52.2017889Z [3126/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\ProcessGroupGloo.cpp.obj 2025-07-17T07:25:57.0673715Z [3127/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\debug.cpp.obj 2025-07-17T07:25:57.6341039Z [3128/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Utils.cpp.obj 2025-07-17T07:26:00.0067056Z [3129/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_collectives\StoreCollectives.cpp.obj 2025-07-17T07:26:00.2095836Z [3130/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\TCPStoreBackend.cpp.obj 2025-07-17T07:26:00.6022566Z [3131/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\control_plane\WorkerServer.cpp.obj 2025-07-17T07:26:01.1251912Z [3132/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logging.cpp.obj 2025-07-17T07:26:05.7830588Z [3133/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\socket.cpp.obj 2025-07-17T07:26:08.6911800Z [3134/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\Work.cpp.obj 2025-07-17T07:26:08.6946565Z [3135/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\sequence_num.cpp.obj 2025-07-17T07:26:11.1920465Z [3136/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\cuda.cpp.obj 2025-07-17T07:26:16.6769994Z [3137/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\comm.cpp.obj 2025-07-17T07:26:21.8640566Z [3138/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\quantization\quantization.cpp.obj 2025-07-17T07:26:25.0840073Z [3139/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.cpp.obj 2025-07-17T07:26:27.5098762Z [3140/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\logger.cpp.obj 2025-07-17T07:26:29.4535109Z 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-07-17T07:26:29.4536296Z [3141/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.cpp.obj 2025-07-17T07:26:30.5542369Z [3142/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\enum.cpp.obj 2025-07-17T07:26:37.3875361Z [3143/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\reducer.cpp.obj 2025-07-17T07:26:39.8118033Z [3144/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\datasets\mnist.cpp.obj 2025-07-17T07:26:42.8213827Z [3145/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\imethod.cpp.obj 2025-07-17T07:26:43.2745584Z [3146/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\mps.cpp.obj 2025-07-17T07:26:45.1027871Z [3147/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\distributed\c10d\default_comm_hooks.cpp.obj 2025-07-17T07:26:55.8512470Z [3148/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\distributed.cpp.obj 2025-07-17T07:26:57.2913066Z [3149/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\random.cpp.obj 2025-07-17T07:27:01.6940236Z [3150/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\sequential.cpp.obj 2025-07-17T07:27:03.4177814Z [3151/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\data\samplers\stream.cpp.obj 2025-07-17T07:27:08.0618118Z [3152/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\init.cpp.obj 2025-07-17T07:27:08.9503442Z [3153/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize.cpp.obj 2025-07-17T07:27:16.3754109Z [3154/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\_functions.cpp.obj 2025-07-17T07:27:16.8035029Z [3155/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\module.cpp.obj 2025-07-17T07:27:25.4183480Z [3156/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\activation.cpp.obj 2025-07-17T07:27:31.1390459Z [3157/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\adaptive.cpp.obj 2025-07-17T07:27:35.6858688Z [3158/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\instancenorm.cpp.obj 2025-07-17T07:27:38.2524414Z [3159/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\conv.cpp.obj 2025-07-17T07:27:39.8748081Z [3160/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\batchnorm.cpp.obj 2025-07-17T07:27:45.8947727Z [3161/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\normalization.cpp.obj 2025-07-17T07:27:50.5323962Z [3162/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\dropout.cpp.obj 2025-07-17T07:27:52.9312000Z [3163/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\distance.cpp.obj 2025-07-17T07:28:00.3623950Z [3164/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\embedding.cpp.obj 2025-07-17T07:28:04.3182878Z [3165/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\linear.cpp.obj 2025-07-17T07:28:08.6233646Z [3166/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\loss.cpp.obj 2025-07-17T07:28:09.3932984Z [3167/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\fold.cpp.obj 2025-07-17T07:28:09.4055528Z [3168/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\padding.cpp.obj 2025-07-17T07:28:22.7030809Z [3169/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pixelshuffle.cpp.obj 2025-07-17T07:28:32.3950445Z [3170/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\rnn.cpp.obj 2025-07-17T07:28:34.8841517Z [3171/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\activation.cpp.obj 2025-07-17T07:28:36.8958159Z [3172/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\adaptive.cpp.obj 2025-07-17T07:28:37.9346638Z [3173/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\pooling.cpp.obj 2025-07-17T07:28:39.0551551Z [3174/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\container\functional.cpp.obj 2025-07-17T07:28:41.1123653Z [3175/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\transformer.cpp.obj 2025-07-17T07:28:41.2961818Z [3176/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\modules\upsampling.cpp.obj 2025-07-17T07:28:56.4821430Z [3177/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\instancenorm.cpp.obj 2025-07-17T07:28:59.1893067Z [3178/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\batchnorm.cpp.obj 2025-07-17T07:29:02.2172666Z [3179/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\normalization.cpp.obj 2025-07-17T07:29:02.5657688Z [3180/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\embedding.cpp.obj 2025-07-17T07:29:03.4534857Z [3181/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\conv.cpp.obj 2025-07-17T07:29:03.9394624Z [3182/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\linear.cpp.obj 2025-07-17T07:29:04.1476636Z [3183/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\dropout.cpp.obj 2025-07-17T07:29:05.2122509Z [3184/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\padding.cpp.obj 2025-07-17T07:29:19.6185453Z [3185/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\rnn.cpp.obj 2025-07-17T07:29:20.1331042Z [3186/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\vision.cpp.obj 2025-07-17T07:29:27.7812713Z [3187/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\pooling.cpp.obj 2025-07-17T07:29:29.7414389Z [3188/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adagrad.cpp.obj 2025-07-17T07:29:30.9453513Z [3189/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adam.cpp.obj 2025-07-17T07:29:35.7229603Z [3190/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\lbfgs.cpp.obj 2025-07-17T07:29:36.2063053Z [3191/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\adamw.cpp.obj 2025-07-17T07:29:37.9098968Z [3192/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\lr_scheduler.cpp.obj 2025-07-17T07:29:38.9977718Z [3193/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\nn\options\transformer.cpp.obj 2025-07-17T07:29:39.7510213Z [3194/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\step_lr.cpp.obj 2025-07-17T07:29:40.4215075Z [3195/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\schedulers\reduce_on_plateau_scheduler.cpp.obj 2025-07-17T07:29:41.9669913Z [3196/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\xpu.cpp.obj 2025-07-17T07:29:44.8769354Z [3197/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX2.cpp.obj 2025-07-17T07:29:44.8770404Z 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-07-17T07:29:44.8771624Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:29:49.6995230Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:29:49.7002365Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:29:49.7004808Z [3198/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX2.cpp.obj 2025-07-17T07:29:49.7411908Z 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-07-17T07:29:49.7414102Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:29:51.6489409Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:29:51.8407955Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:29:52.0369701Z [3199/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\optimizer.cpp.obj 2025-07-17T07:29:56.8752436Z [3200/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\rmsprop.cpp.obj 2025-07-17T07:29:58.4043567Z [3201/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\sgd.cpp.obj 2025-07-17T07:29:59.6229651Z [3202/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX2.cpp.obj 2025-07-17T07:29:59.6231914Z 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-07-17T07:29:59.6234264Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:01.1212792Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:01.1214112Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:01.1215144Z [3203/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\optim\serialize.cpp.obj 2025-07-17T07:30:01.2320230Z [3204/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX2.cpp.obj 2025-07-17T07:30:01.2322436Z 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-07-17T07:30:01.2325214Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:01.5551703Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:01.5553015Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:01.5554121Z [3205/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX2.cpp.obj 2025-07-17T07:30:01.5555570Z 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-07-17T07:30:01.5556777Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:04.0798606Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:04.0800018Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:04.0801112Z [3206/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:04.0802150Z 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-07-17T07:30:04.0803346Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:04.7785855Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:04.7801398Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:04.7803431Z [3207/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX2.cpp.obj 2025-07-17T07:30:04.7877752Z 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-07-17T07:30:04.7880287Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:10.3114582Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:10.4026375Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:10.4262706Z [3208/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:10.4266057Z 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-07-17T07:30:10.4300964Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:10.4966216Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:10.4968661Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:10.4970798Z [3209/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:10.4972983Z 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-07-17T07:30:10.4975309Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:13.2017268Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:13.3325861Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:13.3334147Z [3210/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:13.5024013Z 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-07-17T07:30:13.5287804Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:13.7008422Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:13.7010892Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:13.8142286Z [3211/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\input-archive.cpp.obj 2025-07-17T07:30:15.6671281Z [3212/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:15.6673190Z 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-07-17T07:30:15.6675884Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:15.8492942Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:15.8495448Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:15.8497535Z [3213/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:15.8499527Z 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-07-17T07:30:15.8501862Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:19.0896736Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:19.0899207Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:19.0901241Z [3214/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX2.cpp.obj 2025-07-17T07:30:19.0903074Z 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-07-17T07:30:19.0905364Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:21.5358613Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:21.5359915Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:21.5361101Z [3215/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:21.5362103Z 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-07-17T07:30:21.5363285Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:21.8201662Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:21.8203089Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:21.8204153Z [3216/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\torch\csrc\api\src\serialize\output-archive.cpp.obj 2025-07-17T07:30:21.8528267Z [3217/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:21.8530297Z 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-07-17T07:30:21.8532764Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:24.5032909Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:24.5036926Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:24.5039047Z [3218/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:24.5050192Z 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-07-17T07:30:24.5053106Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.0200843Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.0220362Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.0222449Z [3219/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:27.0225741Z 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-07-17T07:30:27.0341827Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.2864629Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.2867169Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.2869165Z [3220/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX2.cpp.obj 2025-07-17T07:30:27.2870925Z 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-07-17T07:30:27.2873162Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.2901148Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.2903489Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:27.2905491Z [3221/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:27.2907285Z 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-07-17T07:30:27.2909421Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:34.2393177Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:34.4096248Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:34.4995573Z [3222/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:34.7431323Z 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-07-17T07:30:34.8100255Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:35.6538061Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:35.6610855Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:35.8116921Z [3223/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:35.9034112Z 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-07-17T07:30:35.9854902Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:39.7941793Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:39.7944091Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:39.7946379Z [3224/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:39.7948226Z 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-07-17T07:30:39.7950405Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:40.5700633Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:40.5703751Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:40.5709359Z [3225/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:40.5716080Z 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-07-17T07:30:40.5767996Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:43.8351994Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:43.8354867Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:43.8357153Z [3226/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:43.8359361Z 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-07-17T07:30:43.8361693Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:43.8687516Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:43.8690515Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:43.8692692Z [3227/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:43.8694313Z 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-07-17T07:30:43.8696396Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:46.9310849Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:46.9313836Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:46.9316585Z [3228/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:46.9322522Z 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-07-17T07:30:46.9325105Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:52.9722832Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:53.2368923Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:53.3296380Z [3229/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:53.4121754Z 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-07-17T07:30:53.4490698Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:53.5779530Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:53.6285834Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:53.7546074Z [3230/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:53.8159232Z 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-07-17T07:30:53.9480371Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:54.2444245Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:54.2674611Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:54.2769382Z [3231/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:54.3107784Z 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-07-17T07:30:54.3116480Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:54.5787854Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:54.5892478Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:54.5894611Z [3232/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:54.6111536Z 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-07-17T07:30:54.6130399Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:56.1531657Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:56.1534084Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:56.1536054Z [3233/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:56.1537929Z 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-07-17T07:30:56.1540237Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:58.4370580Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:58.4390089Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:58.4414312Z [3234/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:58.4416294Z 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-07-17T07:30:58.4455283Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:59.6478036Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:59.6480479Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:30:59.6482558Z [3235/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX2.cpp.obj 2025-07-17T07:30:59.6484465Z 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-07-17T07:30:59.6486700Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:01.1393318Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:01.1394745Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:01.1395882Z [3236/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:01.1397956Z 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-07-17T07:31:01.1399195Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:01.5974579Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:01.5978069Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:01.5979204Z [3237/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:01.5980241Z 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-07-17T07:31:01.5981445Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:03.3937855Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:03.4060254Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:03.4062324Z [3238/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:03.4204062Z 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-07-17T07:31:03.4208325Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:04.3186476Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:04.3190251Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:04.3192224Z [3239/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX2.cpp.obj 2025-07-17T07:31:04.3228857Z 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-07-17T07:31:04.3231282Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:04.7441412Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:04.7443969Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:04.7447112Z [3240/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:04.7449842Z 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-07-17T07:31:04.7452416Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:06.2990433Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:06.2992014Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:06.2993125Z [3241/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:06.2994266Z 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-07-17T07:31:06.2995461Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:07.5193117Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:07.5195740Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:07.5197764Z [3242/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:07.5199647Z 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-07-17T07:31:07.5201911Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:09.6520876Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:09.6523817Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:09.6526033Z [3243/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:09.6528228Z 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-07-17T07:31:09.6530524Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:10.3079920Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:10.3082441Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:10.3084527Z [3244/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:10.3086424Z 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-07-17T07:31:10.3088415Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:12.7326449Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:12.7647974Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:12.8105675Z [3245/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:12.8107757Z 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-07-17T07:31:12.8381431Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:13.8181406Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:13.8444657Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:13.8911823Z [3246/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:13.8913898Z 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-07-17T07:31:13.8964894Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:14.0537766Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:14.0540192Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:14.1168177Z [3247/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:14.4482688Z 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-07-17T07:31:14.4484766Z [3248/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:14.4537054Z 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-07-17T07:31:14.4544959Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:15.9139361Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:15.9142359Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:15.9144458Z [3249/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:15.9146646Z 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-07-17T07:31:15.9149031Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:16.8296592Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:16.8298080Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:16.8299520Z [3250/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:19.9565900Z 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-07-17T07:31:19.9626801Z [3251/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:19.9752224Z 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-07-17T07:31:19.9754611Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:22.8055861Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:22.8797827Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:22.9115891Z [3252/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:23.8554314Z 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-07-17T07:31:23.8578465Z [3253/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:23.8580821Z 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-07-17T07:31:23.8584055Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:23.8586613Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:23.8602363Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:23.8615236Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-17T07:31:23.8617351Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-17T07:31:23.8620211Z 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-07-17T07:31:23.8623539Z 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-07-17T07:31:23.8625817Z with 2025-07-17T07:31:23.8626225Z [ 2025-07-17T07:31:23.8626666Z scalar_t=scalar_t 2025-07-17T07:31:23.8627138Z ] 2025-07-17T07:31:23.8629533Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-17T07:31:23.8634655Z 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-07-17T07:31:23.8637680Z with 2025-07-17T07:31:23.8638083Z [ 2025-07-17T07:31:23.8638508Z scalar_t=scalar_t 2025-07-17T07:31:23.8638986Z ] 2025-07-17T07:31:23.8641884Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-17T07:31:23.8645029Z with 2025-07-17T07:31:23.8645479Z [ 2025-07-17T07:31:23.8645877Z scalar_t=scalar_t, 2025-07-17T07:31:23.8646431Z data_t=at::vec::AVX2::Vectorized, 2025-07-17T07:31:23.8647455Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-17T07:31:23.8649016Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-17T07:31:23.8650087Z ] 2025-07-17T07:31:23.8651941Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX2::Vectorized &)' being compiled 2025-07-17T07:31:23.8653945Z with 2025-07-17T07:31:23.8654329Z [ 2025-07-17T07:31:23.8655016Z scalar_t=float, 2025-07-17T07:31:23.8656154Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &), 2025-07-17T07:31:24.7653831Z Op=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-17T07:31:24.7654995Z ] 2025-07-17T07:31:24.7658074Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-17T07:31:24.7659711Z with 2025-07-17T07:31:24.7661212Z [ 2025-07-17T07:31:24.7669604Z ReduceOp=at::vec::AVX2::Vectorized (const at::vec::AVX2::Vectorized &,const at::vec::AVX2::Vectorized &) 2025-07-17T07:31:24.7682360Z ] 2025-07-17T07:31:24.7683431Z [3254/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:24.7865705Z 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-07-17T07:31:24.7868708Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:25.9341132Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:25.9342490Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:25.9343645Z [3255/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:28.2561764Z 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-07-17T07:31:28.2565503Z [3256/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:28.4721969Z 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-07-17T07:31:28.4723806Z [3257/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:28.4725536Z 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-07-17T07:31:28.4728129Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:30.0794952Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:30.0811858Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:30.0814218Z [3258/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX2.cpp.obj 2025-07-17T07:31:30.0848977Z 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-07-17T07:31:30.0851753Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:33.9080803Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:34.0015486Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:34.0017526Z [3259/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:34.0020691Z 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-07-17T07:31:34.0024572Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:36.6427456Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:36.6430770Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:36.6432826Z [3260/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:36.6475631Z 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-07-17T07:31:36.6478094Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:41.3637983Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:41.6076816Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:41.6580252Z [3261/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:41.8533372Z 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-07-17T07:31:41.8535898Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:44.3970154Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:44.4165066Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:44.4167135Z [3262/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:44.4169066Z 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-07-17T07:31:44.4171439Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:50.2686038Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:50.2717636Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:50.2727048Z [3263/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:50.2729468Z 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-07-17T07:31:50.2748779Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:54.4604799Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:54.4608171Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:54.4610292Z [3264/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:54.4612875Z 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-07-17T07:31:54.4615134Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:54.8468007Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:54.8470759Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:54.8473455Z [3265/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX2.cpp.obj 2025-07-17T07:31:54.8475815Z 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-07-17T07:31:54.8478297Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:58.5065061Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:58.5067881Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:58.6959369Z [3266/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX2.cpp.obj 2025-07-17T07:31:58.6961905Z 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-07-17T07:31:58.8115246Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:59.3132962Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:59.3135809Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:31:59.3138428Z [3267/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\UfuncCPUKernel_add.cpp.AVX512.cpp.obj 2025-07-17T07:31:59.3972863Z [3268/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\spherical_bessel_j0.cpp.AVX512.cpp.obj 2025-07-17T07:32:01.1705223Z [3269/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k1.cpp.AVX512.cpp.obj 2025-07-17T07:32:01.6764173Z [3270/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX2.cpp.obj 2025-07-17T07:32:01.6822040Z 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-07-17T07:32:01.6837831Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:32:01.7534385Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:32:01.7536550Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:32:01.7538727Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-17T07:32:01.7540648Z [3271/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\scaled_modified_bessel_k0.cpp.AVX512.cpp.obj 2025-07-17T07:32:04.7306402Z [3272/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX2.cpp.obj 2025-07-17T07:32:04.7308343Z 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-07-17T07:32:04.7310810Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:32:06.3690944Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:32:06.3708027Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:32:06.3710737Z [3273/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\airy_ai.cpp.AVX512.cpp.obj 2025-07-17T07:32:06.4382105Z [3274/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int8mm_kernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:11.0277804Z [3275/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\int4mm_kernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:13.2300587Z [3276/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\quantized\cpu\kernels\QuantizedOpKernels.cpp.AVX512.cpp.obj 2025-07-17T07:32:14.9126810Z [3277/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\WeightNormKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:15.5474911Z [3278/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\layer_norm_kernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:15.6292421Z [3279/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\batch_norm_kernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:16.0636973Z [3280/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\group_norm_kernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:18.8818618Z [3281/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Unfold2d.cpp.AVX512.cpp.obj 2025-07-17T07:32:20.6058583Z [3282/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SumKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:20.6333628Z [3283/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleMoreKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:21.8461196Z [3284/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\StackKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:23.8628010Z [3285/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnfoldBackwardKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:25.6799634Z [3286/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SparseFactories.cpp.AVX512.cpp.obj 2025-07-17T07:32:26.8265868Z [3287/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UpSampleKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:30.3229492Z [3288/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SoftMaxKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:31.9302212Z [3289/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\TensorCompareKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:38.1522898Z [3290/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SpmmReduceKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:43.1950556Z [3291/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RenormKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:44.2588740Z [3292/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SampledAddmmKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:47.8137018Z [3293/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\UnaryOpsKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:50.4936449Z [3294/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ScatterGatherKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:51.2462810Z [3295/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:51.3390456Z [3296/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\SortingKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:52.9482295Z [3297/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceAllOpsKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:53.7654332Z [3298/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\RangeFactoriesKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:55.1863939Z [3299/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PixelShuffleKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:55.2903722Z [3300/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PowKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:57.1291623Z [3301/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PointwiseOpsKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:57.9183065Z [3302/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\NativeMultiheadAttnKernel.cpp.AVX512.cpp.obj 2025-07-17T07:32:59.8442811Z [3303/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxUnpoolKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:00.1219955Z [3304/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\PaddingKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:01.9833578Z [3305/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPooling.cpp.AVX512.cpp.obj 2025-07-17T07:33:03.6983603Z [3306/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LerpKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:03.8792999Z [3307/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MultinomialKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:07.2533581Z [3308/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\LinearAlgebraKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:08.5973715Z [3309/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\MaxPoolKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:09.0855227Z [3310/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ReduceOpsKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:10.2961782Z [3311/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedSGDKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:12.3401786Z [3312/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\IndexKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:12.6591211Z [3313/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdamKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:13.5231294Z [3314/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FunctionOfAMatrixUtilsKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:13.6007246Z [3315/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\HistogramKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:14.6153775Z [3316/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FusedAdagradKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:16.2324264Z [3317/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FillKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:20.0562212Z [3318/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CrossKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:22.3348887Z [3319/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistanceOpsKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:22.6939778Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): warning C4180: qualifier applied to function type has no meaning; ignored 2025-07-17T07:33:22.6942263Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(49): note: the template instantiation context (the oldest one first) is 2025-07-17T07:33:22.6947314Z 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-07-17T07:33:22.6951583Z 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-07-17T07:33:22.6954211Z with 2025-07-17T07:33:22.6957143Z [ 2025-07-17T07:33:22.6957730Z scalar_t=scalar_t 2025-07-17T07:33:22.6958389Z ] 2025-07-17T07:33:22.6960863Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(420): note: see the first reference to 'at::native::`anonymous-namespace'::Dist::apply_pdist' in 'at::native::`anonymous-namespace'::pdist_forward_kernel_impl::::()::::operator ()' 2025-07-17T07:33:22.6965944Z 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-07-17T07:33:22.6969495Z with 2025-07-17T07:33:22.6969944Z [ 2025-07-17T07:33:22.6970506Z scalar_t=scalar_t 2025-07-17T07:33:22.6971037Z ] 2025-07-17T07:33:22.6974515Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp(175): note: see reference to function template instantiation 'scalar_t at::vec::map2_reduce_all::run_parallel_pdist::::()::,data_t(const data_t &,const data_t &),0>(const MapOp &,ReduceOp (__cdecl &),const scalar_t *,const scalar_t *,int64_t)' being compiled 2025-07-17T07:33:22.6978150Z with 2025-07-17T07:33:22.6978553Z [ 2025-07-17T07:33:22.6978972Z scalar_t=scalar_t, 2025-07-17T07:33:22.6979545Z data_t=at::vec::AVX512::Vectorized, 2025-07-17T07:33:22.6980638Z MapOp=at::native::`anonymous-namespace'::Dist::run_parallel_pdist::::()::, 2025-07-17T07:33:22.6982569Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-17T07:33:22.6983720Z ] 2025-07-17T07:33:22.6985661Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(299): note: see reference to function template instantiation 'scalar_t at::vec::vec_reduce_all(Op (__cdecl &),const at::vec::AVX512::Vectorized &)' being compiled 2025-07-17T07:33:22.6988063Z with 2025-07-17T07:33:22.6988502Z [ 2025-07-17T07:33:22.6988926Z scalar_t=float, 2025-07-17T07:33:22.6990033Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &), 2025-07-17T07:33:22.6991704Z Op=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-17T07:33:22.6992869Z ] 2025-07-17T07:33:23.3393076Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/functional_base.h(176): note: see reference to class template instantiation 'at::vec::VecReduceAllSIMD' being compiled 2025-07-17T07:33:23.3394912Z with 2025-07-17T07:33:23.3396468Z [ 2025-07-17T07:33:23.3397426Z ReduceOp=at::vec::AVX512::Vectorized (const at::vec::AVX512::Vectorized &,const at::vec::AVX512::Vectorized &) 2025-07-17T07:33:23.3398975Z ] 2025-07-17T07:33:23.3399960Z [3320/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DepthwiseConvKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:27.1707424Z [3321/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\GridSamplerKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:27.8421301Z [3322/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\DistributionKernels.cpp.AVX512.cpp.obj 2025-07-17T07:33:29.1692199Z [3323/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ChannelShuffleKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:29.7804633Z [3324/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BlasKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:35.3542959Z [3325/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\ComplexKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:35.8901318Z [3326/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CatKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:36.1057884Z [3327/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AvgPoolKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:39.5155934Z [3328/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveMaxPoolKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:45.4113388Z [3329/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AmpGradScalerKernels.cpp.AVX512.cpp.obj 2025-07-17T07:33:48.6582380Z [3330/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\CopyKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:48.7880172Z [3331/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAContext.cpp.obj 2025-07-17T07:33:52.3514700Z [3332/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\Activation.cpp.AVX512.cpp.obj 2025-07-17T07:33:55.3734986Z [3333/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\AdaptiveAvgPoolKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:58.7906834Z [3334/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\BinaryOpsKernel.cpp.AVX512.cpp.obj 2025-07-17T07:33:59.4536485Z C:/actions-runner/_work/pytorch/pytorch/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp(522): warning C4333: '>>': right shift by too large amount, data loss 2025-07-17T07:33:59.4538387Z [3335/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\EmptyTensor.cpp.obj 2025-07-17T07:33:59.5150713Z [3336/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CuSparseHandlePool.cpp.obj 2025-07-17T07:34:01.6187636Z [3337/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Exceptions.cpp.obj 2025-07-17T07:34:01.6552158Z [3338/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseDescriptors.cpp.obj 2025-07-17T07:34:02.3699568Z [3339/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_basic.cpp.obj 2025-07-17T07:34:02.7036877Z [3340/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CachingHostAllocator.cpp.obj 2025-07-17T07:34:02.9279910Z [3341/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\llvm_complex.cpp.obj 2025-07-17T07:34:03.3517660Z [3342/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\PeerToPeerAccess.cpp.obj 2025-07-17T07:34:05.3291717Z [3343/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\LazyNVRTC.cpp.obj 2025-07-17T07:34:05.9770063Z [3344/7682] Building CXX object caffe2\CMakeFiles\torch_cpu.dir\__\aten\src\ATen\native\cpu\FlashAttentionKernel.cpp.AVX512.cpp.obj 2025-07-17T07:34:06.0396625Z [3345/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGraph.cpp.obj 2025-07-17T07:34:06.1330107Z [3346/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDAGeneratorImpl.cpp.obj 2025-07-17T07:34:06.5188834Z [3347/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cpp.obj 2025-07-17T07:34:08.4940735Z [3348/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\CUDAHooks.cpp.obj 2025-07-17T07:34:08.5665925Z [3349/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Resize.cpp.obj 2025-07-17T07:34:09.2527038Z [3350/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvPlaceholders.cpp.obj 2025-07-17T07:34:09.2957768Z [3351/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cpp.obj 2025-07-17T07:34:11.1137235Z [3352/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\AffineGridGenerator.cpp.obj 2025-07-17T07:34:11.6582819Z [3353/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\BatchNorm.cpp.obj 2025-07-17T07:34:12.3790498Z [3354/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\ConvShared.cpp.obj 2025-07-17T07:34:14.7411222Z [3355/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\GridSampler.cpp.obj 2025-07-17T07:34:14.7791444Z [3356/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v7.cpp.obj 2025-07-17T07:34:15.2078782Z [3357/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\LossCTC.cpp.obj 2025-07-17T07:34:17.3781261Z [3358/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\BatchNorm_miopen.cpp.obj 2025-07-17T07:34:19.4580250Z [3359/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\RNN.cpp.obj 2025-07-17T07:34:19.5261510Z [3360/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\Conv_miopen.cpp.obj 2025-07-17T07:34:19.7509681Z [3361/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\miopen\RNN_miopen.cpp.obj 2025-07-17T07:34:24.3437814Z [3362/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerUtils.cpp.obj 2025-07-17T07:34:26.2336389Z [3363/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cpp.obj 2025-07-17T07:34:42.2207650Z [3364/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\Conv_v8.cpp.obj 2025-07-17T07:34:48.5595032Z [3365/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\BinaryOps.cpp.obj 2025-07-17T07:34:49.6392917Z [3366/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cudnn\MHA.cpp.obj 2025-07-17T07:34:52.2308905Z [3367/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvPrepack.cpp.obj 2025-07-17T07:34:53.6606993Z [3368/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Conv.cpp.obj 2025-07-17T07:34:56.6538835Z [3369/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\ConvUnpackImpl.cpp.obj 2025-07-17T07:34:59.1896117Z [3370/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\sdp_utils.cpp.obj 2025-07-17T07:35:00.8304928Z [3371/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\cuSPARSELtOps.cpp.obj 2025-07-17T07:35:00.9338024Z [3372/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Linear.cpp.obj 2025-07-17T07:35:01.0046356Z [3373/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\Pooling.cpp.obj 2025-07-17T07:35:03.5032888Z [3374/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Handle.cpp.obj 2025-07-17T07:35:06.5229725Z [3375/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\distributed\c10d\reducer_cuda.cpp.obj 2025-07-17T07:35:07.8194341Z [3376/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\AutocastRNN.cpp.obj 2025-07-17T07:35:09.7765123Z [3377/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Descriptors.cpp.obj 2025-07-17T07:35:10.3616310Z [3378/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cudnn\Types.cpp.obj 2025-07-17T07:35:11.6801765Z [3379/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\generated\c_shim_cuda.cpp.obj 2025-07-17T07:35:15.5908421Z [3380/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorFactories.cu.obj 2025-07-17T07:35:15.6759172Z TensorFactories.cu 2025-07-17T07:35:15.6759559Z tmpxft_000015c8_00000000-7_TensorFactories.cudafe1.cpp 2025-07-17T07:35:15.6760196Z [3381/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\Sleep.cu.obj 2025-07-17T07:35:15.6851489Z Sleep.cu 2025-07-17T07:35:15.6851967Z tmpxft_00000ee4_00000000-7_Sleep.cudafe1.cpp 2025-07-17T07:35:15.6852810Z [3382/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortKeys.cu.obj 2025-07-17T07:35:15.7704570Z cub-RadixSortKeys.cu 2025-07-17T07:35:15.7705259Z tmpxft_00000e78_00000000-7_cub-RadixSortKeys.cudafe1.cpp 2025-07-17T07:35:15.7706329Z [3383/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-f16-8.cu.obj 2025-07-17T07:35:15.7733851Z cub-RadixSortPairs-f16-8.cu 2025-07-17T07:35:15.7734613Z tmpxft_0000100c_00000000-7_cub-RadixSortPairs-f16-8.cudafe1.cpp 2025-07-17T07:35:15.7735855Z [3384/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-1.cu.obj 2025-07-17T07:35:17.4899750Z cub-RadixSortPairs-int32-1.cu 2025-07-17T07:35:17.4900504Z tmpxft_000013e4_00000000-7_cub-RadixSortPairs-int32-1.cudafe1.cpp 2025-07-17T07:35:17.4902316Z [3385/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearPrepack.cpp.obj 2025-07-17T07:35:19.3108525Z [3386/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-2.cu.obj 2025-07-17T07:35:19.3922486Z cub-RadixSortPairs-int64-2.cu 2025-07-17T07:35:19.3923314Z tmpxft_00000e54_00000000-7_cub-RadixSortPairs-int64-2.cudafe1.cpp 2025-07-17T07:35:19.3924649Z [3387/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-4.cu.obj 2025-07-17T07:35:19.4255818Z cub-RadixSortPairs-int64-4.cu 2025-07-17T07:35:19.4256641Z tmpxft_0000116c_00000000-7_cub-RadixSortPairs-int64-4.cudafe1.cpp 2025-07-17T07:35:19.4257937Z [3388/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-2.cu.obj 2025-07-17T07:35:19.4730557Z cub-RadixSortPairs-int32-2.cu 2025-07-17T07:35:19.4731351Z tmpxft_000015d8_00000000-7_cub-RadixSortPairs-int32-2.cudafe1.cpp 2025-07-17T07:35:19.4732752Z [3389/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int64-1.cu.obj 2025-07-17T07:35:19.5526999Z cub-RadixSortPairs-int64-1.cu 2025-07-17T07:35:19.5527833Z tmpxft_00000c70_00000000-7_cub-RadixSortPairs-int64-1.cudafe1.cpp 2025-07-17T07:35:19.5529233Z [3390/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-int32-4.cu.obj 2025-07-17T07:35:20.0118953Z cub-RadixSortPairs-int32-4.cu 2025-07-17T07:35:20.0120484Z tmpxft_00001128_00000000-7_cub-RadixSortPairs-int32-4.cudafe1.cpp 2025-07-17T07:35:20.0121941Z [3391/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cudnn\LinearUnpackImpl.cpp.obj 2025-07-17T07:35:21.0552515Z [3392/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-scalars.cu.obj 2025-07-17T07:35:21.7872657Z cub-RadixSortPairs-scalars.cu 2025-07-17T07:35:21.7873136Z tmpxft_00001274_00000000-7_cub-RadixSortPairs-scalars.cudafe1.cpp 2025-07-17T07:35:21.7873874Z [3393/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\detail\IndexUtils.cu.obj 2025-07-17T07:35:22.9046614Z IndexUtils.cu 2025-07-17T07:35:22.9046979Z tmpxft_00000fe0_00000000-7_IndexUtils.cudafe1.cpp 2025-07-17T07:35:22.9047656Z [3394/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint64-8.cu.obj 2025-07-17T07:35:22.9452821Z cub-RadixSortPairs-uint64-8.cu 2025-07-17T07:35:22.9453325Z tmpxft_00000ee0_00000000-7_cub-RadixSortPairs-uint64-8.cudafe1.cpp 2025-07-17T07:35:22.9454097Z [3395/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint16-8.cu.obj 2025-07-17T07:35:22.9748396Z cub-RadixSortPairs-uint16-8.cu 2025-07-17T07:35:22.9748876Z tmpxft_000014f8_00000000-7_cub-RadixSortPairs-uint16-8.cudafe1.cpp 2025-07-17T07:35:22.9749548Z [3396/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub.cu.obj 2025-07-17T07:35:23.0228319Z cub.cu 2025-07-17T07:35:23.0228870Z tmpxft_000014e4_00000000-7_cub.cudafe1.cpp 2025-07-17T07:35:23.0230104Z [3397/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\cub-RadixSortPairs-uint32-8.cu.obj 2025-07-17T07:35:23.0715506Z cub-RadixSortPairs-uint32-8.cu 2025-07-17T07:35:23.0717335Z tmpxft_000009b4_00000000-7_cub-RadixSortPairs-uint32-8.cudafe1.cpp 2025-07-17T07:35:23.0718876Z [3398/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\jiterator.cu.obj 2025-07-17T07:35:23.5330184Z jiterator.cu 2025-07-17T07:35:23.5330583Z tmpxft_000014d8_00000000-7_jiterator.cudafe1.cpp 2025-07-17T07:35:23.5331759Z [3399/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AbsKernel.cu.obj 2025-07-17T07:35:24.2266269Z AbsKernel.cu 2025-07-17T07:35:24.2266802Z tmpxft_000003f0_00000000-7_AbsKernel.cudafe1.cpp 2025-07-17T07:35:24.2267930Z [3400/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationEluKernel.cu.obj 2025-07-17T07:35:25.4292731Z ActivationEluKernel.cu 2025-07-17T07:35:25.4293174Z tmpxft_000008a0_00000000-7_ActivationEluKernel.cudafe1.cpp 2025-07-17T07:35:25.4293875Z [3401/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGeluKernel.cu.obj 2025-07-17T07:35:25.4769481Z ActivationGeluKernel.cu 2025-07-17T07:35:25.4769999Z tmpxft_00000900_00000000-7_ActivationGeluKernel.cudafe1.cpp 2025-07-17T07:35:25.4770819Z [3402/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardshrinkKernel.cu.obj 2025-07-17T07:35:25.5131719Z ActivationHardshrinkKernel.cu 2025-07-17T07:35:25.5132216Z tmpxft_000013c0_00000000-7_ActivationHardshrinkKernel.cudafe1.cpp 2025-07-17T07:35:25.5133567Z [3403/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardsigmoidKernel.cu.obj 2025-07-17T07:35:25.5924520Z ActivationHardsigmoidKernel.cu 2025-07-17T07:35:25.5925108Z tmpxft_00000f5c_00000000-7_ActivationHardsigmoidKernel.cudafe1.cpp 2025-07-17T07:35:25.5925929Z [3404/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardswishKernel.cu.obj 2025-07-17T07:35:25.6077798Z ActivationHardswishKernel.cu 2025-07-17T07:35:25.6078564Z tmpxft_00000944_00000000-7_ActivationHardswishKernel.cudafe1.cpp 2025-07-17T07:35:25.6081437Z [3405/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationGluKernel.cu.obj 2025-07-17T07:35:25.9239248Z ActivationGluKernel.cu 2025-07-17T07:35:25.9239733Z tmpxft_0000141c_00000000-7_ActivationGluKernel.cudafe1.cpp 2025-07-17T07:35:25.9240480Z [3406/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationHardtanhKernel.cu.obj 2025-07-17T07:35:26.6651215Z ActivationHardtanhKernel.cu 2025-07-17T07:35:26.6652376Z tmpxft_00000750_00000000-7_ActivationHardtanhKernel.cudafe1.cpp 2025-07-17T07:35:26.6654050Z [3407/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLeakyReluKernel.cu.obj 2025-07-17T07:35:27.9498884Z ActivationLeakyReluKernel.cu 2025-07-17T07:35:27.9499388Z tmpxft_000012cc_00000000-7_ActivationLeakyReluKernel.cudafe1.cpp 2025-07-17T07:35:27.9500210Z [3408/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationLogSigmoidKernel.cu.obj 2025-07-17T07:35:27.9605740Z ActivationLogSigmoidKernel.cu 2025-07-17T07:35:27.9606546Z tmpxft_000004bc_00000000-7_ActivationLogSigmoidKernel.cudafe1.cpp 2025-07-17T07:35:27.9607885Z [3409/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationMishKernel.cu.obj 2025-07-17T07:35:28.0426475Z ActivationMishKernel.cu 2025-07-17T07:35:28.0426935Z tmpxft_0000172c_00000000-7_ActivationMishKernel.cudafe1.cpp 2025-07-17T07:35:28.0427700Z [3410/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationPreluKernel.cu.obj 2025-07-17T07:35:28.0944452Z ActivationPreluKernel.cu 2025-07-17T07:35:28.0944885Z tmpxft_0000153c_00000000-7_ActivationPreluKernel.cudafe1.cpp 2025-07-17T07:35:28.0945615Z [3411/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftplusKernel.cu.obj 2025-07-17T07:35:28.1241095Z ActivationSoftplusKernel.cu 2025-07-17T07:35:28.1242065Z tmpxft_00000b14_00000000-7_ActivationSoftplusKernel.cudafe1.cpp 2025-07-17T07:35:28.1243883Z [3412/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSiluKernel.cu.obj 2025-07-17T07:35:28.5723066Z ActivationSiluKernel.cu 2025-07-17T07:35:28.5723723Z tmpxft_000017fc_00000000-7_ActivationSiluKernel.cudafe1.cpp 2025-07-17T07:35:28.5724958Z [3413/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationSoftshrinkKernel.cu.obj 2025-07-17T07:35:29.0299575Z ActivationSoftshrinkKernel.cu 2025-07-17T07:35:29.0300304Z tmpxft_000012d4_00000000-7_ActivationSoftshrinkKernel.cudafe1.cpp 2025-07-17T07:35:29.0301917Z [3414/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ActivationThresholdKernel.cu.obj 2025-07-17T07:35:31.1745013Z ActivationThresholdKernel.cu 2025-07-17T07:35:31.1745465Z tmpxft_00000564_00000000-7_ActivationThresholdKernel.cudafe1.cpp 2025-07-17T07:35:31.1746206Z [3415/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling2d.cu.obj 2025-07-17T07:35:31.2005405Z AdaptiveMaxPooling2d.cu 2025-07-17T07:35:31.2005789Z tmpxft_000002a4_00000000-7_AdaptiveMaxPooling2d.cudafe1.cpp 2025-07-17T07:35:31.2006479Z [3416/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling3d.cu.obj 2025-07-17T07:35:31.2240194Z AdaptiveAveragePooling3d.cu 2025-07-17T07:35:31.2240633Z tmpxft_0000151c_00000000-7_AdaptiveAveragePooling3d.cudafe1.cpp 2025-07-17T07:35:31.2241335Z [3417/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveMaxPooling3d.cu.obj 2025-07-17T07:35:31.2930312Z AdaptiveMaxPooling3d.cu 2025-07-17T07:35:31.2931036Z tmpxft_00000864_00000000-7_AdaptiveMaxPooling3d.cudafe1.cpp 2025-07-17T07:35:31.2932311Z [3418/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AmpKernels.cu.obj 2025-07-17T07:35:31.3092374Z AmpKernels.cu 2025-07-17T07:35:31.3092868Z tmpxft_00000d74_00000000-7_AmpKernels.cudafe1.cpp 2025-07-17T07:35:31.3094198Z [3419/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AdaptiveAveragePooling.cu.obj 2025-07-17T07:35:31.5020629Z AdaptiveAveragePooling.cu 2025-07-17T07:35:31.5021353Z tmpxft_000002c0_00000000-7_AdaptiveAveragePooling.cudafe1.cpp 2025-07-17T07:35:31.5022580Z [3420/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool2d.cu.obj 2025-07-17T07:35:32.0012437Z AveragePool2d.cu 2025-07-17T07:35:32.0013095Z tmpxft_000010a8_00000000-7_AveragePool2d.cudafe1.cpp 2025-07-17T07:35:32.0015381Z [3421/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\AveragePool3d.cu.obj 2025-07-17T07:35:33.5909832Z AveragePool3d.cu 2025-07-17T07:35:33.5910174Z tmpxft_00000854_00000000-7_AveragePool3d.cudafe1.cpp 2025-07-17T07:35:33.5910851Z [3422/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryBitwiseOpsKernels.cu.obj 2025-07-17T07:35:33.6392807Z BinaryBitwiseOpsKernels.cu 2025-07-17T07:35:33.6393477Z tmpxft_000016b8_00000000-7_BinaryBitwiseOpsKernels.cudafe1.cpp 2025-07-17T07:35:33.6394636Z [3423/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivFloorKernel.cu.obj 2025-07-17T07:35:33.7861017Z BinaryDivFloorKernel.cu 2025-07-17T07:35:33.7861483Z tmpxft_00000b5c_00000000-7_BinaryDivFloorKernel.cudafe1.cpp 2025-07-17T07:35:33.7862187Z [3424/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTrueKernel.cu.obj 2025-07-17T07:35:33.8587067Z BinaryDivTrueKernel.cu 2025-07-17T07:35:33.8587670Z tmpxft_000011bc_00000000-7_BinaryDivTrueKernel.cudafe1.cpp 2025-07-17T07:35:33.8591418Z [3425/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryGeometricKernels.cu.obj 2025-07-17T07:35:33.8621873Z BinaryGeometricKernels.cu 2025-07-17T07:35:33.8622603Z tmpxft_0000055c_00000000-7_BinaryGeometricKernels.cudafe1.cpp 2025-07-17T07:35:33.8623970Z [3426/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryDivTruncKernel.cu.obj 2025-07-17T07:35:34.0776458Z BinaryDivTruncKernel.cu 2025-07-17T07:35:34.0777178Z tmpxft_000016bc_00000000-7_BinaryDivTruncKernel.cudafe1.cpp 2025-07-17T07:35:34.0778750Z [3427/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryLogicalOpsKernels.cu.obj 2025-07-17T07:35:34.2996174Z BinaryLogicalOpsKernels.cu 2025-07-17T07:35:34.2998070Z tmpxft_000012f0_00000000-7_BinaryLogicalOpsKernels.cudafe1.cpp 2025-07-17T07:35:34.2999916Z [3428/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscBackwardOpsKernels.cu.obj 2025-07-17T07:35:36.1909782Z BinaryMiscBackwardOpsKernels.cu 2025-07-17T07:35:36.1910286Z tmpxft_00000824_00000000-7_BinaryMiscBackwardOpsKernels.cudafe1.cpp 2025-07-17T07:35:36.1910997Z [3429/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMulKernel.cu.obj 2025-07-17T07:35:36.2903792Z BinaryMulKernel.cu 2025-07-17T07:35:36.2904185Z tmpxft_00001558_00000000-7_BinaryMulKernel.cudafe1.cpp 2025-07-17T07:35:36.2904845Z [3430/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryMiscOpsKernels.cu.obj 2025-07-17T07:35:36.3587639Z BinaryMiscOpsKernels.cu 2025-07-17T07:35:36.3588290Z tmpxft_00000474_00000000-7_BinaryMiscOpsKernels.cudafe1.cpp 2025-07-17T07:35:36.3589682Z [3431/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryShiftOpsKernels.cu.obj 2025-07-17T07:35:36.3866214Z BinaryShiftOpsKernels.cu 2025-07-17T07:35:36.3866895Z tmpxft_000007d4_00000000-7_BinaryShiftOpsKernels.cudafe1.cpp 2025-07-17T07:35:36.3868192Z [3432/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\BinaryRemainderKernel.cu.obj 2025-07-17T07:35:37.0989759Z BinaryRemainderKernel.cu 2025-07-17T07:35:37.0990261Z tmpxft_000017dc_00000000-7_BinaryRemainderKernel.cudafe1.cpp 2025-07-17T07:35:37.0990905Z [3433/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Bucketization.cu.obj 2025-07-17T07:35:37.1136324Z Bucketization.cu 2025-07-17T07:35:37.1136867Z tmpxft_00001350_00000000-7_Bucketization.cudafe1.cpp 2025-07-17T07:35:37.1137973Z [3434/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CUDAScalar.cu.obj 2025-07-17T07:35:37.4246307Z CUDAScalar.cu 2025-07-17T07:35:37.4246814Z tmpxft_00001274_00000000-7_CUDAScalar.cudafe1.cpp 2025-07-17T07:35:37.4248282Z [3435/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Col2Im.cu.obj 2025-07-17T07:35:38.7550219Z Col2Im.cu 2025-07-17T07:35:38.7550518Z tmpxft_00000850_00000000-7_Col2Im.cudafe1.cpp 2025-07-17T07:35:38.7551196Z [3436/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareEQKernel.cu.obj 2025-07-17T07:35:38.8639838Z CompareEQKernel.cu 2025-07-17T07:35:38.8640185Z tmpxft_000000e4_00000000-7_CompareEQKernel.cudafe1.cpp 2025-07-17T07:35:38.8640810Z [3437/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CompareKernels.cu.obj 2025-07-17T07:35:39.5439890Z CompareKernels.cu 2025-07-17T07:35:39.5440232Z tmpxft_00000dcc_00000000-7_CompareKernels.cudafe1.cpp 2025-07-17T07:35:39.5440866Z [3438/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CopysignKernel.cu.obj 2025-07-17T07:35:39.6782907Z CopysignKernel.cu 2025-07-17T07:35:39.6783526Z tmpxft_00001080_00000000-7_CopysignKernel.cudafe1.cpp 2025-07-17T07:35:39.6784738Z [3439/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ConvolutionMM2d.cu.obj 2025-07-17T07:35:39.6905329Z ConvolutionMM2d.cu 2025-07-17T07:35:39.6905997Z tmpxft_0000129c_00000000-7_ConvolutionMM2d.cudafe1.cpp 2025-07-17T07:35:39.6906632Z [3440/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ComplexKernel.cu.obj 2025-07-17T07:35:40.5299151Z ComplexKernel.cu 2025-07-17T07:35:40.5299672Z tmpxft_000015b0_00000000-7_ComplexKernel.cudafe1.cpp 2025-07-17T07:35:40.5300594Z [3441/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CrossKernel.cu.obj 2025-07-17T07:35:40.6216427Z CrossKernel.cu 2025-07-17T07:35:40.6217015Z tmpxft_0000114c_00000000-7_CrossKernel.cudafe1.cpp 2025-07-17T07:35:40.6218115Z [3442/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Copy.cu.obj 2025-07-17T07:35:42.1667307Z Copy.cu 2025-07-17T07:35:42.1667723Z tmpxft_00000bd8_00000000-7_Copy.cudafe1.cpp 2025-07-17T07:35:42.1668810Z [3443/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumminmaxKernel.cu.obj 2025-07-17T07:35:42.4456401Z CumminmaxKernel.cu 2025-07-17T07:35:42.4456776Z tmpxft_000016dc_00000000-7_CumminmaxKernel.cudafe1.cpp 2025-07-17T07:35:42.4457455Z [3444/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumprodKernel.cu.obj 2025-07-17T07:35:42.8327485Z CumprodKernel.cu 2025-07-17T07:35:42.8328060Z tmpxft_00000ffc_00000000-7_CumprodKernel.cudafe1.cpp 2025-07-17T07:35:42.8329217Z [3445/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv2d.cu.obj 2025-07-17T07:35:42.9681587Z DepthwiseConv2d.cu 2025-07-17T07:35:42.9682126Z tmpxft_00000888_00000000-7_DepthwiseConv2d.cudafe1.cpp 2025-07-17T07:35:43.1376370Z [3446/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DepthwiseConv3d.cu.obj 2025-07-17T07:35:43.1377397Z DepthwiseConv3d.cu 2025-07-17T07:35:43.1377876Z tmpxft_00001588_00000000-7_DepthwiseConv3d.cudafe1.cpp 2025-07-17T07:35:43.1379001Z [3447/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\CumsumKernel.cu.obj 2025-07-17T07:35:43.6762698Z CumsumKernel.cu 2025-07-17T07:35:43.6763032Z tmpxft_00000efc_00000000-7_CumsumKernel.cudafe1.cpp 2025-07-17T07:35:43.6763691Z [3448/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool3d.cu.obj 2025-07-17T07:35:43.7274046Z DilatedMaxPool3d.cu 2025-07-17T07:35:43.7274639Z tmpxft_0000143c_00000000-7_DilatedMaxPool3d.cudafe1.cpp 2025-07-17T07:35:43.7275844Z [3449/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DilatedMaxPool2d.cu.obj 2025-07-17T07:35:45.3351947Z DilatedMaxPool2d.cu 2025-07-17T07:35:45.3352327Z tmpxft_000008d0_00000000-7_DilatedMaxPool2d.cudafe1.cpp 2025-07-17T07:35:45.3352997Z [3450/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionBernoulli.cu.obj 2025-07-17T07:35:45.3437436Z DistributionBernoulli.cu 2025-07-17T07:35:45.3437876Z tmpxft_000017c8_00000000-7_DistributionBernoulli.cudafe1.cpp 2025-07-17T07:35:45.3438553Z [3451/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistanceKernel.cu.obj 2025-07-17T07:35:45.6937843Z DistanceKernel.cu 2025-07-17T07:35:45.6938265Z tmpxft_00000424_00000000-7_DistanceKernel.cudafe1.cpp 2025-07-17T07:35:45.6938943Z [3452/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionCauchyKernel.cu.obj 2025-07-17T07:35:45.8486613Z DistributionCauchyKernel.cu 2025-07-17T07:35:45.8487577Z tmpxft_000016f0_00000000-7_DistributionCauchyKernel.cudafe1.cpp 2025-07-17T07:35:45.8489017Z [3453/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionExponentialKernel.cu.obj 2025-07-17T07:35:45.9504419Z DistributionExponentialKernel.cu 2025-07-17T07:35:45.9505297Z tmpxft_000003d4_00000000-7_DistributionExponentialKernel.cudafe1.cpp 2025-07-17T07:35:45.9506889Z [3454/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionGeometricKernel.cu.obj 2025-07-17T07:35:46.4522477Z DistributionGeometricKernel.cu 2025-07-17T07:35:46.4523424Z tmpxft_00001424_00000000-7_DistributionGeometricKernel.cudafe1.cpp 2025-07-17T07:35:46.4524756Z [3455/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionNormal.cu.obj 2025-07-17T07:35:46.6012881Z DistributionNormal.cu 2025-07-17T07:35:46.6015332Z tmpxft_00000abc_00000000-7_DistributionNormal.cudafe1.cpp 2025-07-17T07:35:46.6016617Z [3456/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionLogNormalKernel.cu.obj 2025-07-17T07:35:48.2674112Z DistributionLogNormalKernel.cu 2025-07-17T07:35:48.2674637Z tmpxft_00000c24_00000000-7_DistributionLogNormalKernel.cudafe1.cpp 2025-07-17T07:35:48.2675483Z [3457/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionUniform.cu.obj 2025-07-17T07:35:48.2804354Z DistributionUniform.cu 2025-07-17T07:35:48.2805198Z tmpxft_0000042c_00000000-7_DistributionUniform.cudafe1.cpp 2025-07-17T07:35:48.2806479Z [3458/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\DistributionRandomKernel.cu.obj 2025-07-17T07:35:48.7162078Z DistributionRandomKernel.cu 2025-07-17T07:35:48.7163008Z tmpxft_00000d74_00000000-7_DistributionRandomKernel.cudafe1.cpp 2025-07-17T07:35:48.7164069Z [3459/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cu.obj 2025-07-17T07:35:49.5154379Z Distributions.cu 2025-07-17T07:35:49.5155098Z tmpxft_000017c4_00000000-7_Distributions.cudafe1.cpp 2025-07-17T07:35:49.5156258Z [3460/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Dropout.cu.obj 2025-07-17T07:35:50.4226824Z Dropout.cu 2025-07-17T07:35:50.4227335Z tmpxft_00001638_00000000-7_Dropout.cudafe1.cpp 2025-07-17T07:35:50.4228500Z [3461/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Embedding.cu.obj 2025-07-17T07:35:50.7190379Z Embedding.cu 2025-07-17T07:35:50.7190880Z tmpxft_00001714_00000000-7_Embedding.cudafe1.cpp 2025-07-17T07:35:50.7192031Z [3462/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FillKernel.cu.obj 2025-07-17T07:35:50.8635967Z FillKernel.cu 2025-07-17T07:35:50.8636480Z tmpxft_000017dc_00000000-7_FillKernel.cudafe1.cpp 2025-07-17T07:35:50.8637718Z [3463/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBackwardKernel.cu.obj 2025-07-17T07:35:51.0663088Z EmbeddingBackwardKernel.cu 2025-07-17T07:35:51.0663814Z tmpxft_000012a8_00000000-7_EmbeddingBackwardKernel.cudafe1.cpp 2025-07-17T07:35:51.0665119Z [3464/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\EmbeddingBag.cu.obj 2025-07-17T07:35:51.4299758Z EmbeddingBag.cu 2025-07-17T07:35:51.4300345Z tmpxft_00001354_00000000-7_EmbeddingBag.cudafe1.cpp 2025-07-17T07:35:51.4301562Z [3465/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FlattenIndicesKernel.cu.obj 2025-07-17T07:35:51.9067513Z FlattenIndicesKernel.cu 2025-07-17T07:35:51.9068474Z tmpxft_00000abc_00000000-7_FlattenIndicesKernel.cudafe1.cpp 2025-07-17T07:35:51.9069616Z [3466/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpList.cu.obj 2025-07-17T07:35:52.6267937Z ForeachBinaryOpList.cu 2025-07-17T07:35:52.6268346Z tmpxft_00000d10_00000000-7_ForeachBinaryOpList.cudafe1.cpp 2025-07-17T07:35:52.6269090Z [3467/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalar.cu.obj 2025-07-17T07:35:53.5290406Z ForeachBinaryOpScalar.cu 2025-07-17T07:35:53.5291002Z tmpxft_00000d08_00000000-7_ForeachBinaryOpScalar.cudafe1.cpp 2025-07-17T07:35:53.5292468Z [3468/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarList.cu.obj 2025-07-17T07:35:53.7992928Z ForeachBinaryOpScalarList.cu 2025-07-17T07:35:53.7993741Z tmpxft_00001730_00000000-7_ForeachBinaryOpScalarList.cudafe1.cpp 2025-07-17T07:35:53.7994988Z [3469/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachBinaryOpScalarTensor.cu.obj 2025-07-17T07:35:53.9768997Z ForeachBinaryOpScalarTensor.cu 2025-07-17T07:35:53.9769635Z tmpxft_00001584_00000000-7_ForeachBinaryOpScalarTensor.cudafe1.cpp 2025-07-17T07:35:53.9770400Z [3470/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachPointwiseOp.cu.obj 2025-07-17T07:35:54.2970280Z ForeachPointwiseOp.cu 2025-07-17T07:35:54.2970934Z tmpxft_000004c4_00000000-7_ForeachPointwiseOp.cudafe1.cpp 2025-07-17T07:35:54.2972125Z [3471/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachReduceOp.cu.obj 2025-07-17T07:35:54.4622613Z ForeachReduceOp.cu 2025-07-17T07:35:54.4623374Z tmpxft_00001320_00000000-7_ForeachReduceOp.cudafe1.cpp 2025-07-17T07:35:54.4624562Z [3472/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachTernaryOp.cu.obj 2025-07-17T07:35:55.1926748Z ForeachTernaryOp.cu 2025-07-17T07:35:55.1927360Z tmpxft_000017d0_00000000-7_ForeachTernaryOp.cudafe1.cpp 2025-07-17T07:35:55.1928582Z [3473/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ForeachUnaryOp.cu.obj 2025-07-17T07:35:55.5346896Z ForeachUnaryOp.cu 2025-07-17T07:35:55.5347490Z tmpxft_000014b8_00000000-7_ForeachUnaryOp.cudafe1.cpp 2025-07-17T07:35:55.5348684Z [3474/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool2d.cu.obj 2025-07-17T07:35:56.2935253Z FractionalMaxPool2d.cu 2025-07-17T07:35:56.2935640Z tmpxft_000011d4_00000000-7_FractionalMaxPool2d.cudafe1.cpp 2025-07-17T07:35:56.2936395Z [3475/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FunctionOfAMatrixUtilsKernel.cu.obj 2025-07-17T07:35:56.6702156Z FunctionOfAMatrixUtilsKernel.cu 2025-07-17T07:35:56.6702670Z tmpxft_00000c70_00000000-7_FunctionOfAMatrixUtilsKernel.cudafe1.cpp 2025-07-17T07:35:56.6703469Z [3476/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamKernel.cu.obj 2025-07-17T07:35:56.7482421Z FusedAdamKernel.cu 2025-07-17T07:35:56.7482783Z tmpxft_00001094_00000000-7_FusedAdamKernel.cudafe1.cpp 2025-07-17T07:35:56.7483484Z [3477/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FractionalMaxPool3d.cu.obj 2025-07-17T07:35:57.0200188Z FractionalMaxPool3d.cu 2025-07-17T07:35:57.0200833Z tmpxft_000007ec_00000000-7_FractionalMaxPool3d.cudafe1.cpp 2025-07-17T07:35:57.0202046Z [3478/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedAdamWKernel.cu.obj 2025-07-17T07:35:57.5795619Z FusedAdamWKernel.cu 2025-07-17T07:35:57.5796254Z tmpxft_00001658_00000000-7_FusedAdamWKernel.cudafe1.cpp 2025-07-17T07:35:57.5797498Z [3479/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\FusedSgdKernel.cu.obj 2025-07-17T07:35:57.6560131Z FusedSgdKernel.cu 2025-07-17T07:35:57.6560588Z tmpxft_000005dc_00000000-7_FusedSgdKernel.cudafe1.cpp 2025-07-17T07:35:57.6561274Z [3480/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GcdLcmKernel.cu.obj 2025-07-17T07:35:57.8707598Z GcdLcmKernel.cu 2025-07-17T07:35:57.8708171Z tmpxft_00000ce4_00000000-7_GcdLcmKernel.cudafe1.cpp 2025-07-17T07:35:57.8709276Z [3481/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cu.obj 2025-07-17T07:35:59.1732833Z GridSampler.cu 2025-07-17T07:35:59.1733159Z tmpxft_0000150c_00000000-7_GridSampler.cudafe1.cpp 2025-07-17T07:35:59.1733928Z [3482/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IGammaKernel.cu.obj 2025-07-17T07:35:59.2111430Z IGammaKernel.cu 2025-07-17T07:35:59.2112121Z tmpxft_00001068_00000000-7_IGammaKernel.cudafe1.cpp 2025-07-17T07:35:59.2113249Z [3483/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GroupMM.cu.obj 2025-07-17T07:35:59.6410726Z GroupMM.cu 2025-07-17T07:35:59.6411217Z tmpxft_000012d4_00000000-7_GroupMM.cudafe1.cpp 2025-07-17T07:35:59.6412300Z [3484/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cu.obj 2025-07-17T07:35:59.9940976Z IndexKernel.cu 2025-07-17T07:35:59.9941355Z tmpxft_00000d78_00000000-7_IndexKernel.cudafe1.cpp 2025-07-17T07:35:59.9941972Z [3485/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Im2Col.cu.obj 2025-07-17T07:36:00.0532152Z Im2Col.cu 2025-07-17T07:36:00.0532604Z tmpxft_0000124c_00000000-7_Im2Col.cudafe1.cpp 2025-07-17T07:36:00.0533736Z [3486/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernelUtils.cu.obj 2025-07-17T07:36:01.1584233Z IndexKernelUtils.cu 2025-07-17T07:36:01.1584805Z tmpxft_00001468_00000000-7_IndexKernelUtils.cudafe1.cpp 2025-07-17T07:36:01.1585832Z [3487/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Indexing.cu.obj 2025-07-17T07:36:01.6058976Z Indexing.cu 2025-07-17T07:36:01.6059281Z tmpxft_000008f8_00000000-7_Indexing.cudafe1.cpp 2025-07-17T07:36:01.6059928Z [3488/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Lerp.cu.obj 2025-07-17T07:36:01.9768040Z Lerp.cu 2025-07-17T07:36:01.9768473Z tmpxft_00000abc_00000000-7_Lerp.cudafe1.cpp 2025-07-17T07:36:01.9769444Z [3489/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogAddExpKernel.cu.obj 2025-07-17T07:36:02.3768937Z LogAddExpKernel.cu 2025-07-17T07:36:02.3769298Z tmpxft_000017ac_00000000-7_LogAddExpKernel.cudafe1.cpp 2025-07-17T07:36:02.3769953Z [3490/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebra.cu.obj 2025-07-17T07:36:03.0198013Z LinearAlgebra.cu 2025-07-17T07:36:03.0198370Z tmpxft_000011f4_00000000-7_LinearAlgebra.cudafe1.cpp 2025-07-17T07:36:03.0199016Z [3491/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LegacyThrustHelpers.cu.obj 2025-07-17T07:36:03.1657732Z LegacyThrustHelpers.cu 2025-07-17T07:36:03.1658429Z tmpxft_000005f0_00000000-7_LegacyThrustHelpers.cudafe1.cpp 2025-07-17T07:36:03.5923361Z [3492/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Loss.cu.obj 2025-07-17T07:36:03.5924469Z Loss.cu 2025-07-17T07:36:03.5924825Z tmpxft_00000744_00000000-7_Loss.cudafe1.cpp 2025-07-17T07:36:03.5925935Z [3493/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LogcumsumexpKernel.cu.obj 2025-07-17T07:36:04.1380547Z LogcumsumexpKernel.cu 2025-07-17T07:36:04.1381306Z tmpxft_000002e8_00000000-7_LogcumsumexpKernel.cudafe1.cpp 2025-07-17T07:36:04.1382610Z [3494/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxMinElementwiseKernel.cu.obj 2025-07-17T07:36:04.4466536Z MaxMinElementwiseKernel.cu 2025-07-17T07:36:04.4467299Z tmpxft_00001050_00000000-7_MaxMinElementwiseKernel.cudafe1.cpp 2025-07-17T07:36:04.4468471Z [3495/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LossCTC.cu.obj 2025-07-17T07:36:05.1780319Z LossCTC.cu 2025-07-17T07:36:05.1780796Z tmpxft_00000080_00000000-7_LossCTC.cudafe1.cpp 2025-07-17T07:36:05.1781859Z [3496/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MaxUnpooling.cu.obj 2025-07-17T07:36:06.2135743Z MaxUnpooling.cu 2025-07-17T07:36:06.2136284Z tmpxft_00000ecc_00000000-7_MaxUnpooling.cudafe1.cpp 2025-07-17T07:36:06.2137574Z [3497/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiLabelMarginCriterion.cu.obj 2025-07-17T07:36:06.3150847Z MultiLabelMarginCriterion.cu 2025-07-17T07:36:06.3151315Z tmpxft_000005f0_00000000-7_MultiLabelMarginCriterion.cudafe1.cpp 2025-07-17T07:36:06.3152092Z [3498/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultiMarginLoss.cu.obj 2025-07-17T07:36:07.0332177Z MultiMarginLoss.cu 2025-07-17T07:36:07.0332546Z tmpxft_00000d74_00000000-7_MultiMarginLoss.cudafe1.cpp 2025-07-17T07:36:07.0333318Z [3499/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MultinomialKernel.cu.obj 2025-07-17T07:36:07.2989040Z MultinomialKernel.cu 2025-07-17T07:36:07.2989698Z tmpxft_00001678_00000000-7_MultinomialKernel.cudafe1.cpp 2025-07-17T07:36:07.2990887Z [3500/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NLLLoss2d.cu.obj 2025-07-17T07:36:07.6494520Z NLLLoss2d.cu 2025-07-17T07:36:07.6494842Z tmpxft_0000105c_00000000-7_NLLLoss2d.cudafe1.cpp 2025-07-17T07:36:07.6495605Z [3501/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose2d.cu.obj 2025-07-17T07:36:08.4169800Z NaiveConvolutionTranspose2d.cu 2025-07-17T07:36:08.4170606Z tmpxft_000017c0_00000000-7_NaiveConvolutionTranspose2d.cudafe1.cpp 2025-07-17T07:36:08.4171896Z [3502/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveConvolutionTranspose3d.cu.obj 2025-07-17T07:36:09.3036579Z NaiveConvolutionTranspose3d.cu 2025-07-17T07:36:09.3037042Z tmpxft_000008b8_00000000-7_NaiveConvolutionTranspose3d.cudafe1.cpp 2025-07-17T07:36:09.3037788Z [3503/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\NaiveDilatedConvolution.cu.obj 2025-07-17T07:36:09.8122213Z NaiveDilatedConvolution.cu 2025-07-17T07:36:09.8122926Z tmpxft_000006b8_00000000-7_NaiveDilatedConvolution.cudafe1.cpp 2025-07-17T07:36:09.8124292Z [3504/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PointwiseOpsKernel.cu.obj 2025-07-17T07:36:10.0104460Z PointwiseOpsKernel.cu 2025-07-17T07:36:10.0105099Z tmpxft_000004b8_00000000-7_PointwiseOpsKernel.cudafe1.cpp 2025-07-17T07:36:10.0106204Z [3505/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\PowKernel.cu.obj 2025-07-17T07:36:11.3676126Z PowKernel.cu 2025-07-17T07:36:11.3676437Z tmpxft_00000878_00000000-7_PowKernel.cudafe1.cpp 2025-07-17T07:36:11.3677057Z [3506/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Nonzero.cu.obj 2025-07-17T07:36:11.3677594Z Nonzero.cu 2025-07-17T07:36:11.3677826Z tmpxft_00001524_00000000-7_Nonzero.cudafe1.cpp 2025-07-17T07:36:11.3678454Z [3507/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\MixedDtypesLinear.cu.obj 2025-07-17T07:36:11.3883461Z MixedDtypesLinear.cu 2025-07-17T07:36:11.3884088Z tmpxft_00000cd0_00000000-7_MixedDtypesLinear.cudafe1.cpp 2025-07-17T07:36:11.3885278Z [3508/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Normalization.cu.obj 2025-07-17T07:36:11.3911959Z Normalization.cu 2025-07-17T07:36:11.3912489Z tmpxft_000003b4_00000000-7_Normalization.cudafe1.cpp 2025-07-17T07:36:11.3913550Z [3509/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RNN.cu.obj 2025-07-17T07:36:12.3282949Z RNN.cu 2025-07-17T07:36:12.3283405Z tmpxft_0000172c_00000000-7_RNN.cudafe1.cpp 2025-07-17T07:36:12.3284457Z [3510/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Randperm.cu.obj 2025-07-17T07:36:12.6373570Z Randperm.cu 2025-07-17T07:36:12.6373876Z tmpxft_00001760_00000000-7_Randperm.cudafe1.cpp 2025-07-17T07:36:12.6374495Z [3511/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RangeFactories.cu.obj 2025-07-17T07:36:12.7070939Z RangeFactories.cu 2025-07-17T07:36:12.7071290Z tmpxft_00000574_00000000-7_RangeFactories.cudafe1.cpp 2025-07-17T07:36:12.7072188Z [3512/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Reduce.cu.obj 2025-07-17T07:36:12.8251545Z Reduce.cu 2025-07-17T07:36:12.8251873Z tmpxft_00001654_00000000-7_Reduce.cudafe1.cpp 2025-07-17T07:36:12.8252570Z [3513/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RecordStream.cu.obj 2025-07-17T07:36:13.8339738Z RecordStream.cu 2025-07-17T07:36:13.8340243Z tmpxft_000015c8_00000000-7_RecordStream.cudafe1.cpp 2025-07-17T07:36:13.8341356Z [3514/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceAMinMaxKernel.cu.obj 2025-07-17T07:36:13.9556935Z ReduceAMinMaxKernel.cu 2025-07-17T07:36:13.9557328Z tmpxft_00000424_00000000-7_ReduceAMinMaxKernel.cudafe1.cpp 2025-07-17T07:36:13.9558011Z [3515/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMinKernel.cu.obj 2025-07-17T07:36:14.0155184Z ReduceArgMinKernel.cu 2025-07-17T07:36:14.0155881Z tmpxft_00000e14_00000000-7_ReduceArgMinKernel.cudafe1.cpp 2025-07-17T07:36:14.0157089Z [3516/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceArgMaxKernel.cu.obj 2025-07-17T07:36:14.7898847Z ReduceArgMaxKernel.cu 2025-07-17T07:36:14.7899494Z tmpxft_0000025c_00000000-7_ReduceArgMaxKernel.cudafe1.cpp 2025-07-17T07:36:14.7900749Z [3517/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceLogicKernel.cu.obj 2025-07-17T07:36:15.0486458Z ReduceLogicKernel.cu 2025-07-17T07:36:15.0486842Z tmpxft_00000f3c_00000000-7_ReduceLogicKernel.cudafe1.cpp 2025-07-17T07:36:15.0487524Z [3518/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMaxValuesKernel.cu.obj 2025-07-17T07:36:15.2044702Z ReduceMaxValuesKernel.cu 2025-07-17T07:36:15.2045122Z tmpxft_0000035c_00000000-7_ReduceMaxValuesKernel.cudafe1.cpp 2025-07-17T07:36:15.2045949Z [3519/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMinValuesKernel.cu.obj 2025-07-17T07:36:15.2502543Z ReduceMinValuesKernel.cu 2025-07-17T07:36:15.2503039Z tmpxft_00001674_00000000-7_ReduceMinValuesKernel.cudafe1.cpp 2025-07-17T07:36:16.2829153Z [3520/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceMomentKernel.cu.obj 2025-07-17T07:36:16.2830841Z ReduceMomentKernel.cu 2025-07-17T07:36:16.2831163Z tmpxft_000016ac_00000000-7_ReduceMomentKernel.cudafe1.cpp 2025-07-17T07:36:16.2831900Z [3521/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceNormKernel.cu.obj 2025-07-17T07:36:16.4964150Z ReduceNormKernel.cu 2025-07-17T07:36:16.4964735Z tmpxft_0000145c_00000000-7_ReduceNormKernel.cudafe1.cpp 2025-07-17T07:36:16.4965785Z [3522/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceSumProdKernel.cu.obj 2025-07-17T07:36:17.2830433Z ReduceSumProdKernel.cu 2025-07-17T07:36:17.2831006Z tmpxft_00001760_00000000-7_ReduceSumProdKernel.cudafe1.cpp 2025-07-17T07:36:17.2831746Z [3523/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RenormKernel.cu.obj 2025-07-17T07:36:17.2993491Z RenormKernel.cu 2025-07-17T07:36:17.2993837Z tmpxft_00001290_00000000-7_RenormKernel.cudafe1.cpp 2025-07-17T07:36:17.2994480Z [3524/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReflectionPad.cu.obj 2025-07-17T07:36:18.0191217Z ReflectionPad.cu 2025-07-17T07:36:18.0191881Z tmpxft_000010e4_00000000-7_ReflectionPad.cudafe1.cpp 2025-07-17T07:36:18.0193058Z [3525/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Repeat.cu.obj 2025-07-17T07:36:18.3865357Z Repeat.cu 2025-07-17T07:36:18.3865644Z tmpxft_000016f4_00000000-7_Repeat.cudafe1.cpp 2025-07-17T07:36:18.3866487Z [3526/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReplicationPadding.cu.obj 2025-07-17T07:36:19.4450064Z ReplicationPadding.cu 2025-07-17T07:36:19.4450456Z tmpxft_00001274_00000000-7_ReplicationPadding.cudafe1.cpp 2025-07-17T07:36:19.4451126Z [3527/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScaledGroupMM.cu.obj 2025-07-17T07:36:19.6017638Z ScaledGroupMM.cu 2025-07-17T07:36:19.6018209Z tmpxft_00001244_00000000-7_ScaledGroupMM.cudafe1.cpp 2025-07-17T07:36:19.6019320Z [3528/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RreluWithNoise.cu.obj 2025-07-17T07:36:19.7440535Z RreluWithNoise.cu 2025-07-17T07:36:19.7441117Z tmpxft_000004b8_00000000-7_RreluWithNoise.cudafe1.cpp 2025-07-17T07:36:19.7442293Z [3529/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\RowwiseScaledMM.cu.obj 2025-07-17T07:36:20.7482011Z RowwiseScaledMM.cu 2025-07-17T07:36:20.7482915Z tmpxft_000006d8_00000000-7_RowwiseScaledMM.compute_89.cudafe1.cpp 2025-07-17T07:36:20.7484108Z [3530/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScatterGatherKernel.cu.obj 2025-07-17T07:36:21.5305306Z ScatterGatherKernel.cu 2025-07-17T07:36:21.5305973Z tmpxft_0000153c_00000000-7_ScatterGatherKernel.cudafe1.cpp 2025-07-17T07:36:21.5307120Z [3531/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Shape.cu.obj 2025-07-17T07:36:21.8994746Z Shape.cu 2025-07-17T07:36:21.8995118Z tmpxft_00000e54_00000000-7_Shape.cudafe1.cpp 2025-07-17T07:36:21.8995888Z [3532/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SoftMax.cu.obj 2025-07-17T07:36:21.9352376Z SoftMax.cu 2025-07-17T07:36:21.9352887Z tmpxft_000014e8_00000000-7_SoftMax.cudafe1.cpp 2025-07-17T07:36:21.9354072Z [3533/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SegmentReduce.cu.obj 2025-07-17T07:36:23.2040356Z SegmentReduce.cu 2025-07-17T07:36:23.2041039Z tmpxft_00001248_00000000-7_SegmentReduce.cudafe1.cpp 2025-07-17T07:36:23.2041867Z [3534/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cu.obj 2025-07-17T07:36:23.2134068Z Sorting.cu 2025-07-17T07:36:23.2134542Z tmpxft_00001508_00000000-7_Sorting.cudafe1.cpp 2025-07-17T07:36:23.2135608Z [3535/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cu.obj 2025-07-17T07:36:23.4196332Z Sort.cu 2025-07-17T07:36:23.4196754Z tmpxft_00000990_00000000-7_Sort.cudafe1.cpp 2025-07-17T07:36:23.4197819Z [3536/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortStable.cu.obj 2025-07-17T07:36:23.7289298Z SortStable.cu 2025-07-17T07:36:23.7289796Z tmpxft_00000e1c_00000000-7_SortStable.cudafe1.cpp 2025-07-17T07:36:23.7290905Z [3537/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SortImpl.cu.obj 2025-07-17T07:36:24.4616580Z SortImpl.cu 2025-07-17T07:36:24.4617151Z tmpxft_0000084c_00000000-7_SortImpl.cudafe1.cpp 2025-07-17T07:36:24.4618273Z [3538/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SpectralOps.cu.obj 2025-07-17T07:36:24.5676390Z SpectralOps.cu 2025-07-17T07:36:24.5676926Z tmpxft_000014e4_00000000-7_SpectralOps.cudafe1.cpp 2025-07-17T07:36:24.5677956Z [3539/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseMM.cu.obj 2025-07-17T07:36:24.8303414Z SparseMM.cu 2025-07-17T07:36:24.8303901Z tmpxft_00001250_00000000-7_SparseMM.cudafe1.cpp 2025-07-17T07:36:24.8305122Z [3540/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SparseBinaryOpIntersectionKernel.cu.obj 2025-07-17T07:36:25.8270858Z SparseBinaryOpIntersectionKernel.cu 2025-07-17T07:36:25.8271759Z tmpxft_0000100c_00000000-7_SparseBinaryOpIntersectionKernel.cudafe1.cpp 2025-07-17T07:36:25.8273261Z [3541/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\StepKernel.cu.obj 2025-07-17T07:36:26.1143536Z StepKernel.cu 2025-07-17T07:36:26.1143855Z tmpxft_00001398_00000000-7_StepKernel.cudafe1.cpp 2025-07-17T07:36:26.1144525Z [3542/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorCompare.cu.obj 2025-07-17T07:36:26.4792182Z TensorCompare.cu 2025-07-17T07:36:26.4792798Z tmpxft_0000121c_00000000-7_TensorCompare.cudafe1.cpp 2025-07-17T07:36:26.4793858Z [3543/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\SummaryOps.cu.obj 2025-07-17T07:36:27.6362434Z SummaryOps.cu 2025-07-17T07:36:27.6362762Z tmpxft_00000a9c_00000000-7_SummaryOps.cudafe1.cpp 2025-07-17T07:36:27.6363387Z [3544/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShape.cu.obj 2025-07-17T07:36:27.7960637Z TensorShape.cu 2025-07-17T07:36:27.7961141Z tmpxft_000006e4_00000000-7_TensorShape.cudafe1.cpp 2025-07-17T07:36:27.7962307Z [3545/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cu.obj 2025-07-17T07:36:27.9485195Z TensorModeKernel.cu 2025-07-17T07:36:27.9485554Z tmpxft_000015c0_00000000-7_TensorModeKernel.cudafe1.cpp 2025-07-17T07:36:27.9486225Z [3546/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTransformations.cu.obj 2025-07-17T07:36:28.2981240Z TensorTransformations.cu 2025-07-17T07:36:28.2981675Z tmpxft_00001004_00000000-7_TensorTransformations.cudafe1.cpp 2025-07-17T07:36:28.2982448Z [3547/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cu.obj 2025-07-17T07:36:28.4151576Z TensorTopK.cu 2025-07-17T07:36:28.4152143Z tmpxft_00001154_00000000-7_TensorTopK.cudafe1.cpp 2025-07-17T07:36:28.4153138Z [3548/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryComplexKernels.cu.obj 2025-07-17T07:36:28.9399161Z UnaryComplexKernels.cu 2025-07-17T07:36:28.9400016Z tmpxft_000005c4_00000000-7_UnaryComplexKernels.cudafe1.cpp 2025-07-17T07:36:28.9401163Z [3549/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TriangularOps.cu.obj 2025-07-17T07:36:29.0240214Z TriangularOps.cu 2025-07-17T07:36:29.0240735Z tmpxft_00000428_00000000-7_TriangularOps.cudafe1.cpp 2025-07-17T07:36:29.0242092Z [3550/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryFractionKernels.cu.obj 2025-07-17T07:36:30.2915167Z UnaryFractionKernels.cu 2025-07-17T07:36:30.2915607Z tmpxft_0000125c_00000000-7_UnaryFractionKernels.cudafe1.cpp 2025-07-17T07:36:30.2916336Z [3551/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGammaKernels.cu.obj 2025-07-17T07:36:30.3259715Z UnaryGammaKernels.cu 2025-07-17T07:36:30.3260334Z tmpxft_00001184_00000000-7_UnaryGammaKernels.cudafe1.cpp 2025-07-17T07:36:30.3261647Z [3552/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcosKernel.cu.obj 2025-07-17T07:36:30.4514546Z UnaryGeometricAcosKernel.cu 2025-07-17T07:36:30.4515292Z tmpxft_000005ac_00000000-7_UnaryGeometricAcosKernel.cudafe1.cpp 2025-07-17T07:36:30.4516616Z [3553/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAcoshKernel.cu.obj 2025-07-17T07:36:30.7898244Z UnaryGeometricAcoshKernel.cu 2025-07-17T07:36:30.7898813Z tmpxft_00000704_00000000-7_UnaryGeometricAcoshKernel.cudafe1.cpp 2025-07-17T07:36:30.7899622Z [3554/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinhKernel.cu.obj 2025-07-17T07:36:30.8272390Z UnaryGeometricAsinhKernel.cu 2025-07-17T07:36:30.8273030Z tmpxft_00000eac_00000000-7_UnaryGeometricAsinhKernel.cudafe1.cpp 2025-07-17T07:36:30.8274595Z [3555/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAsinKernel.cu.obj 2025-07-17T07:36:31.4136286Z UnaryGeometricAsinKernel.cu 2025-07-17T07:36:31.4137259Z tmpxft_0000154c_00000000-7_UnaryGeometricAsinKernel.cudafe1.cpp 2025-07-17T07:36:31.4138846Z [3556/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanKernel.cu.obj 2025-07-17T07:36:31.5004922Z UnaryGeometricAtanKernel.cu 2025-07-17T07:36:31.5005717Z tmpxft_000017fc_00000000-7_UnaryGeometricAtanKernel.cudafe1.cpp 2025-07-17T07:36:31.5007029Z [3557/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricAtanhKernel.cu.obj 2025-07-17T07:36:32.7928886Z UnaryGeometricAtanhKernel.cu 2025-07-17T07:36:32.7929348Z tmpxft_000004c8_00000000-7_UnaryGeometricAtanhKernel.cudafe1.cpp 2025-07-17T07:36:32.7930088Z [3558/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCoshKernel.cu.obj 2025-07-17T07:36:32.8327631Z UnaryGeometricCoshKernel.cu 2025-07-17T07:36:32.8328099Z tmpxft_00000e28_00000000-7_UnaryGeometricCoshKernel.cudafe1.cpp 2025-07-17T07:36:32.8328834Z [3559/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricCosKernel.cu.obj 2025-07-17T07:36:32.9567521Z UnaryGeometricCosKernel.cu 2025-07-17T07:36:32.9568031Z tmpxft_00000740_00000000-7_UnaryGeometricCosKernel.cudafe1.cpp 2025-07-17T07:36:32.9569366Z [3560/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinKernel.cu.obj 2025-07-17T07:36:33.2385489Z UnaryGeometricSinKernel.cu 2025-07-17T07:36:33.2385976Z tmpxft_00000090_00000000-7_UnaryGeometricSinKernel.cudafe1.cpp 2025-07-17T07:36:33.2386687Z [3561/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricSinhKernel.cu.obj 2025-07-17T07:36:33.3610111Z UnaryGeometricSinhKernel.cu 2025-07-17T07:36:33.3610848Z tmpxft_0000051c_00000000-7_UnaryGeometricSinhKernel.cudafe1.cpp 2025-07-17T07:36:33.3612243Z [3562/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanKernel.cu.obj 2025-07-17T07:36:33.8381600Z UnaryGeometricTanKernel.cu 2025-07-17T07:36:33.8382517Z tmpxft_0000166c_00000000-7_UnaryGeometricTanKernel.cudafe1.cpp 2025-07-17T07:36:33.8383668Z [3563/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryGeometricTanhKernel.cu.obj 2025-07-17T07:36:34.0644191Z UnaryGeometricTanhKernel.cu 2025-07-17T07:36:34.0645011Z tmpxft_00000efc_00000000-7_UnaryGeometricTanhKernel.cudafe1.cpp 2025-07-17T07:36:34.0646214Z [3564/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryLogKernels.cu.obj 2025-07-17T07:36:35.4813727Z UnaryLogKernels.cu 2025-07-17T07:36:35.4814136Z tmpxft_00000fb0_00000000-7_UnaryLogKernels.cudafe1.cpp 2025-07-17T07:36:35.4814798Z [3565/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySignKernels.cu.obj 2025-07-17T07:36:35.5409734Z UnarySignKernels.cu 2025-07-17T07:36:35.5410373Z tmpxft_00001018_00000000-7_UnarySignKernels.cudafe1.cpp 2025-07-17T07:36:35.5411854Z [3566/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnaryOpsKernel.cu.obj 2025-07-17T07:36:35.6134663Z UnaryOpsKernel.cu 2025-07-17T07:36:35.6135239Z tmpxft_000016a0_00000000-7_UnaryOpsKernel.cudafe1.cpp 2025-07-17T07:36:35.6136517Z [3567/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnarySpecialOpsKernel.cu.obj 2025-07-17T07:36:36.4331959Z UnarySpecialOpsKernel.cu 2025-07-17T07:36:36.4333354Z tmpxft_00001454_00000000-7_UnarySpecialOpsKernel.cudafe1.cpp 2025-07-17T07:36:36.4334649Z [3568/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UnfoldBackwardKernel.cu.obj 2025-07-17T07:36:36.8849207Z UnfoldBackwardKernel.cu 2025-07-17T07:36:36.8849885Z tmpxft_00000c10_00000000-7_UnfoldBackwardKernel.cudafe1.cpp 2025-07-17T07:36:36.8851577Z [3569/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBicubic2d.cu.obj 2025-07-17T07:36:37.2253245Z UpSampleBicubic2d.cu 2025-07-17T07:36:37.2253873Z tmpxft_000009b4_00000000-7_UpSampleBicubic2d.cudafe1.cpp 2025-07-17T07:36:37.2255106Z [3570/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleBilinear2d.cu.obj 2025-07-17T07:36:37.8113050Z UpSampleBilinear2d.cu 2025-07-17T07:36:37.8113662Z tmpxft_00000fa0_00000000-7_UpSampleBilinear2d.cudafe1.cpp 2025-07-17T07:36:37.8114725Z [3571/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UniqueCub.cu.obj 2025-07-17T07:36:38.5964895Z UniqueCub.cu 2025-07-17T07:36:38.5965401Z tmpxft_000008b8_00000000-7_UniqueCub.cudafe1.cpp 2025-07-17T07:36:38.5966544Z [3572/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleLinear1d.cu.obj 2025-07-17T07:36:38.6356912Z UpSampleLinear1d.cu 2025-07-17T07:36:38.6357332Z tmpxft_00001080_00000000-7_UpSampleLinear1d.cudafe1.cpp 2025-07-17T07:36:38.6357978Z [3573/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest1d.cu.obj 2025-07-17T07:36:38.6814342Z UpSampleNearest1d.cu 2025-07-17T07:36:38.6816448Z tmpxft_00001064_00000000-7_UpSampleNearest1d.cudafe1.cpp 2025-07-17T07:36:38.6817839Z [3574/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest2d.cu.obj 2025-07-17T07:36:39.6265888Z UpSampleNearest2d.cu 2025-07-17T07:36:39.6266507Z tmpxft_00000744_00000000-7_UpSampleNearest2d.cudafe1.cpp 2025-07-17T07:36:39.6267620Z [3575/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleNearest3d.cu.obj 2025-07-17T07:36:40.1469965Z UpSampleNearest3d.cu 2025-07-17T07:36:40.1470334Z tmpxft_00000570_00000000-7_UpSampleNearest3d.cudafe1.cpp 2025-07-17T07:36:40.1471039Z [3576/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\UpSampleTrilinear3d.cu.obj 2025-07-17T07:36:40.3840140Z UpSampleTrilinear3d.cu 2025-07-17T07:36:40.3840775Z tmpxft_00000fb4_00000000-7_UpSampleTrilinear3d.cudafe1.cpp 2025-07-17T07:36:40.3841998Z [3577/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ValidateCompressedIndicesKernel.cu.obj 2025-07-17T07:36:40.8837573Z ValidateCompressedIndicesKernel.cu 2025-07-17T07:36:40.8838093Z tmpxft_00001734_00000000-7_ValidateCompressedIndicesKernel.cudafe1.cpp 2025-07-17T07:36:40.8838794Z [3578/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\WeightNorm.cu.obj 2025-07-17T07:36:40.9432334Z WeightNorm.cu 2025-07-17T07:36:40.9432903Z tmpxft_0000138c_00000000-7_WeightNorm.cudafe1.cpp 2025-07-17T07:36:40.9434002Z [3579/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ZetaKernel.cu.obj 2025-07-17T07:36:41.0354201Z ZetaKernel.cu 2025-07-17T07:36:41.0354868Z tmpxft_000001cc_00000000-7_ZetaKernel.cudafe1.cpp 2025-07-17T07:36:41.0355958Z [3580/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j0.cu.obj 2025-07-17T07:36:41.0456536Z bessel_j0.cu 2025-07-17T07:36:41.0456990Z tmpxft_0000160c_00000000-7_bessel_j0.cudafe1.cpp 2025-07-17T07:36:41.0458003Z [3581/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\airy_ai.cu.obj 2025-07-17T07:36:42.1173894Z airy_ai.cu 2025-07-17T07:36:42.1174225Z tmpxft_000001d8_00000000-7_airy_ai.cudafe1.cpp 2025-07-17T07:36:42.1174913Z [3582/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_j1.cu.obj 2025-07-17T07:36:42.6460841Z bessel_j1.cu 2025-07-17T07:36:42.6461161Z tmpxft_00001670_00000000-7_bessel_j1.cudafe1.cpp 2025-07-17T07:36:42.6461765Z [3583/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y0.cu.obj 2025-07-17T07:36:42.8978559Z bessel_y0.cu 2025-07-17T07:36:42.8979296Z tmpxft_00001020_00000000-7_bessel_y0.cudafe1.cpp 2025-07-17T07:36:42.8980261Z [3584/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\bessel_y1.cu.obj 2025-07-17T07:36:43.4009338Z bessel_y1.cu 2025-07-17T07:36:43.4009657Z tmpxft_0000166c_00000000-7_bessel_y1.cudafe1.cpp 2025-07-17T07:36:43.4010366Z [3585/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_t.cu.obj 2025-07-17T07:36:43.4355257Z chebyshev_polynomial_t.cu 2025-07-17T07:36:43.4355723Z tmpxft_0000119c_00000000-7_chebyshev_polynomial_t.cudafe1.cpp 2025-07-17T07:36:43.4356611Z [3586/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_u.cu.obj 2025-07-17T07:36:43.6709330Z chebyshev_polynomial_u.cu 2025-07-17T07:36:43.6710013Z tmpxft_00000638_00000000-7_chebyshev_polynomial_u.cudafe1.cpp 2025-07-17T07:36:43.6711299Z [3587/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_v.cu.obj 2025-07-17T07:36:43.6998139Z chebyshev_polynomial_v.cu 2025-07-17T07:36:43.6998810Z tmpxft_00001794_00000000-7_chebyshev_polynomial_v.cudafe1.cpp 2025-07-17T07:36:43.7000050Z [3588/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\chebyshev_polynomial_w.cu.obj 2025-07-17T07:36:45.2412973Z chebyshev_polynomial_w.cu 2025-07-17T07:36:45.2413417Z tmpxft_00000d3c_00000000-7_chebyshev_polynomial_w.cudafe1.cpp 2025-07-17T07:36:45.2414131Z [3589/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_amsgrad_impl.cu.obj 2025-07-17T07:36:45.6583608Z fused_adam_amsgrad_impl.cu 2025-07-17T07:36:45.6584007Z tmpxft_00000928_00000000-7_fused_adam_amsgrad_impl.cudafe1.cpp 2025-07-17T07:36:45.6584724Z [3590/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adam_impl.cu.obj 2025-07-17T07:36:45.9181381Z fused_adam_impl.cu 2025-07-17T07:36:45.9181883Z tmpxft_00001624_00000000-7_fused_adam_impl.cudafe1.cpp 2025-07-17T07:36:45.9182524Z [3591/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_amsgrad_impl.cu.obj 2025-07-17T07:36:46.0924224Z fused_adamw_amsgrad_impl.cu 2025-07-17T07:36:46.0924669Z tmpxft_000010c0_00000000-7_fused_adamw_amsgrad_impl.cudafe1.cpp 2025-07-17T07:36:46.0925495Z [3592/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_he.cu.obj 2025-07-17T07:36:46.1287585Z hermite_polynomial_he.cu 2025-07-17T07:36:46.1289811Z tmpxft_0000155c_00000000-7_hermite_polynomial_he.cudafe1.cpp 2025-07-17T07:36:46.1290943Z [3593/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\hermite_polynomial_h.cu.obj 2025-07-17T07:36:46.3827642Z hermite_polynomial_h.cu 2025-07-17T07:36:46.3828691Z tmpxft_00001508_00000000-7_hermite_polynomial_h.cudafe1.cpp 2025-07-17T07:36:46.3829912Z [3594/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\fused_adamw_impl.cu.obj 2025-07-17T07:36:46.6480620Z fused_adamw_impl.cu 2025-07-17T07:36:46.6481170Z tmpxft_000011ec_00000000-7_fused_adamw_impl.cudafe1.cpp 2025-07-17T07:36:46.6482381Z [3595/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\group_norm_kernel.cu.obj 2025-07-17T07:36:48.2709243Z group_norm_kernel.cu 2025-07-17T07:36:48.2709829Z tmpxft_000015b8_00000000-7_group_norm_kernel.cudafe1.cpp 2025-07-17T07:36:48.2710765Z [3596/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\laguerre_polynomial_l.cu.obj 2025-07-17T07:36:48.6429252Z laguerre_polynomial_l.cu 2025-07-17T07:36:48.6429657Z tmpxft_00001670_00000000-7_laguerre_polynomial_l.cudafe1.cpp 2025-07-17T07:36:48.6430316Z [3597/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\legendre_polynomial_p.cu.obj 2025-07-17T07:36:48.6669520Z legendre_polynomial_p.cu 2025-07-17T07:36:48.6670448Z tmpxft_000017d0_00000000-7_legendre_polynomial_p.cudafe1.cpp 2025-07-17T07:36:48.6671731Z [3598/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i0.cu.obj 2025-07-17T07:36:48.9634092Z modified_bessel_i0.cu 2025-07-17T07:36:48.9634692Z tmpxft_0000052c_00000000-7_modified_bessel_i0.cudafe1.cpp 2025-07-17T07:36:48.9635961Z [3599/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_i1.cu.obj 2025-07-17T07:36:49.1646492Z modified_bessel_i1.cu 2025-07-17T07:36:49.1647518Z tmpxft_00000fb0_00000000-7_modified_bessel_i1.cudafe1.cpp 2025-07-17T07:36:49.1649060Z [3600/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\layer_norm_kernel.cu.obj 2025-07-17T07:36:49.2940899Z layer_norm_kernel.cu 2025-07-17T07:36:49.2941508Z tmpxft_000004b0_00000000-7_layer_norm_kernel.cudafe1.cpp 2025-07-17T07:36:49.2942674Z [3601/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k0.cu.obj 2025-07-17T07:36:50.6936043Z modified_bessel_k0.cu 2025-07-17T07:36:50.6936459Z tmpxft_00001178_00000000-7_modified_bessel_k0.cudafe1.cpp 2025-07-17T07:36:50.6937094Z [3602/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\modified_bessel_k1.cu.obj 2025-07-17T07:36:51.1134623Z modified_bessel_k1.cu 2025-07-17T07:36:51.1134997Z tmpxft_00001798_00000000-7_modified_bessel_k1.cudafe1.cpp 2025-07-17T07:36:51.1135662Z [3603/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k0.cu.obj 2025-07-17T07:36:51.1722424Z scaled_modified_bessel_k0.cu 2025-07-17T07:36:51.1722851Z tmpxft_000015f4_00000000-7_scaled_modified_bessel_k0.cudafe1.cpp 2025-07-17T07:36:51.1723541Z [3604/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\scaled_modified_bessel_k1.cu.obj 2025-07-17T07:36:51.2493270Z scaled_modified_bessel_k1.cu 2025-07-17T07:36:51.2493984Z tmpxft_00000d40_00000000-7_scaled_modified_bessel_k1.cudafe1.cpp 2025-07-17T07:36:51.2495159Z [3605/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_t.cu.obj 2025-07-17T07:36:51.4655317Z shifted_chebyshev_polynomial_t.cu 2025-07-17T07:36:51.4656232Z tmpxft_00000658_00000000-7_shifted_chebyshev_polynomial_t.cudafe1.cpp 2025-07-17T07:36:51.4657387Z [3606/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_u.cu.obj 2025-07-17T07:36:51.7633121Z shifted_chebyshev_polynomial_u.cu 2025-07-17T07:36:51.7633903Z tmpxft_00001654_00000000-7_shifted_chebyshev_polynomial_u.cudafe1.cpp 2025-07-17T07:36:51.7635276Z [3607/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_v.cu.obj 2025-07-17T07:36:53.1981607Z shifted_chebyshev_polynomial_v.cu 2025-07-17T07:36:53.1982397Z tmpxft_000006f4_00000000-7_shifted_chebyshev_polynomial_v.cudafe1.cpp 2025-07-17T07:36:53.1983582Z [3608/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\int4mm.cu.obj 2025-07-17T07:36:53.2504745Z int4mm.cu 2025-07-17T07:36:53.2505040Z tmpxft_000013c0_00000000-7_int4mm.cudafe1.cpp 2025-07-17T07:36:53.2505699Z [3609/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\shifted_chebyshev_polynomial_w.cu.obj 2025-07-17T07:36:53.8083554Z shifted_chebyshev_polynomial_w.cu 2025-07-17T07:36:53.8084923Z tmpxft_00000b6c_00000000-7_shifted_chebyshev_polynomial_w.cudafe1.cpp 2025-07-17T07:36:53.8086209Z [3610/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\spherical_bessel_j0.cu.obj 2025-07-17T07:36:56.6983969Z spherical_bessel_j0.cu 2025-07-17T07:36:56.6984347Z tmpxft_00000a1c_00000000-7_spherical_bessel_j0.cudafe1.cpp 2025-07-17T07:36:56.6985191Z [3611/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SoftMax.cu.obj 2025-07-17T07:36:57.9526465Z SoftMax.cu 2025-07-17T07:36:57.9526777Z tmpxft_00000968_00000000-7_SoftMax.cudafe1.cpp 2025-07-17T07:36:57.9527450Z [3612/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensor.cu.obj 2025-07-17T07:36:57.9937361Z SparseCUDATensor.cu 2025-07-17T07:36:57.9937943Z tmpxft_0000099c_00000000-7_SparseCUDATensor.cudafe1.cpp 2025-07-17T07:36:57.9939220Z [3613/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDATensorMath.cu.obj 2025-07-17T07:36:58.1268212Z SparseCUDATensorMath.cu 2025-07-17T07:36:58.1268719Z tmpxft_00000df8_00000000-7_SparseCUDATensorMath.cudafe1.cpp 2025-07-17T07:36:58.1269423Z [3614/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCsrTensorMath.cu.obj 2025-07-17T07:36:59.0777646Z SparseCsrTensorMath.cu 2025-07-17T07:36:59.0778373Z tmpxft_00001648_00000000-7_SparseCsrTensorMath.cudafe1.cpp 2025-07-17T07:36:59.0779651Z [3615/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorMatmul.cu.obj 2025-07-17T07:36:59.2337487Z NestedTensorMatmul.cu 2025-07-17T07:36:59.2337903Z tmpxft_00000f04_00000000-7_NestedTensorMatmul.cudafe1.cpp 2025-07-17T07:36:59.2338703Z [3616/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorBinaryOps.cu.obj 2025-07-17T07:36:59.3743707Z NestedTensorBinaryOps.cu 2025-07-17T07:36:59.3744498Z tmpxft_000016e8_00000000-7_NestedTensorBinaryOps.cudafe1.cpp 2025-07-17T07:36:59.3746126Z [3617/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cu.obj 2025-07-17T07:37:01.4249915Z NestedTensorTransformerFunctions.cu 2025-07-17T07:37:01.4250982Z tmpxft_000011f4_00000000-7_NestedTensorTransformerFunctions.cudafe1.cpp 2025-07-17T07:37:01.4252484Z [3618/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseMatMul.cu.obj 2025-07-17T07:37:04.4005248Z SparseMatMul.cu 2025-07-17T07:37:04.4005769Z tmpxft_000016dc_00000000-7_SparseMatMul.cudafe1.cpp 2025-07-17T07:37:04.4006765Z [3619/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\AffineQuantizer.cu.obj 2025-07-17T07:37:04.8904699Z AffineQuantizer.cu 2025-07-17T07:37:04.8905053Z tmpxft_0000038c_00000000-7_AffineQuantizer.cudafe1.cpp 2025-07-17T07:37:04.8905771Z [3620/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiSturcturedApply.cu.obj 2025-07-17T07:37:05.7191482Z SparseSemiSturcturedApply.cu 2025-07-17T07:37:05.7191929Z tmpxft_00000254_00000000-7_SparseSemiSturcturedApply.cudafe1.cpp 2025-07-17T07:37:05.7192836Z [3621/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredLinear.cu.obj 2025-07-17T07:37:05.8261471Z SparseSemiStructuredLinear.cu 2025-07-17T07:37:05.8262282Z tmpxft_00000690_00000000-7_SparseSemiStructuredLinear.cudafe1.cpp 2025-07-17T07:37:05.8263742Z [3622/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredApplyDense.cu.obj 2025-07-17T07:37:05.8265022Z SparseSemiStructuredApplyDense.cu 2025-07-17T07:37:05.8265767Z tmpxft_0000165c_00000000-7_SparseSemiStructuredApplyDense.cudafe1.cpp 2025-07-17T07:37:05.8267628Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-07-17T07:37:05.8270049Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-07-17T07:37:05.8273005Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-07-17T07:37:05.8274751Z with 2025-07-17T07:37:05.8275070Z [ 2025-07-17T07:37:05.8483032Z I=size_t, 2025-07-17T07:37:05.8483497Z _Ty2=size_t 2025-07-17T07:37:05.8483866Z ] 2025-07-17T07:37:05.8485075Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-07-17T07:37:05.8488327Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-07-17T07:37:05.8490739Z with 2025-07-17T07:37:05.8491076Z [ 2025-07-17T07:37:05.8491344Z _Ty=int 2025-07-17T07:37:05.8491687Z ] 2025-07-17T07:37:05.9154895Z tmpxft_0000165c_00000000-7_SparseSemiStructuredApplyDense.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-07-17T07:37:05.9157295Z with 2025-07-17T07:37:05.9157644Z [ 2025-07-17T07:37:05.9157948Z _Ty=int 2025-07-17T07:37:05.9158297Z ] 2025-07-17T07:37:05.9159264Z [3623/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredOps.cu.obj 2025-07-17T07:37:06.8224880Z SparseSemiStructuredOps.cu 2025-07-17T07:37:06.8225716Z tmpxft_000015c0_00000000-7_SparseSemiStructuredOps.cudafe1.cpp 2025-07-17T07:37:06.8227146Z [3624/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseSemiStructuredTile.cu.obj 2025-07-17T07:37:06.8229051Z SparseSemiStructuredTile.cu 2025-07-17T07:37:06.8229708Z tmpxft_000014ec_00000000-7_SparseSemiStructuredTile.cudafe1.cpp 2025-07-17T07:37:06.8231510Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-07-17T07:37:06.8234502Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-07-17T07:37:06.8237160Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-07-17T07:37:06.8238900Z with 2025-07-17T07:37:06.8239222Z [ 2025-07-17T07:37:06.8239534Z I=size_t, 2025-07-17T07:37:06.8239931Z _Ty2=size_t 2025-07-17T07:37:06.8240297Z ] 2025-07-17T07:37:06.8241235Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-07-17T07:37:06.8242997Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-07-17T07:37:06.8244210Z with 2025-07-17T07:37:06.8244401Z [ 2025-07-17T07:37:06.8244569Z _Ty=int 2025-07-17T07:37:06.8244760Z ] 2025-07-17T07:37:07.1537484Z tmpxft_000014ec_00000000-7_SparseSemiStructuredTile.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-07-17T07:37:07.1539736Z with 2025-07-17T07:37:07.1540051Z [ 2025-07-17T07:37:07.1540369Z _Ty=int 2025-07-17T07:37:07.1540700Z ] 2025-07-17T07:37:07.1541615Z [3625/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\Activation.cu.obj 2025-07-17T07:37:07.4147057Z Activation.cu 2025-07-17T07:37:07.4147661Z tmpxft_00001610_00000000-7_Activation.cudafe1.cpp 2025-07-17T07:37:07.4148898Z [3626/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\EmbeddingBag.cu.obj 2025-07-17T07:37:07.4150019Z EmbeddingBag.cu 2025-07-17T07:37:07.4150484Z tmpxft_000016e4_00000000-7_EmbeddingBag.cudafe1.cpp 2025-07-17T07:37:07.4152273Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data 2025-07-17T07:37:07.4154872Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(82): note: the template instantiation context (the oldest one first) is 2025-07-17T07:37:07.4157568Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see reference to function template instantiation 'std::optional::optional(_Ty2 &&) noexcept' being compiled 2025-07-17T07:37:07.4159629Z with 2025-07-17T07:37:07.4159983Z [ 2025-07-17T07:37:07.4160310Z I=size_t, 2025-07-17T07:37:07.4160684Z _Ty2=size_t 2025-07-17T07:37:07.4161015Z ] 2025-07-17T07:37:07.4162398Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/core/function_schema.h(438): note: see the first reference to 'std::optional::optional' in 'c10::FunctionSchema::argumentIndexWithName' 2025-07-17T07:37:07.4165782Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\optional(248): note: see reference to function template instantiation 'std::_Optional_construct_base<_Ty>::_Optional_construct_base(std::in_place_t,const unsigned __int64 &&)' being compiled 2025-07-17T07:37:07.4168254Z with 2025-07-17T07:37:07.4168703Z [ 2025-07-17T07:37:07.4168992Z _Ty=int 2025-07-17T07:37:07.4169330Z ] 2025-07-17T07:37:08.7189907Z tmpxft_000016e4_00000000-7_EmbeddingBag.cudafe1.stub.c(2): note: see reference to function template instantiation 'std::_Optional_destruct_base<_Ty,true>::_Optional_destruct_base(std::in_place_t,const unsigned __int64 &&) noexcept' being compiled 2025-07-17T07:37:08.7191058Z with 2025-07-17T07:37:08.7191236Z [ 2025-07-17T07:37:08.7191416Z _Ty=int 2025-07-17T07:37:08.7191621Z ] 2025-07-17T07:37:08.7192233Z [3627/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FusedObsFakeQuant.cu.obj 2025-07-17T07:37:08.9165132Z FusedObsFakeQuant.cu 2025-07-17T07:37:08.9165504Z tmpxft_000017f8_00000000-7_FusedObsFakeQuant.cudafe1.cpp 2025-07-17T07:37:08.9166249Z [3628/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\MakePerTensorQuantizedTensor.cu.obj 2025-07-17T07:37:08.9779617Z MakePerTensorQuantizedTensor.cu 2025-07-17T07:37:08.9780088Z tmpxft_00000f78_00000000-7_MakePerTensorQuantizedTensor.cudafe1.cpp 2025-07-17T07:37:08.9780796Z [3629/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\IntReprQuant.cu.obj 2025-07-17T07:37:12.7579116Z IntReprQuant.cu 2025-07-17T07:37:12.7579444Z tmpxft_00001618_00000000-7_IntReprQuant.cudafe1.cpp 2025-07-17T07:37:12.7580224Z [3630/7682] 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-07-17T07:37:12.8268683Z cutlassB_bf16_aligned_k32.cu 2025-07-17T07:37:12.8269109Z tmpxft_00000cb0_00000000-7_cutlassB_bf16_aligned_k32.cudafe1.cpp 2025-07-17T07:37:12.8270073Z [3631/7682] 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-07-17T07:37:12.8605581Z cutlassB_bf16_aligned_k32_dropout.cu 2025-07-17T07:37:12.8606364Z tmpxft_00001564_00000000-7_cutlassB_bf16_aligned_k32_dropout.cudafe1.cpp 2025-07-17T07:37:12.8608017Z [3632/7682] 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-07-17T07:37:12.9263782Z cutlassB_bf16_aligned_k128_dropout.cu 2025-07-17T07:37:12.9264566Z tmpxft_00000b34_00000000-7_cutlassB_bf16_aligned_k128_dropout.cudafe1.cpp 2025-07-17T07:37:12.9266046Z [3633/7682] 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-07-17T07:37:13.6574027Z cutlassB_bf16_aligned_k128.cu 2025-07-17T07:37:13.6574708Z tmpxft_000001a0_00000000-7_cutlassB_bf16_aligned_k128.cudafe1.cpp 2025-07-17T07:37:13.6576042Z [3634/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention_backward.cu.obj 2025-07-17T07:37:13.7090778Z attention_backward.cu 2025-07-17T07:37:13.7091420Z tmpxft_00001614_00000000-7_attention_backward.cudafe1.cpp 2025-07-17T07:37:13.7092727Z [3635/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\attention.cu.obj 2025-07-17T07:37:15.5897099Z attention.cu 2025-07-17T07:37:15.5897407Z tmpxft_00000448_00000000-7_attention.cudafe1.cpp 2025-07-17T07:37:15.5898272Z [3636/7682] 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-07-17T07:37:15.5918024Z cutlassB_bf16_aligned_k64_dropout.cu 2025-07-17T07:37:15.5918475Z tmpxft_00001678_00000000-7_cutlassB_bf16_aligned_k64_dropout.cudafe1.cpp 2025-07-17T07:37:15.5919338Z [3637/7682] 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-07-17T07:37:15.6510686Z cutlassB_bf16_aligned_k65536.cu 2025-07-17T07:37:15.6511424Z tmpxft_000013c4_00000000-7_cutlassB_bf16_aligned_k65536.cudafe1.cpp 2025-07-17T07:37:15.6512805Z [3638/7682] 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-07-17T07:37:15.6802644Z cutlassB_bf16_aligned_k64.cu 2025-07-17T07:37:15.6803300Z tmpxft_000013f0_00000000-7_cutlassB_bf16_aligned_k64.cudafe1.cpp 2025-07-17T07:37:15.6804842Z [3639/7682] 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-07-17T07:37:16.3042647Z cutlassB_bf16_aligned_k65536_dropout.cu 2025-07-17T07:37:16.3043468Z tmpxft_00001208_00000000-7_cutlassB_bf16_aligned_k65536_dropout.cudafe1.cpp 2025-07-17T07:37:16.3045074Z [3640/7682] 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-07-17T07:37:16.3820634Z cutlassB_f16_aligned_k128.cu 2025-07-17T07:37:16.3821330Z tmpxft_00000f00_00000000-7_cutlassB_f16_aligned_k128.cudafe1.cpp 2025-07-17T07:37:16.3822703Z [3641/7682] 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-07-17T07:37:18.2759223Z cutlassB_bf16_aligned_k96.cu 2025-07-17T07:37:18.2759634Z tmpxft_0000170c_00000000-7_cutlassB_bf16_aligned_k96.cudafe1.cpp 2025-07-17T07:37:18.2760715Z [3642/7682] 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-07-17T07:37:18.2788584Z cutlassB_f16_aligned_k32_dropout.cu 2025-07-17T07:37:18.2789401Z tmpxft_00000e1c_00000000-7_cutlassB_f16_aligned_k32_dropout.cudafe1.cpp 2025-07-17T07:37:18.2791125Z [3643/7682] 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-07-17T07:37:18.3815402Z cutlassB_f16_aligned_k128_dropout.cu 2025-07-17T07:37:18.3815881Z tmpxft_00000fc0_00000000-7_cutlassB_f16_aligned_k128_dropout.cudafe1.cpp 2025-07-17T07:37:18.3816735Z [3644/7682] 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-07-17T07:37:18.4116129Z cutlassB_f16_aligned_k32.cu 2025-07-17T07:37:18.4116847Z tmpxft_00001200_00000000-7_cutlassB_f16_aligned_k32.cudafe1.cpp 2025-07-17T07:37:18.4118428Z [3645/7682] 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-07-17T07:37:18.9453939Z cutlassB_f16_aligned_k64.cu 2025-07-17T07:37:18.9454823Z tmpxft_000008a8_00000000-7_cutlassB_f16_aligned_k64.cudafe1.cpp 2025-07-17T07:37:18.9456496Z [3646/7682] 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-07-17T07:37:19.1701194Z cutlassB_f16_aligned_k64_dropout.cu 2025-07-17T07:37:19.1701921Z tmpxft_00000248_00000000-7_cutlassB_f16_aligned_k64_dropout.cudafe1.cpp 2025-07-17T07:37:19.1703869Z [3647/7682] 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-07-17T07:37:21.0790813Z cutlassB_f16_aligned_k65536.cu 2025-07-17T07:37:21.0791539Z tmpxft_00000e78_00000000-7_cutlassB_f16_aligned_k65536.cudafe1.cpp 2025-07-17T07:37:21.0793119Z [3648/7682] 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-07-17T07:37:21.1664044Z cutlassB_f16_aligned_k65536_dropout.cu 2025-07-17T07:37:21.1664506Z tmpxft_0000161c_00000000-7_cutlassB_f16_aligned_k65536_dropout.cudafe1.cpp 2025-07-17T07:37:21.1665517Z [3649/7682] 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-07-17T07:37:21.1771835Z cutlassB_f16_aligned_k96.cu 2025-07-17T07:37:21.1772451Z tmpxft_00000ce0_00000000-7_cutlassB_f16_aligned_k96.cudafe1.cpp 2025-07-17T07:37:21.1773771Z [3650/7682] 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-07-17T07:37:21.2523802Z cutlassB_f16_notaligned_k128_dropout.cu 2025-07-17T07:37:21.2524605Z tmpxft_000016b4_00000000-7_cutlassB_f16_notaligned_k128_dropout.cudafe1.cpp 2025-07-17T07:37:21.2525572Z [3651/7682] 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-07-17T07:37:21.5747095Z cutlassB_f16_notaligned_k128.cu 2025-07-17T07:37:21.5748008Z tmpxft_00000924_00000000-7_cutlassB_f16_notaligned_k128.cudafe1.cpp 2025-07-17T07:37:21.5749609Z [3652/7682] 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-07-17T07:37:21.9418911Z cutlassB_f16_notaligned_k32.cu 2025-07-17T07:37:21.9419666Z tmpxft_00000f70_00000000-7_cutlassB_f16_notaligned_k32.cudafe1.cpp 2025-07-17T07:37:21.9421577Z [3653/7682] 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-07-17T07:37:23.9632001Z cutlassB_f16_notaligned_k32_dropout.cu 2025-07-17T07:37:23.9632575Z tmpxft_00000ed4_00000000-7_cutlassB_f16_notaligned_k32_dropout.cudafe1.cpp 2025-07-17T07:37:23.9633470Z [3654/7682] 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-07-17T07:37:24.0043903Z cutlassB_f16_notaligned_k65536.cu 2025-07-17T07:37:24.0044368Z tmpxft_0000136c_00000000-7_cutlassB_f16_notaligned_k65536.cudafe1.cpp 2025-07-17T07:37:24.0045273Z [3655/7682] 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-07-17T07:37:24.0484446Z cutlassB_f16_notaligned_k64.cu 2025-07-17T07:37:24.0485155Z tmpxft_00001564_00000000-7_cutlassB_f16_notaligned_k64.cudafe1.cpp 2025-07-17T07:37:24.0486628Z [3656/7682] 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-07-17T07:37:24.0657923Z cutlassB_f16_notaligned_k65536_dropout.cu 2025-07-17T07:37:24.0658519Z tmpxft_00000980_00000000-7_cutlassB_f16_notaligned_k65536_dropout.cudafe1.cpp 2025-07-17T07:37:24.0659464Z [3657/7682] 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-07-17T07:37:24.3566450Z cutlassB_f16_notaligned_k64_dropout.cu 2025-07-17T07:37:24.3567363Z tmpxft_000005a0_00000000-7_cutlassB_f16_notaligned_k64_dropout.cudafe1.cpp 2025-07-17T07:37:24.3569541Z [3658/7682] 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-07-17T07:37:24.6425876Z cutlassB_f32_aligned_k128.cu 2025-07-17T07:37:24.6426947Z tmpxft_000008e4_00000000-7_cutlassB_f32_aligned_k128.cudafe1.cpp 2025-07-17T07:37:24.6428588Z [3659/7682] 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-07-17T07:37:26.6394294Z cutlassB_f32_aligned_k128_dropout.cu 2025-07-17T07:37:26.6394767Z tmpxft_00000c64_00000000-7_cutlassB_f32_aligned_k128_dropout.cudafe1.cpp 2025-07-17T07:37:26.6395785Z [3660/7682] 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-07-17T07:37:26.7946614Z cutlassB_f32_aligned_k32.cu 2025-07-17T07:37:26.7947250Z tmpxft_00000d4c_00000000-7_cutlassB_f32_aligned_k32.cudafe1.cpp 2025-07-17T07:37:26.7948644Z [3661/7682] 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-07-17T07:37:26.8052967Z cutlassB_f32_aligned_k32_dropout.cu 2025-07-17T07:37:26.8053512Z tmpxft_00001738_00000000-7_cutlassB_f32_aligned_k32_dropout.cudafe1.cpp 2025-07-17T07:37:26.8054478Z [3662/7682] 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-07-17T07:37:26.8820206Z cutlassB_f32_aligned_k64_dropout.cu 2025-07-17T07:37:26.8821058Z tmpxft_00000f80_00000000-7_cutlassB_f32_aligned_k64_dropout.cudafe1.cpp 2025-07-17T07:37:26.8822699Z [3663/7682] 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-07-17T07:37:27.0954880Z cutlassB_f32_aligned_k64.cu 2025-07-17T07:37:27.0955607Z tmpxft_000013b8_00000000-7_cutlassB_f32_aligned_k64.cudafe1.cpp 2025-07-17T07:37:27.0957203Z [3664/7682] 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-07-17T07:37:27.3673059Z cutlassB_f32_aligned_k65536.cu 2025-07-17T07:37:27.3673790Z tmpxft_00000fc0_00000000-7_cutlassB_f32_aligned_k65536.cudafe1.cpp 2025-07-17T07:37:27.3675378Z [3665/7682] 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-07-17T07:37:29.5553959Z cutlassB_f32_aligned_k65536_dropout.cu 2025-07-17T07:37:29.5554506Z tmpxft_00000e04_00000000-7_cutlassB_f32_aligned_k65536_dropout.cudafe1.cpp 2025-07-17T07:37:29.5555431Z [3666/7682] 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-07-17T07:37:29.5581159Z cutlassB_f32_notaligned_k128_dropout.cu 2025-07-17T07:37:29.5581659Z tmpxft_000012cc_00000000-7_cutlassB_f32_notaligned_k128_dropout.cudafe1.cpp 2025-07-17T07:37:29.5582582Z [3667/7682] 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-07-17T07:37:29.6320109Z cutlassB_f32_notaligned_k128.cu 2025-07-17T07:37:29.6320850Z tmpxft_000003f0_00000000-7_cutlassB_f32_notaligned_k128.cudafe1.cpp 2025-07-17T07:37:29.6322378Z [3668/7682] 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-07-17T07:37:29.6992846Z cutlassB_f32_notaligned_k32.cu 2025-07-17T07:37:29.6993552Z tmpxft_00000ee4_00000000-7_cutlassB_f32_notaligned_k32.cudafe1.cpp 2025-07-17T07:37:29.6995149Z [3669/7682] 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-07-17T07:37:29.8138353Z cutlassB_f32_notaligned_k32_dropout.cu 2025-07-17T07:37:29.8139259Z tmpxft_000015a0_00000000-7_cutlassB_f32_notaligned_k32_dropout.cudafe1.cpp 2025-07-17T07:37:29.8140903Z [3670/7682] 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-07-17T07:37:30.0533714Z cutlassB_f32_notaligned_k64.cu 2025-07-17T07:37:30.0534538Z tmpxft_000015ac_00000000-7_cutlassB_f32_notaligned_k64.cudafe1.cpp 2025-07-17T07:37:30.0536237Z [3671/7682] 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-07-17T07:37:32.2834644Z cutlassB_f32_notaligned_k64_dropout.cu 2025-07-17T07:37:32.2835405Z tmpxft_00000074_00000000-7_cutlassB_f32_notaligned_k64_dropout.cudafe1.cpp 2025-07-17T07:37:32.2836779Z [3672/7682] 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-07-17T07:37:32.3254805Z cutlassB_f32_notaligned_k65536.cu 2025-07-17T07:37:32.3255254Z tmpxft_00000608_00000000-7_cutlassB_f32_notaligned_k65536.cudafe1.cpp 2025-07-17T07:37:32.3256224Z [3673/7682] 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-07-17T07:37:32.3815557Z cutlassB_f32_notaligned_k65536_dropout.cu 2025-07-17T07:37:32.3816065Z tmpxft_000008e4_00000000-7_cutlassB_f32_notaligned_k65536_dropout.cudafe1.cpp 2025-07-17T07:37:32.3816973Z [3674/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_aligned.cu.obj 2025-07-17T07:37:32.4554013Z cutlassF_f16_aligned.cu 2025-07-17T07:37:32.4554402Z tmpxft_00001530_00000000-7_cutlassF_f16_aligned.cudafe1.cpp 2025-07-17T07:37:32.4555209Z [3675/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_bf16_aligned.cu.obj 2025-07-17T07:37:32.5208713Z cutlassF_bf16_aligned.cu 2025-07-17T07:37:32.5209372Z tmpxft_000005a0_00000000-7_cutlassF_bf16_aligned.cudafe1.cpp 2025-07-17T07:37:32.5210330Z [3676/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f16_notaligned.cu.obj 2025-07-17T07:37:32.6830280Z cutlassF_f16_notaligned.cu 2025-07-17T07:37:32.6830683Z tmpxft_000014b8_00000000-7_cutlassF_f16_notaligned.cudafe1.cpp 2025-07-17T07:37:32.6831540Z [3677/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_aligned.cu.obj 2025-07-17T07:37:34.5772409Z cutlassF_f32_aligned.cu 2025-07-17T07:37:34.5772860Z tmpxft_00000428_00000000-7_cutlassF_f32_aligned.cudafe1.cpp 2025-07-17T07:37:34.5773760Z [3678/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\mem_eff_attention\kernels\cutlassF_f32_notaligned.cu.obj 2025-07-17T07:37:40.6953821Z cutlassF_f32_notaligned.cu 2025-07-17T07:37:40.8056440Z tmpxft_00001190_00000000-7_cutlassF_f32_notaligned.cudafe1.cpp 2025-07-17T07:37:40.8057791Z [3679/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterQuantizedCUDA_0.cpp.obj 2025-07-17T07:37:43.0533637Z [3680/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterNestedTensorCUDA_0.cpp.obj 2025-07-17T07:37:44.1531170Z [3681/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCsrCUDA_0.cpp.obj 2025-07-17T07:37:44.2729338Z [3682/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterSparseCUDA_0.cpp.obj 2025-07-17T07:37:49.2634432Z [3683/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLib.cpp.obj 2025-07-17T07:37:49.4473366Z [3684/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebra.cpp.obj 2025-07-17T07:37:49.4781967Z [3685/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CUDASolver.cpp.obj 2025-07-17T07:37:50.1520218Z [3686/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\BatchLinearAlgebraLibBlas.cpp.obj 2025-07-17T07:37:51.7055085Z [3687/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CudssHandlePool.cpp.obj 2025-07-17T07:37:52.1468388Z [3688/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\linalg\CusolverDnHandlePool.cpp.obj 2025-07-17T07:37:52.8065221Z [3689/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDASparseBlas.cpp.obj 2025-07-17T07:37:55.4653567Z [3690/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\StreamTimer.cpp.obj 2025-07-17T07:37:55.8644942Z [3691/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\tunable\Tunable.cpp.obj 2025-07-17T07:37:56.3487119Z [3692/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CublasHandlePool.cpp.obj 2025-07-17T07:38:00.3398932Z [3693/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Activation.cpp.obj 2025-07-17T07:38:04.1634072Z [3694/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\LinearAlgebraStubs.cpp.obj 2025-07-17T07:38:07.8210646Z [3695/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\cuda\CUDABlas.cpp.obj 2025-07-17T07:38:10.3192480Z [3696/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Blas.cpp.obj 2025-07-17T07:38:14.4926329Z [3697/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Distributions.cpp.obj 2025-07-17T07:38:15.7698664Z [3698/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Equal.cpp.obj 2025-07-17T07:38:16.0697109Z [3699/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\GridSampler.cpp.obj 2025-07-17T07:38:17.2161871Z [3700/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\IndexKernel.cpp.obj 2025-07-17T07:38:20.4265061Z [3701/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ReduceOps.cpp.obj 2025-07-17T07:38:20.8552887Z [3702/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\ScanKernels.cpp.obj 2025-07-17T07:38:21.3045008Z [3703/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sort.cpp.obj 2025-07-17T07:38:22.6626794Z [3704/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Sorting.cpp.obj 2025-07-17T07:38:25.3328308Z [3705/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorModeKernel.cpp.obj 2025-07-17T07:38:26.2872030Z [3706/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorTopK.cpp.obj 2025-07-17T07:38:26.6197722Z [3707/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\TensorShapeCUDA.cpp.obj 2025-07-17T07:38:26.6495306Z [3708/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\RegisterCUDA_0.cpp.obj 2025-07-17T07:38:27.2058888Z [3709/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\jit_utils.cpp.obj 2025-07-17T07:38:29.6460042Z [3710/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseCUDABlas.cpp.obj 2025-07-17T07:38:30.7666007Z [3711/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\transformers\cuda\flash_attn\flash_api.cpp.obj 2025-07-17T07:38:31.4971675Z [3712/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlas.cpp.obj 2025-07-17T07:38:31.5185127Z [3713/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasLegacy.cpp.obj 2025-07-17T07:38:32.6815250Z [3714/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\sparse\cuda\SparseBlasImpl.cpp.obj 2025-07-17T07:38:33.6482591Z [3715/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\CudaIPCTypes.cpp.obj 2025-07-17T07:38:34.6390822Z [3716/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\CUDAPluggableAllocator.cpp.obj 2025-07-17T07:38:36.0177326Z [3717/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\nested\cuda\NestedTensorTransformerFunctions.cpp.obj 2025-07-17T07:38:38.0049611Z [3718/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\memory_snapshot.cpp.obj 2025-07-17T07:38:38.5026235Z [3719/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_runner\model_container_runner_cuda.cpp.obj 2025-07-17T07:38:39.7399703Z [3720/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\inductor\aoti_torch\shim_cuda.cpp.obj 2025-07-17T07:38:42.1096745Z [3721/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\cuda\comm.cpp.obj 2025-07-17T07:38:43.4814848Z [3722/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\profiler\stubs\cuda.cpp.obj 2025-07-17T07:38:45.6088809Z [3723/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\UfuncCUDA_add.cu.obj 2025-07-17T07:38:48.1140022Z UfuncCUDA_add.cu 2025-07-17T07:38:48.1140614Z tmpxft_0000103c_00000000-7_UfuncCUDA_add.cudafe1.cpp 2025-07-17T07:38:48.1141807Z [3724/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\passes\frozen_conv_add_relu_fusion_cuda.cpp.obj 2025-07-17T07:38:48.2778541Z [3725/7682] Building CXX object caffe2\CMakeFiles\torch.dir\__\empty.cpp.obj 2025-07-17T07:38:48.9532319Z [3726/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\codegen\fuser\cuda\fused_kernel.cpp.obj 2025-07-17T07:38:49.3885761Z [3727/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\autograd\functions\comm.cpp.obj 2025-07-17T07:38:49.6242323Z [3728/7682] Building CXX object caffe2\torch\lib\libshm_windows\CMakeFiles\shm.dir\core.cpp.obj 2025-07-17T07:38:51.1284619Z [3729/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\complexity.cc.obj 2025-07-17T07:38:51.1987143Z [3730/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\counter.cc.obj 2025-07-17T07:38:51.2370671Z [3731/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\console_reporter.cc.obj 2025-07-17T07:38:51.6340726Z [3732/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\csv_reporter.cc.obj 2025-07-17T07:38:51.7469193Z [3733/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\json_reporter.cc.obj 2025-07-17T07:38:51.8514599Z [3734/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\perf_counters.cc.obj 2025-07-17T07:38:52.2767493Z [3735/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\reporter.cc.obj 2025-07-17T07:38:52.3606825Z [3736/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\statistics.cc.obj 2025-07-17T07:38:52.4329415Z [3737/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\string_util.cc.obj 2025-07-17T07:38:52.8738719Z [3738/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\timers.cc.obj 2025-07-17T07:38:52.9860810Z [3739/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark.dir\sysinfo.cc.obj 2025-07-17T07:38:57.9077208Z [3740/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\tensorexpr\cuda_codegen.cpp.obj 2025-07-17T07:38:57.9079583Z 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-07-17T07:38:57.9081597Z with 2025-07-17T07:38:57.9081991Z [ 2025-07-17T07:38:57.9082342Z T=int 2025-07-17T07:38:57.9082756Z ] 2025-07-17T07:38:57.9083881Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/jit/tensorexpr/ir.h(395): note: the template instantiation context (the oldest one first) is 2025-07-17T07:38:58.2200341Z 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-07-17T07:38:58.2201681Z with 2025-07-17T07:38:58.2201908Z [ 2025-07-17T07:38:58.2202128Z T=int 2025-07-17T07:38:58.2202338Z ] 2025-07-17T07:38:58.2203386Z [3741/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\quantized\cuda\FakeQuantizeCore.cu.obj 2025-07-17T07:38:59.0344800Z FakeQuantizeCore.cu 2025-07-17T07:38:59.0345508Z tmpxft_00000474_00000000-7_FakeQuantizeCore.cudafe1.cpp 2025-07-17T07:38:59.0346736Z [3742/7682] Building CXX object caffe2\CMakeFiles\torch_cuda.dir\__\torch\csrc\jit\runtime\register_cuda_ops.cpp.obj 2025-07-17T07:38:59.9984479Z [3743/7682] Building CUDA object test_cpp_c10d\CMakeFiles\c10d_cuda_test.dir\CUDATest.cu.obj 2025-07-17T07:39:01.4610897Z CUDATest.cu 2025-07-17T07:39:01.4611453Z tmpxft_00000fbc_00000000-7_CUDATest.cudafe1.cpp 2025-07-17T07:39:01.4612445Z [3744/7682] Building CXX object test_jit\CMakeFiles\jitbackend_test.dir\test_backend_lib.cpp.obj 2025-07-17T07:39:01.9910983Z [3745/7682] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_preprocess.cpp.obj 2025-07-17T07:39:02.5705712Z [3746/7682] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\test_backend_compiler_lib.cpp.obj 2025-07-17T07:39:05.4847148Z [3747/7682] Building CXX object test_jit\CMakeFiles\backend_with_compiler.dir\__\__\__\torch\csrc\jit\mobile\profiler_edge.cpp.obj 2025-07-17T07:39:16.5474277Z [3748/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_1.cpp.obj 2025-07-17T07:39:16.6223038Z [3749/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_0.cpp.obj 2025-07-17T07:39:19.0824160Z [3750/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_3.cpp.obj 2025-07-17T07:39:19.4354282Z [3751/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_2.cpp.obj 2025-07-17T07:39:20.0927436Z [3752/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_functions_4.cpp.obj 2025-07-17T07:39:32.4415391Z [3753/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_variable_methods.cpp.obj 2025-07-17T07:39:39.2805724Z [3754/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nn_functions.cpp.obj 2025-07-17T07:39:39.7922890Z [3755/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_fft_functions.cpp.obj 2025-07-17T07:39:41.9170690Z [3756/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_1.cpp.obj 2025-07-17T07:39:48.8852856Z [3757/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_0.cpp.obj 2025-07-17T07:39:51.8606201Z [3758/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_torch_functions_2.cpp.obj 2025-07-17T07:39:54.1207511Z [3759/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_sparse_functions.cpp.obj 2025-07-17T07:39:54.7746387Z [3760/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_linalg_functions.cpp.obj 2025-07-17T07:39:55.2873878Z [3761/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DataLoader.cpp.obj 2025-07-17T07:39:55.9049488Z [3762/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_nested_functions.cpp.obj 2025-07-17T07:39:58.2142579Z [3763/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_special_functions.cpp.obj 2025-07-17T07:39:59.0292288Z [3764/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_return_types.cpp.obj 2025-07-17T07:40:01.2192113Z [3765/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\generated\python_enum_tag.cpp.obj 2025-07-17T07:40:02.4747747Z [3766/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DeviceAccelerator.cpp.obj 2025-07-17T07:40:05.9023198Z [3767/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Dtype.cpp.obj 2025-07-17T07:40:06.8737066Z [3768/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Device.cpp.obj 2025-07-17T07:40:09.3468585Z [3769/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Layout.cpp.obj 2025-07-17T07:40:12.6119856Z [3770/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\MemoryFormat.cpp.obj 2025-07-17T07:40:13.6941089Z [3771/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\DynamicTypes.cpp.obj 2025-07-17T07:40:13.9135797Z [3772/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\QScheme.cpp.obj 2025-07-17T07:40:16.9047917Z [3773/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Exceptions.cpp.obj 2025-07-17T07:40:20.6251946Z [3774/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\python_dimname.cpp.obj 2025-07-17T07:40:21.0041434Z [3775/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Generator.cpp.obj 2025-07-17T07:40:25.4815822Z [3776/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Size.cpp.obj 2025-07-17T07:40:32.5268632Z [3777/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\PyInterpreter.cpp.obj 2025-07-17T07:40:38.3455587Z [3778/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Module.cpp.obj 2025-07-17T07:40:40.0283864Z [3779/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Storage.cpp.obj 2025-07-17T07:40:42.1716084Z [3780/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageSharing.cpp.obj 2025-07-17T07:40:44.5739697Z [3781/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\StorageMethods.cpp.obj 2025-07-17T07:40:44.9244999Z [3782/7682] Building CUDA object caffe2\CMakeFiles\torch_cuda.dir\__\aten\src\ATen\native\cuda\Unique.cu.obj 2025-07-17T07:40:51.6116280Z Unique.cu 2025-07-17T07:40:51.6116648Z tmpxft_000003c8_00000000-7_Unique.cudafe1.cpp 2025-07-17T07:40:51.6719017Z [3783/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Stream.cpp.obj 2025-07-17T07:40:56.0002267Z [3784/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\Event.cpp.obj 2025-07-17T07:40:58.1550904Z [3785/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\profiler_python.cpp.obj 2025-07-17T07:40:59.6298319Z [3786/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\TypeInfo.cpp.obj 2025-07-17T07:40:59.8135956Z [3787/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\functions\init.cpp.obj 2025-07-17T07:41:02.0711580Z [3788/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\api\src\python\init.cpp.obj 2025-07-17T07:41:02.6939788Z [3789/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_anomaly_mode.cpp.obj 2025-07-17T07:41:09.1562158Z [3790/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_cpp_function.cpp.obj 2025-07-17T07:41:13.8814704Z [3791/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_saved_variable_hooks.cpp.obj 2025-07-17T07:41:14.9608148Z [3792/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\init.cpp.obj 2025-07-17T07:41:16.7238388Z [3793/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_engine.cpp.obj 2025-07-17T07:41:18.8877012Z [3794/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_hook.cpp.obj 2025-07-17T07:41:20.1108570Z [3795/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_legacy_variable.cpp.obj 2025-07-17T07:41:26.7549273Z [3796/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cache_entry.cpp.obj 2025-07-17T07:41:27.2546527Z [3797/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_function.cpp.obj 2025-07-17T07:41:32.2340047Z [3798/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpp_shim.cpp.obj 2025-07-17T07:41:32.7383848Z [3799/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_torch_functions_manual.cpp.obj 2025-07-17T07:41:33.3516650Z [3800/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable_indexing.cpp.obj 2025-07-17T07:41:33.8782922Z [3801/7682] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\cpython_defs.c.obj 2025-07-17T07:41:33.9687926Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-17T07:41:33.9689717Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-17T07:41:34.0349319Z [3802/7682] Building C object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame.c.obj 2025-07-17T07:41:37.5307055Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-17T07:41:37.5309038Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-17T07:41:37.5313351Z [3803/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_variable.cpp.obj 2025-07-17T07:41:41.1980944Z [3804/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\autograd\python_nested_functions_manual.cpp.obj 2025-07-17T07:41:41.4821665Z [3805/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\eval_frame_cpp.cpp.obj 2025-07-17T07:41:42.1935867Z [3806/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\extra_state.cpp.obj 2025-07-17T07:41:42.6383805Z [3807/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\framelocals_mapping.cpp.obj 2025-07-17T07:41:43.0248149Z [3808/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\fx\node.cpp.obj 2025-07-17T07:41:43.3839728Z [3809/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\python_compiled_autograd.cpp.obj 2025-07-17T07:41:46.4250858Z [3810/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\utils.cpp.obj 2025-07-17T07:41:49.2005169Z [3811/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\upgrader.cpp.obj 2025-07-17T07:41:52.0886679Z [3812/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\example_upgraders.cpp.obj 2025-07-17T07:41:52.2492750Z [3813/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\init.cpp.obj 2025-07-17T07:41:57.0695151Z [3814/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mtia\Module.cpp.obj 2025-07-17T07:42:00.0396893Z [3815/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\mps\Module.cpp.obj 2025-07-17T07:42:02.2410465Z [3816/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\export\pybind.cpp.obj 2025-07-17T07:42:03.4135907Z [3817/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_runner\pybind.cpp.obj 2025-07-17T07:42:04.0034763Z [3818/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_package\pybind.cpp.obj 2025-07-17T07:42:09.5207984Z [3819/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\resize_storage_bytes.cpp.obj 2025-07-17T07:42:10.4843731Z [3820/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\functorch\init.cpp.obj 2025-07-17T07:42:15.5740994Z [3821/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\dynamo\guards.cpp.obj 2025-07-17T07:42:15.6851642Z [3822/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\static_cuda_launcher.cpp.obj 2025-07-17T07:42:17.1086688Z [3823/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_meta_info.cpp.obj 2025-07-17T07:42:17.7930122Z [3824/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\inductor\aoti_eager\kernel_holder.cpp.obj 2025-07-17T07:42:22.4479804Z [3825/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\cast_all_constant_to_floating.cpp.obj 2025-07-17T07:42:22.4956786Z [3826/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\deduplicate_initializers.cpp.obj 2025-07-17T07:42:28.8012033Z [3827/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\backends\backend_init.cpp.obj 2025-07-17T07:42:29.5340386Z [3828/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_fold.cpp.obj 2025-07-17T07:42:29.6817904Z [3829/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eliminate_unused_items.cpp.obj 2025-07-17T07:42:32.4599009Z [3830/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\constant_map.cpp.obj 2025-07-17T07:42:35.6105903Z [3831/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\eval_peephole.cpp.obj 2025-07-17T07:42:37.6778986Z [3832/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_substitution.cpp.obj 2025-07-17T07:42:38.0654490Z [3833/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\list_model_parameters.cpp.obj 2025-07-17T07:42:38.5989399Z [3834/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx.cpp.obj 2025-07-17T07:42:41.6570409Z [3835/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\helper.cpp.obj 2025-07-17T07:42:44.7943689Z [3836/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\peephole.cpp.obj 2025-07-17T07:42:45.6751943Z [3837/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\prepare_division_for_onnx.cpp.obj 2025-07-17T07:42:46.1522740Z [3838/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\preprocess_for_onnx.cpp.obj 2025-07-17T07:42:47.5194062Z [3839/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\scalar_type_analysis.cpp.obj 2025-07-17T07:42:48.2898661Z [3840/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\onnx_log.cpp.obj 2025-07-17T07:42:52.0501931Z [3841/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\fixup_onnx_controlflow.cpp.obj 2025-07-17T07:42:52.7504066Z [3842/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\init.cpp.obj 2025-07-17T07:42:56.0442178Z [3843/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\remove_inplace_ops_for_onnx.cpp.obj 2025-07-17T07:42:56.3605251Z [3844/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\naming.cpp.obj 2025-07-17T07:42:57.5291967Z [3845/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\function_extraction.cpp.obj 2025-07-17T07:42:58.3812336Z [3846/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\unpack_quantized_weights.cpp.obj 2025-07-17T07:43:00.9516645Z [3847/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\autograd_function_process.cpp.obj 2025-07-17T07:43:02.6367852Z [3848/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\common.cpp.obj 2025-07-17T07:43:06.5244064Z [3849/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_encapsulation.cpp.obj 2025-07-17T07:43:08.2000961Z [3850/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\pattern_conversion\pattern_conversion.cpp.obj 2025-07-17T07:43:12.7385083Z [3851/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\passes\onnx\shape_type_inference.cpp.obj 2025-07-17T07:43:14.4882904Z [3852/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\pybind_utils.cpp.obj 2025-07-17T07:43:20.5040696Z [3853/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_arg_flatten.cpp.obj 2025-07-17T07:43:23.5670609Z [3854/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_custom_class.cpp.obj 2025-07-17T07:43:25.3381404Z [3855/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_dict.cpp.obj 2025-07-17T07:43:27.4126566Z [3856/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\tree_views.cpp.obj 2025-07-17T07:43:29.1852035Z [3857/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_interpreter.cpp.obj 2025-07-17T07:43:34.4540859Z [3858/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_list.cpp.obj 2025-07-17T07:43:39.9687838Z [3859/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tracer.cpp.obj 2025-07-17T07:43:45.4830223Z [3860/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_tree_views.cpp.obj 2025-07-17T07:43:45.7211463Z [3861/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_ir.cpp.obj 2025-07-17T07:43:47.4137287Z [3862/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\frontend\concrete_module_type.cpp.obj 2025-07-17T07:43:47.4138509Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(487): warning C4996: 'pybind11::handle::operator ==': Use obj1.is(obj2) instead 2025-07-17T07:43:47.4139779Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(487): note: the template instantiation context (the oldest one first) is 2025-07-17T07:43:47.4141817Z 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-07-17T07:43:47.4182296Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(2238): note: see reference to function template instantiation 'bool std::equal(const _InIt1,const _InIt1,const _InIt2)' being compiled 2025-07-17T07:43:47.4183767Z with 2025-07-17T07:43:47.4183997Z [ 2025-07-17T07:43:47.4184265Z _InIt1=const pybind11::object *, 2025-07-17T07:43:47.4184598Z _InIt2=const pybind11::object * 2025-07-17T07:43:47.4184921Z ] 2025-07-17T07:43:47.4185955Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5277): 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-07-17T07:43:47.4187177Z with 2025-07-17T07:43:47.4187414Z [ 2025-07-17T07:43:47.4187635Z _InIt1=const pybind11::object *, 2025-07-17T07:43:52.7014485Z _InIt2=const pybind11::object *, 2025-07-17T07:43:52.7015132Z _Pr=std::equal_to 2025-07-17T07:43:52.7015673Z ] 2025-07-17T07:43:52.7017881Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xutility(5260): note: see reference to function template instantiation 'bool std::equal_to::operator ()(_Ty1,_Ty2) noexcept(false) const' being compiled 2025-07-17T07:43:52.7020198Z with 2025-07-17T07:43:52.7020631Z [ 2025-07-17T07:43:52.7021023Z _Ty1=const pybind11::object &, 2025-07-17T07:43:52.7021646Z _Ty2=const pybind11::object & 2025-07-17T07:43:52.7022150Z ] 2025-07-17T07:43:52.7022991Z [3863/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\multiprocessing\init.cpp.obj 2025-07-17T07:43:56.8535116Z [3864/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\python_sugared_value.cpp.obj 2025-07-17T07:44:02.1642516Z [3865/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\monitor\python_init.cpp.obj 2025-07-17T07:44:04.0369677Z [3866/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\runtime\static\init.cpp.obj 2025-07-17T07:44:04.5864522Z [3867/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\python\script_init.cpp.obj 2025-07-17T07:44:10.3567800Z [3868/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\combined_traceback.cpp.obj 2025-07-17T07:44:19.6071704Z [3869/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\serialization.cpp.obj 2025-07-17T07:44:21.1284895Z [3870/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\onnx\init.cpp.obj 2025-07-17T07:44:23.4537439Z [3871/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\tensor\python_tensor.cpp.obj 2025-07-17T07:44:27.6506130Z [3872/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\init.cpp.obj 2025-07-17T07:44:28.0496285Z [3873/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\profiler\python\init.cpp.obj 2025-07-17T07:44:29.0061597Z [3874/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\object_ptr.cpp.obj 2025-07-17T07:44:29.9643443Z [3875/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\jit\tensorexpr\tensorexpr_init.cpp.obj 2025-07-17T07:44:30.4962110Z [3876/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\device_lazy_init.cpp.obj 2025-07-17T07:44:32.1783088Z [3877/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\invalid_arguments.cpp.obj 2025-07-17T07:44:38.3525254Z [3878/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\throughput_benchmark.cpp.obj 2025-07-17T07:44:39.2025678Z [3879/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pyobject_preservation.cpp.obj 2025-07-17T07:44:39.9923931Z [3880/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_symnode.cpp.obj 2025-07-17T07:44:40.2086495Z [3881/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils.cpp.obj 2025-07-17T07:44:43.7711318Z [3882/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\pybind.cpp.obj 2025-07-17T07:44:46.6244576Z [3883/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\structseq.cpp.obj 2025-07-17T07:44:47.9880048Z [3884/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_dtypes.cpp.obj 2025-07-17T07:44:48.0751845Z [3885/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_arg_parser.cpp.obj 2025-07-17T07:44:51.6651235Z [3886/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_layouts.cpp.obj 2025-07-17T07:44:54.3979743Z [3887/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_memoryformats.cpp.obj 2025-07-17T07:44:56.4981215Z [3888/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_qschemes.cpp.obj 2025-07-17T07:44:57.1688244Z [3889/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\nested.cpp.obj 2025-07-17T07:44:57.4362066Z [3890/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_apply.cpp.obj 2025-07-17T07:44:58.2143421Z [3891/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\python_dispatch.cpp.obj 2025-07-17T07:45:03.9643201Z [3892/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\verbose.cpp.obj 2025-07-17T07:45:05.6387790Z [3893/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cpu\Module.cpp.obj 2025-07-17T07:45:06.5488544Z [3894/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_list.cpp.obj 2025-07-17T07:45:06.9934114Z [3895/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_types.cpp.obj 2025-07-17T07:45:07.1138177Z [3896/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\disable_torch_function.cpp.obj 2025-07-17T07:45:11.7761219Z [3897/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\instruction_counter\Module.cpp.obj 2025-07-17T07:45:13.7914946Z [3898/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_new.cpp.obj 2025-07-17T07:45:14.5138020Z [3899/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\itt.cpp.obj 2025-07-17T07:45:15.5252886Z [3900/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\utils\tensor_numpy.cpp.obj 2025-07-17T07:45:17.7353030Z [3901/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\python_util.cpp.obj 2025-07-17T07:45:23.3436070Z [3902/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\__\test\cpp\jit\torch_python_test.cpp.obj 2025-07-17T07:45:29.6346918Z [3903/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\lazy\python\init.cpp.obj 2025-07-17T07:45:31.3256750Z [3904/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Event.cpp.obj 2025-07-17T07:45:32.5642501Z [3905/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\python_comm.cpp.obj 2025-07-17T07:45:33.9380242Z [3906/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Stream.cpp.obj 2025-07-17T07:45:39.1700368Z [3907/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Module.cpp.obj 2025-07-17T07:45:39.3246401Z [3908/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\Graph.cpp.obj 2025-07-17T07:45:40.5473191Z [3909/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\nvtx.cpp.obj 2025-07-17T07:45:40.7596375Z [3910/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudart.cpp.obj 2025-07-17T07:45:42.4384801Z [3911/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\GdsFile.cpp.obj 2025-07-17T07:45:46.1557452Z [3912/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\any_lite.cc.obj 2025-07-17T07:45:46.2301413Z [3913/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\arena.cc.obj 2025-07-17T07:45:46.5911913Z [3914/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_enum_util.cc.obj 2025-07-17T07:45:46.6274158Z [3915/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\extension_set.cc.obj 2025-07-17T07:45:46.9052702Z [3916/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_table_driven_lite.cc.obj 2025-07-17T07:45:46.9734957Z [3917/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\generated_message_util.cc.obj 2025-07-17T07:45:47.0745547Z [3918/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\MemPool.cpp.obj 2025-07-17T07:45:47.1470880Z [3919/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\shared\cudnn.cpp.obj 2025-07-17T07:45:47.1618600Z [3920/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\implicit_weak_message.cc.obj 2025-07-17T07:45:47.2479862Z [3921/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\coded_stream.cc.obj 2025-07-17T07:45:47.3696097Z [3922/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream.cc.obj 2025-07-17T07:45:47.4080227Z [3923/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\strtod.cc.obj 2025-07-17T07:45:47.4445626Z [3924/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\io_win32.cc.obj 2025-07-17T07:45:47.4905044Z [3925/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl.cc.obj 2025-07-17T07:45:47.6227387Z [3926/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\io\zero_copy_stream_impl_lite.cc.obj 2025-07-17T07:45:47.7368983Z [3927/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\message_lite.cc.obj 2025-07-17T07:45:47.7608745Z [3928/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\repeated_field.cc.obj 2025-07-17T07:45:47.7745255Z [3929/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\parse_context.cc.obj 2025-07-17T07:45:47.8816687Z [3930/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\bytestream.cc.obj 2025-07-17T07:45:48.0249300Z [3931/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\status.cc.obj 2025-07-17T07:45:48.0263361Z [3932/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\int128.cc.obj 2025-07-17T07:45:48.1117495Z [3933/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\statusor.cc.obj 2025-07-17T07:45:48.1234551Z [3934/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\common.cc.obj 2025-07-17T07:45:48.2605670Z [3935/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringpiece.cc.obj 2025-07-17T07:45:48.2787609Z [3936/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\stringprintf.cc.obj 2025-07-17T07:45:48.3621797Z [3937/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\structurally_valid.cc.obj 2025-07-17T07:45:48.4134189Z [3938/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\strutil.cc.obj 2025-07-17T07:45:48.4221179Z [3939/7682] Building RC object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\version.rc.res 2025-07-17T07:45:48.4913636Z Microsoft (R) Windows (R) Resource Compiler Version 10.0.10011.16384 2025-07-17T07:45:48.4913991Z 2025-07-17T07:45:48.4913996Z 2025-07-17T07:45:48.5230215Z Copyright (C) Microsoft Corporation. All rights reserved. 2025-07-17T07:45:48.5230803Z 2025-07-17T07:45:48.5230808Z 2025-07-17T07:45:48.5230813Z 2025-07-17T07:45:48.5230821Z 2025-07-17T07:45:48.5231395Z [3940/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\stubs\time.cc.obj 2025-07-17T07:45:48.5675770Z [3941/7682] Building CXX object third_party\protobuf\cmake\CMakeFiles\libprotobuf-lite.dir\__\src\google\protobuf\wire_format_lite.cc.obj 2025-07-17T07:45:49.0892574Z [3942/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\init.c.obj 2025-07-17T07:45:49.1237517Z [3943/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\log.c.obj 2025-07-17T07:45:49.1330784Z [3944/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\api.c.obj 2025-07-17T07:45:49.1568980Z [3945/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\cache.c.obj 2025-07-17T07:45:49.2031671Z [3946/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\info.c.obj 2025-07-17T07:45:49.2174988Z [3947/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\vendor.c.obj 2025-07-17T07:45:49.2456858Z [3948/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\uarch.c.obj 2025-07-17T07:45:49.2465513Z [3949/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\init.c.obj 2025-07-17T07:45:49.3074822Z [3950/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\name.c.obj 2025-07-17T07:45:49.3598972Z [3951/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\isa.c.obj 2025-07-17T07:45:49.3618817Z [3952/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\topology.c.obj 2025-07-17T07:45:49.3702850Z [3953/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\init.c.obj 2025-07-17T07:45:49.5230429Z [3954/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\descriptor.c.obj 2025-07-17T07:45:49.5240339Z [3955/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\cache\deterministic.c.obj 2025-07-17T07:45:49.7598419Z [3956/7682] Building C object confu-deps\cpuinfo\CMakeFiles\cpuinfo_internals.dir\src\x86\windows\init.c.obj 2025-07-17T07:45:50.5584885Z [3957/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-07-17T07:45:50.5669851Z [3958/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u3.c.obj 2025-07-17T07:45:50.5690206Z [3959/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-scalar-u2.c.obj 2025-07-17T07:45:50.5704899Z [3960/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-07-17T07:45:50.6842791Z [3961/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u2.c.obj 2025-07-17T07:45:50.6866077Z [3962/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u1.c.obj 2025-07-17T07:45:50.6878958Z [3963/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-07-17T07:45:50.6923575Z [3964/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-07-17T07:45:50.7985018Z [3965/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u1.c.obj 2025-07-17T07:45:50.8055174Z [3966/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qs8-vcvt\gen\f16-qs8-vcvt-scalar-imagic-u3.c.obj 2025-07-17T07:45:50.8059642Z [3967/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u2.c.obj 2025-07-17T07:45:50.8071744Z [3968/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-qu8-vcvt\gen\f16-qu8-vcvt-scalar-imagic-u3.c.obj 2025-07-17T07:45:50.9142855Z [3969/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u1.c.obj 2025-07-17T07:45:50.9220025Z [3970/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc2.c.obj 2025-07-17T07:45:50.9242794Z [3971/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u3-acc3.c.obj 2025-07-17T07:45:50.9283228Z [3972/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-scalar-u4-acc4.c.obj 2025-07-17T07:45:51.0256117Z [3973/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u2-acc2.c.obj 2025-07-17T07:45:51.0294718Z [3974/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc2.c.obj 2025-07-17T07:45:51.0367640Z [3975/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u1.c.obj 2025-07-17T07:45:51.0383686Z [3976/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u3-acc3.c.obj 2025-07-17T07:45:51.1342690Z [3977/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u1.c.obj 2025-07-17T07:45:51.1408021Z [3978/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-scalar-u4-acc4.c.obj 2025-07-17T07:45:51.1496156Z [3979/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc2.c.obj 2025-07-17T07:45:51.1500795Z [3980/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u3-acc3.c.obj 2025-07-17T07:45:51.2017052Z [3981/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\cuda\utils.cpp.obj 2025-07-17T07:45:51.2614772Z [3982/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-scalar-u4-acc4.c.obj 2025-07-17T07:45:51.3960552Z [3983/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.obj 2025-07-17T07:45:51.4003030Z [3984/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc\f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.obj 2025-07-17T07:45:51.4787136Z [3985/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.obj 2025-07-17T07:45:51.4839167Z [3986/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-17T07:45:51.4857562Z [3987/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.obj 2025-07-17T07:45:51.5111888Z [3988/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l1c1s1r-scalar.c.obj 2025-07-17T07:45:51.5341214Z [3989/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.obj 2025-07-17T07:45:51.6063026Z [3990/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar.c.obj 2025-07-17T07:45:51.6115932Z [3991/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.obj 2025-07-17T07:45:51.6351426Z [3992/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3f3m3l1c1s1r-scalar.c.obj 2025-07-17T07:45:51.6363340Z [3993/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.obj 2025-07-17T07:45:51.7113939Z [3994/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-minmax-scalar.c.obj 2025-07-17T07:45:51.7265261Z [3995/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p1c-scalar.c.obj 2025-07-17T07:45:51.7548977Z [3996/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar-acc2.c.obj 2025-07-17T07:45:51.7644707Z [3997/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar-acc2.c.obj 2025-07-17T07:45:51.7785349Z [3998/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-minmax-scalar.c.obj 2025-07-17T07:45:51.8431709Z [3999/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p2c-scalar.c.obj 2025-07-17T07:45:51.8896290Z [4000/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-minmax-scalar.c.obj 2025-07-17T07:45:51.9339203Z [4001/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p1c-scalar.c.obj 2025-07-17T07:45:51.9355116Z [4002/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar-acc2.c.obj 2025-07-17T07:45:51.9370590Z [4003/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-minmax-scalar.c.obj 2025-07-17T07:45:51.9635433Z [4004/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar-acc2.c.obj 2025-07-17T07:45:52.0027839Z [4005/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p2c-scalar.c.obj 2025-07-17T07:45:52.1330445Z [4006/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-17T07:45:52.1776576Z [4007/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar.c.obj 2025-07-17T07:45:52.1818350Z [4008/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.obj 2025-07-17T07:45:52.1880494Z [4009/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.obj 2025-07-17T07:45:52.1936399Z [4010/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-17T07:45:52.2571895Z [4011/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.obj 2025-07-17T07:45:52.3004529Z [4012/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar.c.obj 2025-07-17T07:45:52.3116288Z [4013/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.obj 2025-07-17T07:45:52.3505085Z [4014/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.obj 2025-07-17T07:45:52.3556969Z [4015/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.obj 2025-07-17T07:45:52.3870048Z [4016/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.obj 2025-07-17T07:45:52.4241911Z [4017/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l1c1s1r-scalar.c.obj 2025-07-17T07:45:52.4370575Z [4018/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-minmax-scalar.c.obj 2025-07-17T07:45:52.4700945Z [4019/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar-acc2.c.obj 2025-07-17T07:45:52.4754644Z [4020/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p1c-scalar.c.obj 2025-07-17T07:45:52.5547083Z [4021/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-minmax-scalar.c.obj 2025-07-17T07:45:52.5579792Z [4022/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar-acc2.c.obj 2025-07-17T07:45:52.5655441Z [4023/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p2c-scalar.c.obj 2025-07-17T07:45:52.6364685Z [4024/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-minmax-scalar.c.obj 2025-07-17T07:45:52.6428838Z [4025/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p1c-scalar.c.obj 2025-07-17T07:45:52.6782799Z [4026/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar-acc2.c.obj 2025-07-17T07:45:52.6798577Z [4027/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-minmax-scalar.c.obj 2025-07-17T07:45:52.7579236Z [4028/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar-acc2.c.obj 2025-07-17T07:45:52.7752821Z [4029/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p2c-scalar.c.obj 2025-07-17T07:45:52.7888248Z [4030/7682] 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-07-17T07:45:52.8385046Z [4031/7682] 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-07-17T07:45:52.8447118Z [4032/7682] 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-07-17T07:45:52.8871445Z [4033/7682] 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-07-17T07:45:52.8963377Z [4034/7682] 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-07-17T07:45:52.9126943Z [4035/7682] 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-07-17T07:45:52.9574824Z [4036/7682] 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-07-17T07:45:52.9864597Z [4037/7682] 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-07-17T07:45:53.0679699Z [4038/7682] 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-07-17T07:45:53.0731653Z [4039/7682] 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-07-17T07:45:53.0886527Z [4040/7682] 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-07-17T07:45:53.0936033Z [4041/7682] 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-07-17T07:45:53.1040212Z [4042/7682] 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-07-17T07:45:53.1841043Z [4043/7682] 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-07-17T07:45:53.2213954Z [4044/7682] 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-07-17T07:45:53.2279325Z [4045/7682] 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-07-17T07:45:53.2321573Z [4046/7682] 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-07-17T07:45:53.2382054Z [4047/7682] 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-07-17T07:45:53.2993415Z [4048/7682] 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-07-17T07:45:53.3843555Z [4049/7682] 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-07-17T07:45:53.3847992Z [4050/7682] 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-07-17T07:45:53.4245080Z [4051/7682] 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-07-17T07:45:53.4323196Z [4052/7682] 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-07-17T07:45:53.4469596Z [4053/7682] 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-07-17T07:45:53.5049898Z [4054/7682] 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-07-17T07:45:53.5164630Z [4055/7682] 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-07-17T07:45:53.5468484Z [4056/7682] 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-07-17T07:45:53.5529988Z [4057/7682] 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-07-17T07:45:53.5653184Z [4058/7682] 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-07-17T07:45:53.6382873Z [4059/7682] 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-07-17T07:45:53.6396911Z [4060/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u1.c.obj 2025-07-17T07:45:53.6613303Z [4061/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u2.c.obj 2025-07-17T07:45:53.6689104Z [4062/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-bitcast-u3.c.obj 2025-07-17T07:45:53.6762018Z [4063/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u1.c.obj 2025-07-17T07:45:53.7768359Z [4064/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u4.c.obj 2025-07-17T07:45:53.7941447Z [4065/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-scalar-fabsf-u3.c.obj 2025-07-17T07:45:53.9566084Z [4066/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x2-relu-scalar.c.obj 2025-07-17T07:45:53.9629830Z [4067/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x4-minmax-scalar.c.obj 2025-07-17T07:45:53.9649382Z [4068/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-2x4-minmax-scalar.c.obj 2025-07-17T07:45:53.9673838Z [4069/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x4-minmax-scalar.c.obj 2025-07-17T07:45:53.9797456Z [4070/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p1.c.obj 2025-07-17T07:45:54.0564057Z [4071/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-scalar-p2.c.obj 2025-07-17T07:45:54.0642001Z [4072/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c4.c.obj 2025-07-17T07:45:54.0921219Z [4073/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-scalar-c1.c.obj 2025-07-17T07:45:54.1520962Z [4074/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-2x4-minmax-scalar.c.obj 2025-07-17T07:45:54.1591611Z [4075/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-3x3-minmax-scalar.c.obj 2025-07-17T07:45:54.1642521Z [4076/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x2-relu-scalar.c.obj 2025-07-17T07:45:54.1711455Z [4077/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x2-minmax-scalar.c.obj 2025-07-17T07:45:54.1960983Z [4078/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x4-minmax-scalar.c.obj 2025-07-17T07:45:54.3223727Z [4079/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-4x2-minmax-scalar.c.obj 2025-07-17T07:45:54.3505337Z [4080/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-relu-scalar.c.obj 2025-07-17T07:45:54.3517695Z [4081/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x4-scalar.c.obj 2025-07-17T07:45:54.3812800Z [4082/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc4w-gemm\gen\f32-qc4w-gemm-2x4-minmax-scalar.c.obj 2025-07-17T07:45:54.3891456Z [4083/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-minmax-scalar.c.obj 2025-07-17T07:45:54.4623297Z [4084/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-relu-scalar.c.obj 2025-07-17T07:45:54.4831463Z [4085/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-2x4-scalar.c.obj 2025-07-17T07:45:54.5161414Z [4086/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-minmax-scalar.c.obj 2025-07-17T07:45:54.5274001Z [4087/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-relu-scalar.c.obj 2025-07-17T07:45:54.5286061Z [4088/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2-scalar.c.obj 2025-07-17T07:45:54.6003293Z [4089/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-relu-scalar.c.obj 2025-07-17T07:45:54.6149964Z [4090/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x4-scalar.c.obj 2025-07-17T07:45:54.6360818Z [4091/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-2x1-minmax-scalar.c.obj 2025-07-17T07:45:54.6451771Z [4092/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-1x1-minmax-scalar.c.obj 2025-07-17T07:45:54.6469688Z [4093/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-4x1-minmax-scalar.c.obj 2025-07-17T07:45:54.7031549Z [4094/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x1-minmax-scalar.c.obj 2025-07-17T07:45:54.7296422Z [4095/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x2-minmax-scalar.c.obj 2025-07-17T07:45:54.7492110Z [4096/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-spmm\gen\f32-qc8w-spmm-8x4-minmax-scalar.c.obj 2025-07-17T07:45:54.7591315Z [4097/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u1.c.obj 2025-07-17T07:45:54.7603028Z [4098/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u2.c.obj 2025-07-17T07:45:54.8138030Z [4099/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u3.c.obj 2025-07-17T07:45:54.8381407Z [4100/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-fmagic-u4.c.obj 2025-07-17T07:45:54.8624136Z [4101/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u2.c.obj 2025-07-17T07:45:54.8709613Z [4102/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u1.c.obj 2025-07-17T07:45:54.8823641Z [4103/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-imagic-u3.c.obj 2025-07-17T07:45:54.9248666Z [4104/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u2.c.obj 2025-07-17T07:45:54.9480119Z [4105/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-scalar-lrintf-u3.c.obj 2025-07-17T07:45:55.0071421Z [4106/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u1.c.obj 2025-07-17T07:45:55.0128038Z [4107/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u2.c.obj 2025-07-17T07:45:55.0139754Z [4108/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u3.c.obj 2025-07-17T07:45:55.0425534Z [4109/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-fmagic-u4.c.obj 2025-07-17T07:45:55.0601190Z [4110/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u2.c.obj 2025-07-17T07:45:55.1096642Z [4111/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-imagic-u3.c.obj 2025-07-17T07:45:55.1265869Z [4112/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u2.c.obj 2025-07-17T07:45:55.1322766Z [4113/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u1.c.obj 2025-07-17T07:45:55.1462002Z [4114/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-scalar-lrintf-u3.c.obj 2025-07-17T07:45:55.2073910Z [4115/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.obj 2025-07-17T07:45:55.2141937Z [4116/7682] 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-07-17T07:45:55.2438974Z [4117/7682] 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-07-17T07:45:55.2457902Z [4118/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.obj 2025-07-17T07:45:55.2468788Z [4119/7682] 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-07-17T07:45:55.3153725Z [4120/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.obj 2025-07-17T07:45:55.3245946Z [4121/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.obj 2025-07-17T07:45:55.3962103Z [4122/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u2-acc2.c.obj 2025-07-17T07:45:55.3977216Z [4123/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u1.c.obj 2025-07-17T07:45:55.4321913Z [4124/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u1.c.obj 2025-07-17T07:45:55.4380306Z [4125/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u4-acc2.c.obj 2025-07-17T07:45:55.4433007Z [4126/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-scalar-u3-acc3.c.obj 2025-07-17T07:45:55.5067544Z [4127/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u2-acc2.c.obj 2025-07-17T07:45:55.5097026Z [4128/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u3-acc3.c.obj 2025-07-17T07:45:55.5321612Z [4129/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc2.c.obj 2025-07-17T07:45:55.5541572Z [4130/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u1.c.obj 2025-07-17T07:45:55.5633873Z [4131/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-scalar-u4-acc4.c.obj 2025-07-17T07:45:55.6141541Z [4132/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u2-acc2.c.obj 2025-07-17T07:45:55.6205682Z [4133/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u3-acc3.c.obj 2025-07-17T07:45:55.6372043Z [4134/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-scalar-u4-acc2.c.obj 2025-07-17T07:45:55.6659082Z [4135/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u2-acc2.c.obj 2025-07-17T07:45:55.6711924Z [4136/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u1.c.obj 2025-07-17T07:45:55.7343916Z [4137/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u3-acc3.c.obj 2025-07-17T07:45:55.7404152Z [4138/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-scalar-u4-acc2.c.obj 2025-07-17T07:45:55.8073298Z [4139/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar.c.obj 2025-07-17T07:45:55.8089096Z [4140/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-1x1-minmax-scalar-pipelined.c.obj 2025-07-17T07:45:55.8145863Z [4141/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar-pipelined.c.obj 2025-07-17T07:45:55.8433702Z [4142/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-2x1-minmax-scalar.c.obj 2025-07-17T07:45:55.8842002Z [4143/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar-pipelined.c.obj 2025-07-17T07:45:55.9067377Z [4144/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-scalar.c.obj 2025-07-17T07:45:55.9245623Z [4145/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-scalar-pipelined.c.obj 2025-07-17T07:45:56.3706263Z [4146/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u2.c.obj 2025-07-17T07:45:56.3719192Z [4147/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u4.c.obj 2025-07-17T07:45:56.3772174Z [4148/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u1.c.obj 2025-07-17T07:45:56.3844334Z [4149/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-scalar-u1.c.obj 2025-07-17T07:45:56.3905367Z [4150/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u2.c.obj 2025-07-17T07:45:56.4871901Z [4151/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-scalar-u4.c.obj 2025-07-17T07:45:56.4998823Z [4152/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u4.c.obj 2025-07-17T07:45:56.5085301Z [4153/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u1.c.obj 2025-07-17T07:45:56.5097178Z [4154/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-scalar-u8.c.obj 2025-07-17T07:45:56.5152742Z [4155/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u1.c.obj 2025-07-17T07:45:56.5999958Z [4156/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u4.c.obj 2025-07-17T07:45:56.6233889Z [4157/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-scalar-u8.c.obj 2025-07-17T07:45:56.6288197Z [4158/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u2.c.obj 2025-07-17T07:45:56.6368589Z [4159/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u1.c.obj 2025-07-17T07:45:56.6384482Z [4160/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-scalar-u4.c.obj 2025-07-17T07:45:56.7501710Z [4161/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u2.c.obj 2025-07-17T07:45:56.7514536Z [4162/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u1.c.obj 2025-07-17T07:45:56.7611226Z [4163/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u4.c.obj 2025-07-17T07:45:56.7701527Z [4164/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u2.c.obj 2025-07-17T07:45:56.7921958Z [4165/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-scalar-u1.c.obj 2025-07-17T07:45:56.8633790Z [4166/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-scalar-u4.c.obj 2025-07-17T07:45:56.8747135Z [4167/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u1.c.obj 2025-07-17T07:45:56.8913528Z [4168/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u2.c.obj 2025-07-17T07:45:56.8931569Z [4169/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-scalar-u4.c.obj 2025-07-17T07:45:56.9149567Z [4170/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u1.c.obj 2025-07-17T07:45:56.9842098Z [4171/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u4.c.obj 2025-07-17T07:45:56.9855847Z [4172/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-scalar-u2.c.obj 2025-07-17T07:45:57.0083896Z [4173/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u1.c.obj 2025-07-17T07:45:57.0216681Z [4174/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u2.c.obj 2025-07-17T07:45:57.1136778Z [4175/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-scalar-u4.c.obj 2025-07-17T07:45:57.1383652Z [4176/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u4.c.obj 2025-07-17T07:45:57.1396548Z [4177/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u1.c.obj 2025-07-17T07:45:57.1409153Z [4178/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-scalar-u2.c.obj 2025-07-17T07:45:57.1515961Z [4179/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u1.c.obj 2025-07-17T07:45:57.2532089Z [4180/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u2.c.obj 2025-07-17T07:45:57.2590276Z [4181/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u1.c.obj 2025-07-17T07:45:57.2651808Z [4182/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-scalar-u4.c.obj 2025-07-17T07:45:57.2729247Z [4183/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u4.c.obj 2025-07-17T07:45:57.2918802Z [4184/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-scalar-u8.c.obj 2025-07-17T07:45:57.3680082Z [4185/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u1.c.obj 2025-07-17T07:45:57.3794128Z [4186/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u2.c.obj 2025-07-17T07:45:57.3860167Z [4187/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u1.c.obj 2025-07-17T07:45:57.4027905Z [4188/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-scalar-u4.c.obj 2025-07-17T07:45:57.4150317Z [4189/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u2.c.obj 2025-07-17T07:45:57.4860018Z [4190/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-scalar-u4.c.obj 2025-07-17T07:45:57.5006298Z [4191/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u1.c.obj 2025-07-17T07:45:57.5069414Z [4192/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u2.c.obj 2025-07-17T07:45:57.5142665Z [4193/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-scalar-u4.c.obj 2025-07-17T07:45:57.5306451Z [4194/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u1.c.obj 2025-07-17T07:45:57.6139007Z [4195/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u2.c.obj 2025-07-17T07:45:57.6287847Z [4196/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-scalar-u4.c.obj 2025-07-17T07:45:57.6375665Z [4197/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u1.c.obj 2025-07-17T07:45:57.6393228Z [4198/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u2.c.obj 2025-07-17T07:45:57.6557064Z [4199/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-scalar-u4.c.obj 2025-07-17T07:45:57.7248003Z [4200/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u1.c.obj 2025-07-17T07:45:57.7452337Z [4201/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u4.c.obj 2025-07-17T07:45:57.7715851Z [4202/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-scalar-u2.c.obj 2025-07-17T07:45:57.8478396Z [4203/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u1.c.obj 2025-07-17T07:45:57.8773040Z [4204/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u2.c.obj 2025-07-17T07:45:57.9248441Z [4205/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-scalar-u8.c.obj 2025-07-17T07:45:58.3011197Z [4206/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u1.c.obj 2025-07-17T07:45:58.3024671Z [4207/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u5.c.obj 2025-07-17T07:45:58.3073497Z [4208/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u1.c.obj 2025-07-17T07:45:58.3227228Z [4209/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-scalar-u2.c.obj 2025-07-17T07:45:58.3239667Z [4210/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u3.c.obj 2025-07-17T07:45:58.4232178Z [4211/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-lut16-p3-u6.c.obj 2025-07-17T07:45:58.4251430Z [4212/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u1.c.obj 2025-07-17T07:45:58.4382217Z [4213/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u2.c.obj 2025-07-17T07:45:58.4434932Z [4214/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u3.c.obj 2025-07-17T07:45:58.4501284Z [4215/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u4.c.obj 2025-07-17T07:45:58.5414348Z [4216/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u6.c.obj 2025-07-17T07:45:58.5623565Z [4217/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-scalar.c.obj 2025-07-17T07:45:58.5822529Z [4218/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u2.c.obj 2025-07-17T07:45:58.5838671Z [4219/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-scalar-u1.c.obj 2025-07-17T07:45:58.5902377Z [4220/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-scalar-rr2-p6-u5.c.obj 2025-07-17T07:45:58.6648095Z [4221/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-scalar-log.c.obj 2025-07-17T07:45:58.6824161Z [4222/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u1.c.obj 2025-07-17T07:45:58.7003130Z [4223/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c2-minmax-scalar-2x.c.obj 2025-07-17T07:45:58.7017435Z [4224/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-scalar-u2.c.obj 2025-07-17T07:45:58.7142821Z [4225/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c4-minmax-scalar-2x.c.obj 2025-07-17T07:45:58.8007150Z [4226/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u1.c.obj 2025-07-17T07:45:58.8020973Z [4227/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u2.c.obj 2025-07-17T07:45:58.8259811Z [4228/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-scalar-u4.c.obj 2025-07-17T07:45:58.8291995Z [4229/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-scalar-libm-u2.c.obj 2025-07-17T07:45:58.8712048Z [4230/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-scalar-libm-u2.c.obj 2025-07-17T07:45:58.9609189Z [4231/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-scalar-libm-u2.c.obj 2025-07-17T07:45:58.9629037Z [4232/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-scalar-rsqrt-u2.c.obj 2025-07-17T07:45:58.9688427Z [4233/7682] 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-07-17T07:45:58.9882840Z [4234/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-scalar-libm-u2.c.obj 2025-07-17T07:45:59.0160294Z [4235/7682] 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-07-17T07:45:59.1001859Z [4236/7682] 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-07-17T07:45:59.1068958Z [4237/7682] 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-07-17T07:45:59.1195297Z [4238/7682] 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-07-17T07:45:59.1246975Z [4239/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u1.c.obj 2025-07-17T07:45:59.1525541Z [4240/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u2.c.obj 2025-07-17T07:45:59.2447925Z [4241/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-scalar-rr2-p5-div-u4.c.obj 2025-07-17T07:45:59.2468391Z [4242/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u2.c.obj 2025-07-17T07:45:59.2745964Z [4243/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-scalar-sqrt-u4.c.obj 2025-07-17T07:45:59.3269928Z [4244/7682] 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-07-17T07:45:59.3709238Z [4245/7682] 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-07-17T07:45:59.4650977Z [4246/7682] 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-07-17T07:45:59.4682308Z [4247/7682] 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-07-17T07:45:59.4684999Z [4248/7682] 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-07-17T07:45:59.5201555Z [4249/7682] 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-07-17T07:45:59.5915099Z [4250/7682] 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-07-17T07:45:59.6688300Z [4251/7682] 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-07-17T07:45:59.6707331Z [4252/7682] 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-07-17T07:45:59.6861372Z [4253/7682] 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-07-17T07:45:59.7156277Z [4254/7682] 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-07-17T07:45:59.8146546Z [4255/7682] 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-07-17T07:45:59.8829567Z [4256/7682] 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-07-17T07:45:59.8844672Z [4257/7682] 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-07-17T07:45:59.9003968Z [4258/7682] 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-07-17T07:45:59.9143383Z [4259/7682] 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-07-17T07:45:59.9848877Z [4260/7682] 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-07-17T07:46:00.0870786Z [4261/7682] 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-07-17T07:46:00.1037689Z [4262/7682] 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-07-17T07:46:00.1290743Z [4263/7682] 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-07-17T07:46:00.1314283Z [4264/7682] 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-07-17T07:46:00.1980876Z [4265/7682] 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-07-17T07:46:00.2924642Z [4266/7682] 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-07-17T07:46:00.2989281Z [4267/7682] 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-07-17T07:46:00.3521368Z [4268/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:00.3541482Z [4269/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:00.3650448Z [4270/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:00.4752909Z [4271/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:00.5081324Z [4272/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:00.5146332Z [4273/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:00.5228388Z [4274/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:00.5237277Z [4275/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:00.6791459Z [4276/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:00.7040015Z [4277/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:00.7059766Z [4278/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:00.7072832Z [4279/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:00.7092641Z [4280/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:00.8221111Z [4281/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:00.8471827Z [4282/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:00.8799166Z [4283/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:00.8812446Z [4284/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:00.8882886Z [4285/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:00.9903253Z [4286/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:00.9959358Z [4287/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:01.0017091Z [4288/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:01.0227445Z [4289/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:01.0677903Z [4290/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:01.1427899Z [4291/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:01.1505874Z [4292/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:01.1571695Z [4293/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:01.1584695Z [4294/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:01.1911389Z [4295/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:01.2731052Z [4296/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:01.2786712Z [4297/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:01.2838827Z [4298/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:01.2921479Z [4299/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:01.3251968Z [4300/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:01.4072472Z [4301/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:01.4170672Z [4302/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:01.4182727Z [4303/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:01.4408207Z [4304/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:01.4684438Z [4305/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:01.5248890Z [4306/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:01.5371412Z [4307/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:01.5781981Z [4308/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:01.5830692Z [4309/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u2.c.obj 2025-07-17T07:46:01.5883219Z [4310/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:01.6361681Z [4311/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-scalar-u3.c.obj 2025-07-17T07:46:01.8462393Z [4312/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-gio-scalar.c.obj 2025-07-17T07:46:01.8518688Z [4313/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-scalar.c.obj 2025-07-17T07:46:01.8535351Z [4314/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-gio-scalar.c.obj 2025-07-17T07:46:01.8677438Z [4315/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-17T07:46:01.8747969Z [4316/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c4-gemm-goi-scalar.c.obj 2025-07-17T07:46:01.9974323Z [4317/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c4-gemm-goi-scalar.c.obj 2025-07-17T07:46:02.0031492Z [4318/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-gio-scalar.c.obj 2025-07-17T07:46:02.0095338Z [4319/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-gio-scalar.c.obj 2025-07-17T07:46:02.0155329Z [4320/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x32c4-gemm-goi-scalar.c.obj 2025-07-17T07:46:02.0249175Z [4321/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x64c4-gemm-gio-scalar.c.obj 2025-07-17T07:46:02.1162965Z [4322/7682] 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-07-17T07:46:02.1205948Z [4323/7682] 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-07-17T07:46:02.1563539Z [4324/7682] 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-07-17T07:46:02.1659652Z [4325/7682] 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-07-17T07:46:02.2065595Z [4326/7682] 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-07-17T07:46:02.2328439Z [4327/7682] 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-07-17T07:46:02.2550885Z [4328/7682] 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-07-17T07:46:02.2860299Z [4329/7682] 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-07-17T07:46:02.3074820Z [4330/7682] 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-07-17T07:46:02.3251487Z [4331/7682] 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-07-17T07:46:02.3880321Z [4332/7682] 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-07-17T07:46:02.4127458Z [4333/7682] 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-07-17T07:46:02.4237035Z [4334/7682] 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-07-17T07:46:02.4762446Z [4335/7682] 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-07-17T07:46:02.4852806Z [4336/7682] 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-07-17T07:46:02.5015789Z [4337/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\python_comm_hook.cpp.obj 2025-07-17T07:46:02.5186528Z [4338/7682] 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-07-17T07:46:02.5381599Z [4339/7682] 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-07-17T07:46:02.5486275Z [4340/7682] 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-07-17T07:46:02.6136247Z [4341/7682] 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-07-17T07:46:02.6363531Z [4342/7682] 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-07-17T07:46:02.6523164Z [4343/7682] 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-07-17T07:46:02.6577570Z [4344/7682] 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-07-17T07:46:02.6906810Z [4345/7682] 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-07-17T07:46:02.6961966Z [4346/7682] 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-07-17T07:46:02.7441682Z [4347/7682] 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-07-17T07:46:02.7528653Z [4348/7682] 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-07-17T07:46:02.7792068Z [4349/7682] 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-07-17T07:46:02.7807197Z [4350/7682] 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-07-17T07:46:02.8537668Z [4351/7682] 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-07-17T07:46:02.8558433Z [4352/7682] 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-07-17T07:46:02.8856209Z [4353/7682] 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-07-17T07:46:02.9504177Z [4354/7682] 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-07-17T07:46:02.9559607Z [4355/7682] 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-07-17T07:46:02.9571473Z [4356/7682] 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-07-17T07:46:02.9636428Z [4357/7682] 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-07-17T07:46:02.9695539Z [4358/7682] 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-07-17T07:46:03.0427517Z [4359/7682] 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-07-17T07:46:03.1033973Z [4360/7682] 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-07-17T07:46:03.1136304Z [4361/7682] 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-07-17T07:46:03.1193604Z [4362/7682] 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-07-17T07:46:03.1484497Z [4363/7682] 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-07-17T07:46:03.2318609Z [4364/7682] 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-07-17T07:46:03.2332305Z [4365/7682] 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-07-17T07:46:03.3154639Z [4366/7682] 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-07-17T07:46:03.3314379Z [4367/7682] 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-07-17T07:46:03.3361331Z [4368/7682] 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-07-17T07:46:03.3825584Z [4369/7682] 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-07-17T07:46:03.4301683Z [4370/7682] 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-07-17T07:46:03.4454663Z [4371/7682] 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-07-17T07:46:03.4634192Z [4372/7682] 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-07-17T07:46:03.4647797Z [4373/7682] 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-07-17T07:46:03.4710727Z [4374/7682] 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-07-17T07:46:03.5479632Z [4375/7682] 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-07-17T07:46:03.5859365Z [4376/7682] 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-07-17T07:46:03.6235270Z [4377/7682] 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-07-17T07:46:03.6286206Z [4378/7682] 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-07-17T07:46:03.6339870Z [4379/7682] 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-07-17T07:46:03.6619894Z [4380/7682] 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-07-17T07:46:03.6815242Z [4381/7682] 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-07-17T07:46:03.7254029Z [4382/7682] 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-07-17T07:46:03.7677345Z [4383/7682] 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-07-17T07:46:03.7693193Z [4384/7682] 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-07-17T07:46:03.7764674Z [4385/7682] 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-07-17T07:46:03.8569345Z [4386/7682] 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-07-17T07:46:03.8582603Z [4387/7682] 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-07-17T07:46:03.8637170Z [4388/7682] 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-07-17T07:46:03.8975114Z [4389/7682] 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-07-17T07:46:03.9531600Z [4390/7682] 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-07-17T07:46:03.9592442Z [4391/7682] 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-07-17T07:46:04.0056879Z [4392/7682] 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-07-17T07:46:04.0119616Z [4393/7682] 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-07-17T07:46:04.0384519Z [4394/7682] 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-07-17T07:46:04.0627529Z [4395/7682] 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-07-17T07:46:04.0913784Z [4396/7682] 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-07-17T07:46:04.0977045Z [4397/7682] 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-07-17T07:46:04.1427167Z [4398/7682] 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-07-17T07:46:04.1595050Z [4399/7682] 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-07-17T07:46:04.2281062Z [4400/7682] 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-07-17T07:46:04.2294066Z [4401/7682] 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-07-17T07:46:04.2358550Z [4402/7682] 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-07-17T07:46:04.2416855Z [4403/7682] 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-07-17T07:46:04.2823374Z [4404/7682] 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-07-17T07:46:04.2951106Z [4405/7682] 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-07-17T07:46:04.4125018Z [4406/7682] 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-07-17T07:46:04.4148433Z [4407/7682] 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-07-17T07:46:04.4435523Z [4408/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u1.c.obj 2025-07-17T07:46:04.4518386Z [4409/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-scalar-u2.c.obj 2025-07-17T07:46:04.4599471Z [4410/7682] 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-07-17T07:46:04.4654534Z [4411/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-scalar-u2.c.obj 2025-07-17T07:46:04.5189606Z [4412/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-scalar-u2.c.obj 2025-07-17T07:46:04.5371806Z [4413/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-scalar-u2.c.obj 2025-07-17T07:46:04.5692444Z [4414/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u1.c.obj 2025-07-17T07:46:04.5876798Z [4415/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u2.c.obj 2025-07-17T07:46:04.5890668Z [4416/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-select-u1.c.obj 2025-07-17T07:46:04.5948911Z [4417/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-scalar-andxor-u2.c.obj 2025-07-17T07:46:04.6373083Z [4418/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u1.c.obj 2025-07-17T07:46:04.6543874Z [4419/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmul\gen\qs8-vmul-minmax-fp32-scalar-u2.c.obj 2025-07-17T07:46:04.7206212Z [4420/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-07-17T07:46:04.7398673Z [4421/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vmulc\gen\qs8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-07-17T07:46:04.7609527Z [4422/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:04.7674428Z [4423/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:04.7766932Z [4424/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:04.8184535Z [4425/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:04.8541125Z [4426/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:04.8655465Z [4427/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:04.9372957Z [4428/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:04.9419410Z [4429/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:04.9476484Z [4430/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.0291352Z [4431/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.0306906Z [4432/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.0358490Z [4433/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.0626153Z [4434/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.0679890Z [4435/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.0692720Z [4436/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.1878284Z [4437/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.1892889Z [4438/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.2063757Z [4439/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.2400282Z [4440/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.2489513Z [4441/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.2546631Z [4442/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.3146936Z [4443/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.3160892Z [4444/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.3475781Z [4445/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.4754711Z [4446/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.4768093Z [4447/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.4779510Z [4448/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.4838252Z [4449/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.5443271Z [4450/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.5683457Z [4451/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p1c-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:05.6003662Z [4452/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:05.6071941Z [4453/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.6144697Z [4454/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.6409217Z [4455/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.7141304Z [4456/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.7154409Z [4457/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p4c-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:05.7592229Z [4458/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.7716777Z [4459/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:05.8588424Z [4460/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.8697564Z [4461/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u2.c.obj 2025-07-17T07:46:05.8710006Z [4462/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:05.8766270Z [4463/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:05.8834300Z [4464/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-scalar-u3.c.obj 2025-07-17T07:46:05.8847717Z [4465/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.0534229Z [4466/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.0610953Z [4467/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.0630377Z [4468/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.0721875Z [4469/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.0768557Z [4470/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.0869580Z [4471/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:06.1951818Z [4472/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.2042390Z [4473/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.2054511Z [4474/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.2159939Z [4475/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:06.2171345Z [4476/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.2695647Z [4477/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.3277703Z [4478/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.3799324Z [4479/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.3857463Z [4480/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:06.3868471Z [4481/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.3879929Z [4482/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.4029846Z [4483/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.4570221Z [4484/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:06.5029036Z [4485/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.6032094Z [4486/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.6217793Z [4487/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.6243653Z [4488/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.6254934Z [4489/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:06.6303681Z [4490/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.6414948Z [4491/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:06.7421801Z [4492/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.7728843Z [4493/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.7842269Z [4494/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.7856411Z [4495/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.7911784Z [4496/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.7925895Z [4497/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.8792459Z [4498/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:06.9169997Z [4499/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.9519865Z [4500/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:06.9621395Z [4501/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:06.9632555Z [4502/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:06.9734272Z [4503/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:07.0159695Z [4504/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:07.0518470Z [4505/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:07.0765603Z [4506/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:07.1425533Z [4507/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:07.1766061Z [4508/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:07.1820486Z [4509/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:07.1834809Z [4510/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:07.1847809Z [4511/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:07.2041828Z [4512/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:07.2680293Z [4513/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:07.3573602Z [4514/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:07.3639651Z [4515/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.obj 2025-07-17T07:46:07.3701453Z [4516/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:07.3768874Z [4517/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:07.4125878Z [4518/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.obj 2025-07-17T07:46:07.4436372Z [4519/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:07.4886215Z [4520/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.obj 2025-07-17T07:46:07.4900027Z [4521/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4-minmax-rndnu-scalar.c.obj 2025-07-17T07:46:07.5133517Z [4522/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u2.c.obj 2025-07-17T07:46:07.5227358Z [4523/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-scalar-u1.c.obj 2025-07-17T07:46:07.5288065Z [4524/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-scalar-u2.c.obj 2025-07-17T07:46:07.5517732Z [4525/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-scalar-u2.c.obj 2025-07-17T07:46:07.6088748Z [4526/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u1.c.obj 2025-07-17T07:46:07.6111306Z [4527/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-scalar-u2.c.obj 2025-07-17T07:46:07.6472403Z [4528/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u1.c.obj 2025-07-17T07:46:07.6591755Z [4529/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-select-u2.c.obj 2025-07-17T07:46:07.6660627Z [4530/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u1.c.obj 2025-07-17T07:46:07.6717426Z [4531/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-scalar-andxor-u2.c.obj 2025-07-17T07:46:07.7276957Z [4532/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u1.c.obj 2025-07-17T07:46:07.7554727Z [4533/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmul\gen\qu8-vmul-minmax-fp32-scalar-u2.c.obj 2025-07-17T07:46:07.7645547Z [4534/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c4.c.obj 2025-07-17T07:46:07.7657332Z [4535/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-scalar-c2.c.obj 2025-07-17T07:46:07.7671420Z [4536/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vmulc\gen\qu8-vmulc-minmax-fp32-scalar-u2.c.obj 2025-07-17T07:46:07.7952763Z [4537/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c2.c.obj 2025-07-17T07:46:07.8241633Z [4538/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-scalar-c4.c.obj 2025-07-17T07:46:07.8555305Z [4539/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u1.c.obj 2025-07-17T07:46:07.8601123Z [4540/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u16.c.obj 2025-07-17T07:46:07.8620667Z [4541/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u8.c.obj 2025-07-17T07:46:07.8639843Z [4542/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-scalar-u2.c.obj 2025-07-17T07:46:07.8993896Z [4543/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u2.c.obj 2025-07-17T07:46:07.9326290Z [4544/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x2-gemm-goi-scalar-u4.c.obj 2025-07-17T07:46:07.9701348Z [4545/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8-gemm-goi-scalar-u4.c.obj 2025-07-17T07:46:07.9838092Z [4546/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-gio-scalar.c.obj 2025-07-17T07:46:07.9849950Z [4547/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16-gemm-goi-scalar-u4.c.obj 2025-07-17T07:46:08.0022797Z [4548/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x32-gemm-goi-scalar-u4.c.obj 2025-07-17T07:46:08.0073875Z [4549/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x4-gemm-goi-scalar-u4.c.obj 2025-07-17T07:46:08.1073019Z [4550/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x2-scalar-int.c.obj 2025-07-17T07:46:08.1089907Z [4551/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x1-scalar-int.c.obj 2025-07-17T07:46:08.1144362Z [4552/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x1-scalar-int.c.obj 2025-07-17T07:46:08.1154982Z [4553/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-1x4-scalar-int.c.obj 2025-07-17T07:46:08.1166294Z [4554/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x2-scalar-int.c.obj 2025-07-17T07:46:08.1249980Z [4555/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-2x2-scalar-int.c.obj 2025-07-17T07:46:08.2154342Z [4556/7682] 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-07-17T07:46:08.2243063Z [4557/7682] 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-07-17T07:46:08.2295355Z [4558/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x2-scalar-int.c.obj 2025-07-17T07:46:08.2326735Z [4559/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-1x4-scalar-int.c.obj 2025-07-17T07:46:08.2395395Z [4560/7682] 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-07-17T07:46:08.2696287Z [4561/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-4x4-scalar-int.c.obj 2025-07-17T07:46:08.3195516Z [4562/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x1-scalar-int.c.obj 2025-07-17T07:46:08.3247970Z [4563/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x1-scalar-int.c.obj 2025-07-17T07:46:08.3321960Z [4564/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-2x2-scalar-int.c.obj 2025-07-17T07:46:08.3371578Z [4565/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x2-scalar-int.c.obj 2025-07-17T07:46:08.3675337Z [4566/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-4x4-scalar-int.c.obj 2025-07-17T07:46:08.3791935Z [4567/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-1x4-scalar.c.obj 2025-07-17T07:46:08.4343663Z [4568/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x1-scalar.c.obj 2025-07-17T07:46:08.4393993Z [4569/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x4-scalar.c.obj 2025-07-17T07:46:08.4492727Z [4570/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x1-scalar.c.obj 2025-07-17T07:46:08.4538490Z [4571/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-2x2-scalar.c.obj 2025-07-17T07:46:08.4743382Z [4572/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x2-scalar.c.obj 2025-07-17T07:46:08.4801460Z [4573/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x24-transposec\gen\x24-transposec-4x4-scalar.c.obj 2025-07-17T07:46:08.5459892Z [4574/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:08.5471805Z [4575/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c1s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:08.5634492Z [4576/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:08.5686632Z [4577/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-2c2s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:08.5780030Z [4578/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:08.5888882Z [4579/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c1s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:08.6516399Z [4580/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:08.6531357Z [4581/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packb\gen\x32-packb-4c4s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:08.7024560Z [4582/7682] 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-07-17T07:46:08.7487170Z [4583/7682] 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-07-17T07:46:08.7532905Z [4584/7682] 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-07-17T07:46:08.7674193Z [4585/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-scalar.c.obj 2025-07-17T07:46:08.7742288Z [4586/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x4-gemm-gio-scalar.c.obj 2025-07-17T07:46:08.7858595Z [4587/7682] 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-07-17T07:46:08.8075063Z [4588/7682] 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-07-17T07:46:08.8637252Z [4589/7682] 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-07-17T07:46:08.8728020Z [4590/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-2x-scalar.c.obj 2025-07-17T07:46:08.9047326Z [4591/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-scalar.c.obj 2025-07-17T07:46:08.9098348Z [4592/7682] 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-07-17T07:46:08.9109351Z [4593/7682] 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-07-17T07:46:08.9155454Z [4594/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-scalar.c.obj 2025-07-17T07:46:08.9311916Z [4595/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-3x-scalar.c.obj 2025-07-17T07:46:08.9383411Z [4596/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-scalar.c.obj 2025-07-17T07:46:09.0113074Z [4597/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-float.c.obj 2025-07-17T07:46:09.0158885Z [4598/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x4-scalar-int.c.obj 2025-07-17T07:46:09.0201876Z [4599/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-int.c.obj 2025-07-17T07:46:09.0353585Z [4600/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-float.c.obj 2025-07-17T07:46:09.0366061Z [4601/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x1-scalar-int.c.obj 2025-07-17T07:46:09.0414002Z [4602/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-1x2-scalar-float.c.obj 2025-07-17T07:46:09.1189508Z [4603/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-float.c.obj 2025-07-17T07:46:09.1269900Z [4604/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x2-scalar-int.c.obj 2025-07-17T07:46:09.1281176Z [4605/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-2x4-scalar-float.c.obj 2025-07-17T07:46:09.1434951Z [4606/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-int.c.obj 2025-07-17T07:46:09.1497552Z [4607/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x1-scalar-float.c.obj 2025-07-17T07:46:09.1554450Z [4608/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-float.c.obj 2025-07-17T07:46:09.2227958Z [4609/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x2-scalar-int.c.obj 2025-07-17T07:46:09.2301107Z [4610/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-int.c.obj 2025-07-17T07:46:09.2345686Z [4611/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-scalar-float.c.obj 2025-07-17T07:46:09.2536643Z [4612/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:09.2548406Z [4613/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c1s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:09.2664964Z [4614/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:09.3451592Z [4615/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:09.3463823Z [4616/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c1s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:09.3532990Z [4617/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-2c2s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:09.3543831Z [4618/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-float.c.obj 2025-07-17T07:46:09.3608727Z [4619/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-zerob\gen\x32-zerob-4c4s1r-gemm-scalar-int.c.obj 2025-07-17T07:46:09.3668711Z [4620/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-float.c.obj 2025-07-17T07:46:09.4506345Z [4621/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-float.c.obj 2025-07-17T07:46:09.4571330Z [4622/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x1-scalar-int.c.obj 2025-07-17T07:46:09.4646708Z [4623/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-float.c.obj 2025-07-17T07:46:09.4661652Z [4624/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-scalar-int.c.obj 2025-07-17T07:46:09.4801748Z [4625/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-float.c.obj 2025-07-17T07:46:09.5092723Z [4626/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-1x2-scalar-int.c.obj 2025-07-17T07:46:09.5498915Z [4627/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x1-scalar-int.c.obj 2025-07-17T07:46:09.5561594Z [4628/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x2-scalar-float.c.obj 2025-07-17T07:46:09.5728128Z [4629/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-conv-hwc2chw\f32-conv-hwc2chw-3x3s2p1c3x4-sse-1x1.c.obj 2025-07-17T07:46:09.6015425Z [4630/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.6078544Z [4631/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p4c-minmax-sse.c.obj 2025-07-17T07:46:09.6225912Z [4632/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.6757235Z [4633/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.6815197Z [4634/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p4c-minmax-sse.c.obj 2025-07-17T07:46:09.6972132Z [4635/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.7280282Z [4636/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.7347003Z [4637/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l4c4s4r-minmax-sse.c.obj 2025-07-17T07:46:09.7787516Z [4638/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.7971019Z [4639/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.8095037Z [4640/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c4s4r-minmax-sse.c.obj 2025-07-17T07:46:09.8434501Z [4641/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c4s4r-minmax-sse.c.obj 2025-07-17T07:46:09.8484988Z [4642/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.9051126Z [4643/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.9235985Z [4644/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c4s4r-minmax-sse.c.obj 2025-07-17T07:46:09.9457134Z [4645/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l4c4s4r-minmax-sse.c.obj 2025-07-17T07:46:09.9506196Z [4646/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.9617433Z [4647/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:09.9776269Z [4648/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c4s4r-minmax-sse.c.obj 2025-07-17T07:46:10.0262097Z [4649/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l4c4s4r-minmax-sse.c.obj 2025-07-17T07:46:10.0599015Z [4650/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:10.0877934Z [4651/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse-acc2.c.obj 2025-07-17T07:46:10.0929367Z [4652/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c4s4r-minmax-sse.c.obj 2025-07-17T07:46:10.0942073Z [4653/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p4c-minmax-sse.c.obj 2025-07-17T07:46:10.1243049Z [4654/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c4s4r-minmax-sse-acc2.c.obj 2025-07-17T07:46:10.1904349Z [4655/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-sse-acc2.c.obj 2025-07-17T07:46:10.2204611Z [4656/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse-acc2.c.obj 2025-07-17T07:46:10.2434702Z [4657/7682] 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-07-17T07:46:10.2448438Z [4658/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-sse-acc2.c.obj 2025-07-17T07:46:10.2512381Z [4659/7682] 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-07-17T07:46:10.3115165Z [4660/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p4c-minmax-sse.c.obj 2025-07-17T07:46:10.3257627Z [4661/7682] 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-07-17T07:46:10.3369071Z [4662/7682] 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-07-17T07:46:10.3673022Z [4663/7682] 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-07-17T07:46:10.3771229Z [4664/7682] 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-07-17T07:46:10.3938120Z [4665/7682] 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-07-17T07:46:10.4459291Z [4666/7682] 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-07-17T07:46:10.4760590Z [4667/7682] 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-07-17T07:46:10.4908538Z [4668/7682] 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-07-17T07:46:10.4967703Z [4669/7682] 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-07-17T07:46:10.5069459Z [4670/7682] 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-07-17T07:46:10.5311661Z [4671/7682] 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-07-17T07:46:10.5597752Z [4672/7682] 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-07-17T07:46:10.6085887Z [4673/7682] 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-07-17T07:46:10.6492210Z [4674/7682] 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-07-17T07:46:10.6510407Z [4675/7682] 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-07-17T07:46:10.6520989Z [4676/7682] 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-07-17T07:46:10.6574678Z [4677/7682] 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-07-17T07:46:10.6775430Z [4678/7682] 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-07-17T07:46:10.7787331Z [4679/7682] 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-07-17T07:46:10.7842821Z [4680/7682] 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-07-17T07:46:10.7854961Z [4681/7682] 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-07-17T07:46:10.7911309Z [4682/7682] 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-07-17T07:46:10.7926246Z [4683/7682] 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-07-17T07:46:10.8180822Z [4684/7682] 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-07-17T07:46:10.9142793Z [4685/7682] 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-07-17T07:46:10.9216496Z [4686/7682] 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-07-17T07:46:10.9267509Z [4687/7682] 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-07-17T07:46:10.9322309Z [4688/7682] 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-07-17T07:46:10.9334317Z [4689/7682] 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-07-17T07:46:10.9780959Z [4690/7682] 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-07-17T07:46:11.0625635Z [4691/7682] 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-07-17T07:46:11.0677185Z [4692/7682] 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-07-17T07:46:11.0892134Z [4693/7682] 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-07-17T07:46:11.0948998Z [4694/7682] 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-07-17T07:46:11.1228052Z [4695/7682] 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-07-17T07:46:11.1525245Z [4696/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.2377310Z [4697/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.2389333Z [4698/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.2401572Z [4699/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.2412978Z [4700/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.3141993Z [4701/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.3563650Z [4702/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.3752420Z [4703/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.3837632Z [4704/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.4230482Z [4705/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.4511751Z [4706/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x2c4-minmax-sse.c.obj 2025-07-17T07:46:11.4894430Z [4707/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.4906529Z [4708/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.5274540Z [4709/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.5452178Z [4710/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.6045598Z [4711/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.6143996Z [4712/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.6250357Z [4713/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.6305263Z [4714/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.6748426Z [4715/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.6805562Z [4716/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.7388923Z [4717/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.7517756Z [4718/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.7708528Z [4719/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.7955646Z [4720/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.8548271Z [4721/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8s4-minmax-sse.c.obj 2025-07-17T07:46:11.8615004Z [4722/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-load1.c.obj 2025-07-17T07:46:11.8702815Z [4723/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear-chw\gen\f32-ibilinear-chw-sse-p4.c.obj 2025-07-17T07:46:11.8756013Z [4724/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-sse-dup.c.obj 2025-07-17T07:46:11.8939091Z [4725/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ibilinear\gen\f32-ibilinear-sse-c4.c.obj 2025-07-17T07:46:11.8950920Z [4726/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8s4-minmax-sse.c.obj 2025-07-17T07:46:12.0103277Z [4727/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-load1.c.obj 2025-07-17T07:46:12.0115056Z [4728/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8s4-minmax-sse.c.obj 2025-07-17T07:46:12.0200741Z [4729/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-sse-dup.c.obj 2025-07-17T07:46:12.0258532Z [4730/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8s4-minmax-sse.c.obj 2025-07-17T07:46:12.0331202Z [4731/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x8-minmax-sse-dup.c.obj 2025-07-17T07:46:12.0657508Z [4732/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-sse-dup.c.obj 2025-07-17T07:46:12.1656257Z [4733/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-dup.c.obj 2025-07-17T07:46:12.1668435Z [4734/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-sse-load1.c.obj 2025-07-17T07:46:12.1785176Z [4735/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8s4-minmax-sse.c.obj 2025-07-17T07:46:12.2202531Z [4736/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x2c4-minmax-sse.c.obj 2025-07-17T07:46:12.2408564Z [4737/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8s4-minmax-sse.c.obj 2025-07-17T07:46:12.2623524Z [4738/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-dup.c.obj 2025-07-17T07:46:12.3135580Z [4739/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-sse-load1.c.obj 2025-07-17T07:46:12.3147276Z [4740/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-ppmm\gen\f32-ppmm-4x8-minmax-sse.c.obj 2025-07-17T07:46:12.3331280Z [4741/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8s4-minmax-sse.c.obj 2025-07-17T07:46:12.3433307Z [4742/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c32.c.obj 2025-07-17T07:46:12.3484517Z [4743/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-sse-c64.c.obj 2025-07-17T07:46:12.3691295Z [4744/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u4.c.obj 2025-07-17T07:46:12.4196408Z [4745/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u8-acc2.c.obj 2025-07-17T07:46:12.4265334Z [4746/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u12-acc3.c.obj 2025-07-17T07:46:12.4536270Z [4747/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u8-acc2.c.obj 2025-07-17T07:46:12.4547786Z [4748/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-sse-u16-acc2.c.obj 2025-07-17T07:46:12.4647823Z [4749/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u4.c.obj 2025-07-17T07:46:12.4733931Z [4750/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u12-acc3.c.obj 2025-07-17T07:46:12.5371916Z [4751/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc2.c.obj 2025-07-17T07:46:12.5669697Z [4752/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u8-acc2.c.obj 2025-07-17T07:46:12.5714281Z [4753/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u12-acc3.c.obj 2025-07-17T07:46:12.5725172Z [4754/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u4.c.obj 2025-07-17T07:46:12.5790186Z [4755/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-sse-u16-acc4.c.obj 2025-07-17T07:46:12.6183157Z [4756/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-sse-u16-acc2.c.obj 2025-07-17T07:46:12.6425867Z [4757/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u4.c.obj 2025-07-17T07:46:12.6727385Z [4758/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u8-acc2.c.obj 2025-07-17T07:46:12.6839245Z [4759/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u16-acc2.c.obj 2025-07-17T07:46:12.6884584Z [4760/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-sse-u12-acc3.c.obj 2025-07-17T07:46:12.6938033Z [4761/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-4x1-minmax-sse.c.obj 2025-07-17T07:46:12.7155009Z [4762/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-8x1-minmax-sse.c.obj 2025-07-17T07:46:12.7516412Z [4763/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-spmm\gen\f32-spmm-16x1-minmax-sse.c.obj 2025-07-17T07:46:12.8190196Z [4764/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-sse-u4.c.obj 2025-07-17T07:46:12.8253932Z [4765/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-sse-u4.c.obj 2025-07-17T07:46:12.8316967Z [4766/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-sse-u4.c.obj 2025-07-17T07:46:12.8369695Z [4767/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-sse-u4.c.obj 2025-07-17T07:46:12.8489468Z [4768/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-sse-u4.c.obj 2025-07-17T07:46:12.8659012Z [4769/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-sse-u4.c.obj 2025-07-17T07:46:12.9422682Z [4770/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-sse-u4.c.obj 2025-07-17T07:46:12.9490571Z [4771/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-sse-u4.c.obj 2025-07-17T07:46:12.9580129Z [4772/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-sse-u4.c.obj 2025-07-17T07:46:12.9592584Z [4773/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-sse-u4.c.obj 2025-07-17T07:46:12.9896646Z [4774/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-sse-u4.c.obj 2025-07-17T07:46:13.0004975Z [4775/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-sse-u4.c.obj 2025-07-17T07:46:13.0683941Z [4776/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-sse-u4.c.obj 2025-07-17T07:46:13.0790722Z [4777/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-sse-u4.c.obj 2025-07-17T07:46:13.0895255Z [4778/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-sse-u4.c.obj 2025-07-17T07:46:13.0951456Z [4779/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-sse-u4.c.obj 2025-07-17T07:46:13.1121192Z [4780/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-sse-u4.c.obj 2025-07-17T07:46:13.1528783Z [4781/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u4.c.obj 2025-07-17T07:46:13.1941215Z [4782/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u12.c.obj 2025-07-17T07:46:13.1954356Z [4783/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-sse-u16.c.obj 2025-07-17T07:46:13.2264902Z [4784/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse-u4.c.obj 2025-07-17T07:46:13.2335032Z [4785/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-sse-u4.c.obj 2025-07-17T07:46:13.2417333Z [4786/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vmulcaddc\gen\f32-vmulcaddc-c8-minmax-sse-2x.c.obj 2025-07-17T07:46:13.2637364Z [4787/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u4.c.obj 2025-07-17T07:46:13.3252478Z [4788/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u4.c.obj 2025-07-17T07:46:13.3505712Z [4789/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-sse-u8.c.obj 2025-07-17T07:46:13.3630222Z [4790/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u4.c.obj 2025-07-17T07:46:13.3780774Z [4791/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u4.c.obj 2025-07-17T07:46:13.3954633Z [4792/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-rsqrt-u8.c.obj 2025-07-17T07:46:13.4092484Z [4793/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-sse-rsqrt-u16.c.obj 2025-07-17T07:46:13.4457757Z [4794/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packx\x32-packx-4x-sse.c.obj 2025-07-17T07:46:13.4665428Z [4795/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u8.c.obj 2025-07-17T07:46:13.4802398Z [4796/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-sse-sqrt-u16.c.obj 2025-07-17T07:46:13.4950093Z [4797/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u8.c.obj 2025-07-17T07:46:13.5018740Z [4798/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u16.c.obj 2025-07-17T07:46:13.5144690Z [4799/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int16-u24.c.obj 2025-07-17T07:46:13.6034139Z [4800/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u24.c.obj 2025-07-17T07:46:13.6192603Z [4801/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u16.c.obj 2025-07-17T07:46:13.6242880Z [4802/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u32.c.obj 2025-07-17T07:46:13.6282775Z [4803/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse2-int32-u8.c.obj 2025-07-17T07:46:13.6341562Z [4804/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vabs-sse2-u8.c.obj 2025-07-17T07:46:13.6422964Z [4805/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vneg-sse2-u8.c.obj 2025-07-17T07:46:13.7402499Z [4806/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u8.c.obj 2025-07-17T07:46:13.7414595Z [4807/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u32.c.obj 2025-07-17T07:46:13.7462030Z [4808/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u8.c.obj 2025-07-17T07:46:13.7563974Z [4809/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u16.c.obj 2025-07-17T07:46:13.7805997Z [4810/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse2-u24.c.obj 2025-07-17T07:46:13.7821969Z [4811/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse2-u24.c.obj 2025-07-17T07:46:13.8481515Z [4812/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u8.c.obj 2025-07-17T07:46:13.8568563Z [4813/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u24.c.obj 2025-07-17T07:46:13.8731891Z [4814/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-sse2-u16.c.obj 2025-07-17T07:46:13.8884475Z [4815/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u8-acc2.c.obj 2025-07-17T07:46:13.9007589Z [4816/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u16-acc4.c.obj 2025-07-17T07:46:13.9078326Z [4817/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-sse2-rr2-p5-u4.c.obj 2025-07-17T07:46:13.9800568Z [4818/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse2-u4.c.obj 2025-07-17T07:46:14.0050230Z [4819/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse2-u4.c.obj 2025-07-17T07:46:14.0215553Z [4820/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u4.c.obj 2025-07-17T07:46:14.0293259Z [4821/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse2-u4.c.obj 2025-07-17T07:46:14.0363809Z [4822/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u8.c.obj 2025-07-17T07:46:14.0376975Z [4823/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-lut16-p3-u16.c.obj 2025-07-17T07:46:14.1207162Z [4824/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u8.c.obj 2025-07-17T07:46:14.1267108Z [4825/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u4.c.obj 2025-07-17T07:46:14.1845051Z [4826/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u4.c.obj 2025-07-17T07:46:14.1859692Z [4827/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse2-u8.c.obj 2025-07-17T07:46:14.1914729Z [4828/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u16.c.obj 2025-07-17T07:46:14.1927359Z [4829/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse2-rr2-p6-u12.c.obj 2025-07-17T07:46:14.2541529Z [4830/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse2-u4.c.obj 2025-07-17T07:46:14.3169435Z [4831/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse2-u4.c.obj 2025-07-17T07:46:14.3233798Z [4832/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse2-u4.c.obj 2025-07-17T07:46:14.3246713Z [4833/7682] 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-07-17T07:46:14.3258449Z [4834/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse2-u4.c.obj 2025-07-17T07:46:14.3471160Z [4835/7682] 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-07-17T07:46:14.3949655Z [4836/7682] 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-07-17T07:46:14.4465953Z [4837/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u12.c.obj 2025-07-17T07:46:14.4604475Z [4838/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u16.c.obj 2025-07-17T07:46:14.4790196Z [4839/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u8.c.obj 2025-07-17T07:46:14.4806894Z [4840/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse2-rr2-p5-div-u4.c.obj 2025-07-17T07:46:14.5355778Z [4841/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-sse2-rational-9-8-nr.c.obj 2025-07-17T07:46:14.5534616Z [4842/7682] 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-07-17T07:46:14.6107585Z [4843/7682] 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-07-17T07:46:14.6119790Z [4844/7682] 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-07-17T07:46:14.6166354Z [4845/7682] 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-07-17T07:46:14.6340127Z [4846/7682] 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-07-17T07:46:14.7130019Z [4847/7682] 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-07-17T07:46:14.7465286Z [4848/7682] 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-07-17T07:46:14.7561553Z [4849/7682] 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-07-17T07:46:14.7739581Z [4850/7682] 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-07-17T07:46:14.7878710Z [4851/7682] 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-07-17T07:46:14.8108089Z [4852/7682] 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-07-17T07:46:14.9002642Z [4853/7682] 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-07-17T07:46:14.9054252Z [4854/7682] 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-07-17T07:46:14.9176007Z [4855/7682] 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-07-17T07:46:14.9366834Z [4856/7682] 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-07-17T07:46:14.9836429Z [4857/7682] 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-07-17T07:46:14.9890742Z [4858/7682] 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-07-17T07:46:15.0746808Z [4859/7682] 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-07-17T07:46:15.0872506Z [4860/7682] 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-07-17T07:46:15.1067135Z [4861/7682] 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-07-17T07:46:15.1126001Z [4862/7682] 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-07-17T07:46:15.1536725Z [4863/7682] 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-07-17T07:46:15.2119060Z [4864/7682] 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-07-17T07:46:15.2490432Z [4865/7682] 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-07-17T07:46:15.2606661Z [4866/7682] 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-07-17T07:46:15.2670377Z [4867/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.2846412Z [4868/7682] 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-07-17T07:46:15.3124786Z [4869/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.3694974Z [4870/7682] 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-07-17T07:46:15.3877755Z [4871/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.4336328Z [4872/7682] 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-07-17T07:46:15.4537275Z [4873/7682] 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-07-17T07:46:15.4828481Z [4874/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.5292995Z [4875/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.5494428Z [4876/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.5552438Z [4877/7682] 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-07-17T07:46:15.5972563Z [4878/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.6126136Z [4879/7682] 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-07-17T07:46:15.6433334Z [4880/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.7051437Z [4881/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.7415609Z [4882/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u16.c.obj 2025-07-17T07:46:15.7465625Z [4883/7682] 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-07-17T07:46:15.7477790Z [4884/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:15.7561593Z [4885/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u8.c.obj 2025-07-17T07:46:15.7631979Z [4886/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse2-u24.c.obj 2025-07-17T07:46:15.8325906Z [4887/7682] 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-07-17T07:46:15.8893436Z [4888/7682] 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-07-17T07:46:15.9037804Z [4889/7682] 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-07-17T07:46:15.9092819Z [4890/7682] 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-07-17T07:46:15.9426191Z [4891/7682] 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-07-17T07:46:15.9708805Z [4892/7682] 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-07-17T07:46:16.0300370Z [4893/7682] 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-07-17T07:46:16.0511182Z [4894/7682] 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-07-17T07:46:16.0563073Z [4895/7682] 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-07-17T07:46:16.0663436Z [4896/7682] 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-07-17T07:46:16.1247376Z [4897/7682] 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-07-17T07:46:16.1302345Z [4898/7682] 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-07-17T07:46:16.1649599Z [4899/7682] 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-07-17T07:46:16.1832242Z [4900/7682] 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-07-17T07:46:16.1884683Z [4901/7682] 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-07-17T07:46:16.1896129Z [4902/7682] 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-07-17T07:46:16.3005723Z [4903/7682] 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-07-17T07:46:16.3059559Z [4904/7682] 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-07-17T07:46:16.3203513Z [4905/7682] 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-07-17T07:46:16.3253779Z [4906/7682] 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-07-17T07:46:16.3370745Z [4907/7682] 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-07-17T07:46:16.4399693Z [4908/7682] 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-07-17T07:46:16.4454212Z [4909/7682] 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-07-17T07:46:16.4465344Z [4910/7682] 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-07-17T07:46:16.4513653Z [4911/7682] 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-07-17T07:46:16.4571265Z [4912/7682] 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-07-17T07:46:16.4585841Z [4913/7682] 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-07-17T07:46:16.6134173Z [4914/7682] 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-07-17T07:46:16.6231736Z [4915/7682] 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-07-17T07:46:16.6249925Z [4916/7682] 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-07-17T07:46:16.6262159Z [4917/7682] 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-07-17T07:46:16.6315320Z [4918/7682] 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-07-17T07:46:16.6330053Z [4919/7682] 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-07-17T07:46:16.7604635Z [4920/7682] 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-07-17T07:46:16.7662447Z [4921/7682] 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-07-17T07:46:16.7674761Z [4922/7682] 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-07-17T07:46:16.7727083Z [4923/7682] 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-07-17T07:46:16.7741206Z [4924/7682] 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-07-17T07:46:16.7755167Z [4925/7682] 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-07-17T07:46:16.8928565Z [4926/7682] 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-07-17T07:46:16.8991576Z [4927/7682] 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-07-17T07:46:16.9102416Z [4928/7682] 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-07-17T07:46:16.9167299Z [4929/7682] 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-07-17T07:46:16.9587908Z [4930/7682] 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-07-17T07:46:16.9641426Z [4931/7682] 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-07-17T07:46:17.0766610Z [4932/7682] 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-07-17T07:46:17.0881861Z [4933/7682] 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-07-17T07:46:17.1021602Z [4934/7682] 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-07-17T07:46:17.1141098Z [4935/7682] 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-07-17T07:46:17.1155843Z [4936/7682] 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-07-17T07:46:17.1235264Z [4937/7682] 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-07-17T07:46:17.2287990Z [4938/7682] 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-07-17T07:46:17.2617527Z [4939/7682] 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-07-17T07:46:17.3218774Z [4940/7682] 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-07-17T07:46:17.3234899Z [4941/7682] 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-07-17T07:46:17.3323492Z [4942/7682] 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-07-17T07:46:17.3412024Z [4943/7682] 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-07-17T07:46:17.4020200Z [4944/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-17T07:46:17.4029484Z [4945/7682] 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-07-17T07:46:17.4746408Z [4946/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u24.c.obj 2025-07-17T07:46:17.4823199Z [4947/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-17T07:46:17.4927978Z [4948/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse2-mul16-ld64-u32.c.obj 2025-07-17T07:46:17.4958341Z [4949/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u24.c.obj 2025-07-17T07:46:17.5571309Z [4950/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse2-u16.c.obj 2025-07-17T07:46:17.5727163Z [4951/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse2-mul16-ld64-u32.c.obj 2025-07-17T07:46:17.6484522Z [4952/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.6496164Z [4953/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse2-u16.c.obj 2025-07-17T07:46:17.6645193Z [4954/7682] 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-07-17T07:46:17.6653043Z [4955/7682] 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-07-17T07:46:17.7218258Z [4956/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.7920728Z [4957/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.8192248Z [4958/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.8512518Z [4959/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.8529581Z [4960/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.9186351Z [4961/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.9342281Z [4962/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u8.c.obj 2025-07-17T07:46:17.9500897Z [4963/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u16.c.obj 2025-07-17T07:46:17.9819475Z [4964/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse2-mul16.c.obj 2025-07-17T07:46:17.9919947Z [4965/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse2-u24.c.obj 2025-07-17T07:46:18.0457430Z [4966/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.0957312Z [4967/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.1170820Z [4968/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.1319960Z [4969/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.1518130Z [4970/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.1683911Z [4971/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.2229212Z [4972/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.2706569Z [4973/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.3041625Z [4974/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.3236140Z [4975/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.3334105Z [4976/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.3450468Z [4977/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.4073489Z [4978/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.4507180Z [4979/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.4859050Z [4980/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.5273243Z [4981/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.5644512Z [4982/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.5837748Z [4983/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.6126303Z [4984/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.6244864Z [4985/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.6377642Z [4986/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.6862480Z [4987/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.7264100Z [4988/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.7383876Z [4989/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.7732853Z [4990/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.7795219Z [4991/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.7979478Z [4992/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.8514494Z [4993/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.8855275Z [4994/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.8993365Z [4995/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.9369821Z [4996/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:18.9591616Z [4997/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:18.9605246Z [4998/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:19.0288169Z [4999/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:19.0379974Z [5000/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:19.0918317Z [5001/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:19.0980641Z [5002/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:19.1370038Z [5003/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:19.1705926Z [5004/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld64.c.obj 2025-07-17T07:46:19.1772072Z [5005/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u16.c.obj 2025-07-17T07:46:19.1916446Z [5006/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse2-ld128.c.obj 2025-07-17T07:46:19.2466929Z [5007/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc4.c.obj 2025-07-17T07:46:19.2652190Z [5008/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-sse2-u64-acc2.c.obj 2025-07-17T07:46:19.2844346Z [5009/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-17T07:46:19.3403919Z [5010/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse2-mul16-ld64-u16.c.obj 2025-07-17T07:46:19.3542213Z [5011/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse2-u16.c.obj 2025-07-17T07:46:19.3912619Z [5012/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse2-u16.c.obj 2025-07-17T07:46:19.4001270Z [5013/7682] 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-07-17T07:46:19.4144274Z [5014/7682] 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-07-17T07:46:19.4148329Z [5015/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse2-c16.c.obj 2025-07-17T07:46:19.4745896Z [5016/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse2-c16.c.obj 2025-07-17T07:46:19.4905539Z [5017/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-16x16-reuse-switch-sse2.c.obj 2025-07-17T07:46:19.5312915Z [5018/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-switch-sse2.c.obj 2025-07-17T07:46:19.5489476Z [5019/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-switch-sse2.c.obj 2025-07-17T07:46:19.5613446Z [5020/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-reuse-mov-sse2.c.obj 2025-07-17T07:46:19.5852869Z [5021/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-8x8-multi-mov-sse2.c.obj 2025-07-17T07:46:19.6053397Z [5022/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\x16-transposec-4x8-sse2.c.obj 2025-07-17T07:46:19.6211201Z [5023/7682] 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-07-17T07:46:19.6694776Z [5024/7682] 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-07-17T07:46:19.6861663Z [5025/7682] 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-07-17T07:46:19.7281557Z [5026/7682] 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-07-17T07:46:19.7303465Z [5027/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-sse2-u8.c.obj 2025-07-17T07:46:19.7421036Z [5028/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u4.c.obj 2025-07-17T07:46:19.7848148Z [5029/7682] 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-07-17T07:46:19.8171688Z [5030/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-sse2-u8.c.obj 2025-07-17T07:46:19.8634381Z [5031/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u4.c.obj 2025-07-17T07:46:19.8701047Z [5032/7682] 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-07-17T07:46:19.8726164Z [5033/7682] 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-07-17T07:46:19.8868083Z [5034/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-sse2-u8.c.obj 2025-07-17T07:46:19.9276278Z [5035/7682] 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-07-17T07:46:19.9562859Z [5036/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u4.c.obj 2025-07-17T07:46:20.0066708Z [5037/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16s4-gemm-goi-sse2-u8.c.obj 2025-07-17T07:46:20.0085877Z [5038/7682] 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-07-17T07:46:20.0158891Z [5039/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-multi-sse2.c.obj 2025-07-17T07:46:20.0265680Z [5040/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-mov-sse2.c.obj 2025-07-17T07:46:20.0600800Z [5041/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-multi-switch-sse2.c.obj 2025-07-17T07:46:20.0828866Z [5042/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-mov-sse2.c.obj 2025-07-17T07:46:20.1417798Z [5043/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-switch-sse2.c.obj 2025-07-17T07:46:20.1432981Z [5044/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-multi-sse2.c.obj 2025-07-17T07:46:20.1753147Z [5045/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-4x4-reuse-multi-sse2.c.obj 2025-07-17T07:46:20.1821491Z [5046/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-multi-switch-sse2.c.obj 2025-07-17T07:46:20.2417862Z [5047/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-mov-sse2.c.obj 2025-07-17T07:46:20.2482117Z [5048/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-multi-sse2.c.obj 2025-07-17T07:46:20.2671603Z [5049/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-2x2-reuse-switch-sse2.c.obj 2025-07-17T07:46:20.3069890Z [5050/7682] 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-07-17T07:46:20.3321398Z [5051/7682] 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-07-17T07:46:20.3323826Z [5052/7682] 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-07-17T07:46:20.4018033Z [5053/7682] 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-07-17T07:46:20.4280518Z [5054/7682] 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-07-17T07:46:20.4310248Z [5055/7682] 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-07-17T07:46:20.4673165Z [5056/7682] 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-07-17T07:46:20.4976665Z [5057/7682] 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-07-17T07:46:20.4980023Z [5058/7682] 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-07-17T07:46:20.5884356Z [5059/7682] 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-07-17T07:46:20.6001961Z [5060/7682] 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-07-17T07:46:20.6419631Z [5061/7682] 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-07-17T07:46:20.6448731Z [5062/7682] 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-07-17T07:46:20.6704308Z [5063/7682] 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-07-17T07:46:20.6798376Z [5064/7682] 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-07-17T07:46:20.7254867Z [5065/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u16.c.obj 2025-07-17T07:46:20.7370244Z [5066/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc2.c.obj 2025-07-17T07:46:20.7863555Z [5067/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-ssse3-u64-acc4.c.obj 2025-07-17T07:46:20.7939338Z [5068/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-ssse3-u16.c.obj 2025-07-17T07:46:20.8147629Z [5069/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-ssse3-u16.c.obj 2025-07-17T07:46:20.8794938Z [5070/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u16.c.obj 2025-07-17T07:46:20.8809658Z [5071/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c32.c.obj 2025-07-17T07:46:20.8822218Z [5072/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-ssse3-u16.c.obj 2025-07-17T07:46:20.8909159Z [5073/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rdsum\gen\qu8-rdsum-7p7x-ssse3-c16.c.obj 2025-07-17T07:46:20.8992735Z [5074/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-ssse3-u32.c.obj 2025-07-17T07:46:20.9354883Z [5075/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-ssse3-u16.c.obj 2025-07-17T07:46:21.0249609Z [5076/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u24.c.obj 2025-07-17T07:46:21.0266283Z [5077/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u8.c.obj 2025-07-17T07:46:21.0331126Z [5078/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u8.c.obj 2025-07-17T07:46:21.0345105Z [5079/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int16-u32.c.obj 2025-07-17T07:46:21.0453197Z [5080/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u16.c.obj 2025-07-17T07:46:21.0798473Z [5081/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u24.c.obj 2025-07-17T07:46:21.1632252Z [5082/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-sse41-int32-u32.c.obj 2025-07-17T07:46:21.1748551Z [5083/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u16.c.obj 2025-07-17T07:46:21.1750500Z [5084/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u24.c.obj 2025-07-17T07:46:21.1769231Z [5085/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-sse41-u32.c.obj 2025-07-17T07:46:21.2054653Z [5086/7682] 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-07-17T07:46:21.2754215Z [5087/7682] 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-07-17T07:46:21.3396231Z [5088/7682] 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-07-17T07:46:21.3410287Z [5089/7682] 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-07-17T07:46:21.3474812Z [5090/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-1x8s4-minmax-sse41.c.obj 2025-07-17T07:46:21.3539322Z [5091/7682] 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-07-17T07:46:21.3822043Z [5092/7682] 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-07-17T07:46:21.4376179Z [5093/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-3x8s4-minmax-sse41.c.obj 2025-07-17T07:46:21.5385465Z [5094/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x2c4-minmax-sse41.c.obj 2025-07-17T07:46:21.5404062Z [5095/7682] 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-07-17T07:46:21.5709709Z [5096/7682] 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-07-17T07:46:21.5824721Z [5097/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-4x8s4-minmax-sse41.c.obj 2025-07-17T07:46:21.5843156Z [5098/7682] 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-07-17T07:46:21.6748269Z [5099/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-5x8s4-minmax-sse41.c.obj 2025-07-17T07:46:21.7163159Z [5100/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x2c4-minmax-sse41.c.obj 2025-07-17T07:46:21.7239770Z [5101/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u8.c.obj 2025-07-17T07:46:21.7403111Z [5102/7682] 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-07-17T07:46:21.7417467Z [5103/7682] 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-07-17T07:46:21.7555364Z [5104/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qc8w-gemm\gen\f32-qc8w-gemm-6x8s4-minmax-sse41.c.obj 2025-07-17T07:46:21.8141946Z [5105/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u16.c.obj 2025-07-17T07:46:21.8599364Z [5106/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-sse41-u24.c.obj 2025-07-17T07:46:21.8694497Z [5107/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u4.c.obj 2025-07-17T07:46:21.8895122Z [5108/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-sse41-u8.c.obj 2025-07-17T07:46:21.9086122Z [5109/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u8.c.obj 2025-07-17T07:46:21.9116138Z [5110/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-sse41-u4.c.obj 2025-07-17T07:46:21.9759339Z [5111/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u4.c.obj 2025-07-17T07:46:22.0110065Z [5112/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u4.c.obj 2025-07-17T07:46:22.0313226Z [5113/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-sse41-u8.c.obj 2025-07-17T07:46:22.0439959Z [5114/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u8.c.obj 2025-07-17T07:46:22.0603069Z [5115/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u12.c.obj 2025-07-17T07:46:22.0671031Z [5116/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-lut16-p3-u16.c.obj 2025-07-17T07:46:22.1354358Z [5117/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u4.c.obj 2025-07-17T07:46:22.1554206Z [5118/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u8.c.obj 2025-07-17T07:46:22.1776034Z [5119/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u12.c.obj 2025-07-17T07:46:22.2009737Z [5120/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-sse41-rr2-p6-u16.c.obj 2025-07-17T07:46:22.2148698Z [5121/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-sse41-u4.c.obj 2025-07-17T07:46:22.2233702Z [5122/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-sse41-u4.c.obj 2025-07-17T07:46:22.3185509Z [5123/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-sse41-u4.c.obj 2025-07-17T07:46:22.3204140Z [5124/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-sse41-u4.c.obj 2025-07-17T07:46:22.3278083Z [5125/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-sse41-u4.c.obj 2025-07-17T07:46:22.3544314Z [5126/7682] 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-07-17T07:46:22.3652042Z [5127/7682] 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-07-17T07:46:22.3797478Z [5128/7682] 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-07-17T07:46:22.4718224Z [5129/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u8.c.obj 2025-07-17T07:46:22.4749085Z [5130/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u4.c.obj 2025-07-17T07:46:22.5073716Z [5131/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u16.c.obj 2025-07-17T07:46:22.5094507Z [5132/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-sse41-rr2-p5-div-u12.c.obj 2025-07-17T07:46:22.5349078Z [5133/7682] 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-07-17T07:46:22.5848472Z [5134/7682] 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-07-17T07:46:22.6462034Z [5135/7682] 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-07-17T07:46:22.6553863Z [5136/7682] 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-07-17T07:46:22.7053095Z [5137/7682] 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-07-17T07:46:22.7125939Z [5138/7682] 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-07-17T07:46:22.7458719Z [5139/7682] 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-07-17T07:46:22.7877916Z [5140/7682] 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-07-17T07:46:22.8127141Z [5141/7682] 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-07-17T07:46:22.8267759Z [5142/7682] 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-07-17T07:46:22.8824727Z [5143/7682] 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-07-17T07:46:22.9170839Z [5144/7682] 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-07-17T07:46:22.9707462Z [5145/7682] 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-07-17T07:46:22.9853965Z [5146/7682] 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-07-17T07:46:22.9934130Z [5147/7682] 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-07-17T07:46:23.0004354Z [5148/7682] 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-07-17T07:46:23.0750073Z [5149/7682] 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-07-17T07:46:23.0907784Z [5150/7682] 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-07-17T07:46:23.1448148Z [5151/7682] 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-07-17T07:46:23.1668181Z [5152/7682] 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-07-17T07:46:23.1739292Z [5153/7682] 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-07-17T07:46:23.1817330Z [5154/7682] 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-07-17T07:46:23.2462267Z [5155/7682] 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-07-17T07:46:23.2643550Z [5156/7682] 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-07-17T07:46:23.3192954Z [5157/7682] 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-07-17T07:46:23.3459083Z [5158/7682] 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-07-17T07:46:23.3534243Z [5159/7682] 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-07-17T07:46:23.3539803Z [5160/7682] 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-07-17T07:46:23.4312407Z [5161/7682] 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-07-17T07:46:23.4420697Z [5162/7682] 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-07-17T07:46:23.4685608Z [5163/7682] 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-07-17T07:46:23.4935887Z [5164/7682] 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-07-17T07:46:23.5022550Z [5165/7682] 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-07-17T07:46:23.5490638Z [5166/7682] 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-07-17T07:46:23.5556090Z [5167/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:23.5625289Z [5168/7682] 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-07-17T07:46:23.6160523Z [5169/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:23.6441193Z [5170/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:23.6952176Z [5171/7682] 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-07-17T07:46:23.7083186Z [5172/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:23.7147768Z [5173/7682] 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-07-17T07:46:23.7498680Z [5174/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:23.7794952Z [5175/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:23.8050323Z [5176/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:23.8564793Z [5177/7682] 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-07-17T07:46:23.8743168Z [5178/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:23.8837821Z [5179/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:23.9383388Z [5180/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:23.9582615Z [5181/7682] 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-07-17T07:46:24.0049154Z [5182/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:24.0267169Z [5183/7682] 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-07-17T07:46:24.0328039Z [5184/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:24.0459709Z [5185/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:24.1174960Z [5186/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:24.1605497Z [5187/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:24.1883267Z [5188/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:24.2025997Z [5189/7682] 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-07-17T07:46:24.2187321Z [5190/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:24.2378542Z [5191/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:24.2735617Z [5192/7682] 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-07-17T07:46:24.3213089Z [5193/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:24.3505010Z [5194/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u8.c.obj 2025-07-17T07:46:24.3521270Z [5195/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:24.3676253Z [5196/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u24.c.obj 2025-07-17T07:46:24.3753428Z [5197/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-sse41-u32.c.obj 2025-07-17T07:46:24.4415295Z [5198/7682] 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-07-17T07:46:24.4792679Z [5199/7682] 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-07-17T07:46:24.5083337Z [5200/7682] 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-07-17T07:46:24.5144747Z [5201/7682] 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-07-17T07:46:24.5275522Z [5202/7682] 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-07-17T07:46:24.5341802Z [5203/7682] 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-07-17T07:46:24.6465182Z [5204/7682] 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-07-17T07:46:24.6658173Z [5205/7682] 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-07-17T07:46:24.6925102Z [5206/7682] 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-07-17T07:46:24.7137432Z [5207/7682] 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-07-17T07:46:24.7212425Z [5208/7682] 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-07-17T07:46:24.7873662Z [5209/7682] 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-07-17T07:46:24.8058030Z [5210/7682] 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-07-17T07:46:24.8276970Z [5211/7682] 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-07-17T07:46:24.8603437Z [5212/7682] 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-07-17T07:46:24.8927730Z [5213/7682] 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-07-17T07:46:24.9425603Z [5214/7682] 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-07-17T07:46:24.9722934Z [5215/7682] 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-07-17T07:46:24.9993948Z [5216/7682] 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-07-17T07:46:25.0065506Z [5217/7682] 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-07-17T07:46:25.0257754Z [5218/7682] 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-07-17T07:46:25.0531198Z [5219/7682] 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-07-17T07:46:25.1245725Z [5220/7682] 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-07-17T07:46:28.7290993Z [5221/7682] 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-07-17T07:46:28.7586899Z [5222/7682] 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-07-17T07:46:28.7885633Z [5223/7682] 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-07-17T07:46:28.8117171Z [5224/7682] 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-07-17T07:46:28.8305663Z [5225/7682] 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-07-17T07:46:28.8463533Z [5226/7682] 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-07-17T07:46:28.8823911Z [5227/7682] 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-07-17T07:46:28.8926716Z [5228/7682] 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-07-17T07:46:28.9360671Z [5229/7682] 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-07-17T07:46:28.9467562Z [5230/7682] 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-07-17T07:46:28.9702923Z [5231/7682] 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-07-17T07:46:29.0216846Z [5232/7682] 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-07-17T07:46:29.0350772Z [5233/7682] Building CXX object caffe2\torch\CMakeFiles\torch_python.dir\csrc\distributed\c10d\init.cpp.obj 2025-07-17T07:46:29.0412951Z [5234/7682] 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-07-17T07:46:29.0548245Z [5235/7682] 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-07-17T07:46:29.1121100Z [5236/7682] 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-07-17T07:46:29.1238596Z [5237/7682] 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-07-17T07:46:29.1270914Z [5238/7682] 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-07-17T07:46:29.1584270Z [5239/7682] 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-07-17T07:46:29.1836806Z [5240/7682] 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-07-17T07:46:29.1897816Z [5241/7682] 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-07-17T07:46:29.2058282Z [5242/7682] 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-07-17T07:46:29.2678943Z [5243/7682] 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-07-17T07:46:29.2893642Z [5244/7682] 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-07-17T07:46:29.2939118Z [5245/7682] 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-07-17T07:46:29.3247630Z [5246/7682] 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-07-17T07:46:29.3258536Z [5247/7682] 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-07-17T07:46:29.3307799Z [5248/7682] 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-07-17T07:46:29.3399197Z [5249/7682] 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-07-17T07:46:29.4132275Z [5250/7682] 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-07-17T07:46:29.4248458Z [5251/7682] 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-07-17T07:46:29.4309401Z [5252/7682] 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-07-17T07:46:29.4545732Z [5253/7682] 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-07-17T07:46:29.4557850Z [5254/7682] 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-07-17T07:46:29.4632930Z [5255/7682] 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-07-17T07:46:29.4758514Z [5256/7682] 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-07-17T07:46:29.5381786Z [5257/7682] 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-07-17T07:46:29.5430679Z [5258/7682] 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-07-17T07:46:29.6413373Z [5259/7682] 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-07-17T07:46:29.6429022Z [5260/7682] 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-07-17T07:46:29.6444480Z [5261/7682] 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-07-17T07:46:29.6458759Z [5262/7682] 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-07-17T07:46:29.6471953Z [5263/7682] 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-07-17T07:46:29.7587879Z [5264/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c32.c.obj 2025-07-17T07:46:29.7600034Z [5265/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-sse41-c16.c.obj 2025-07-17T07:46:29.7648943Z [5266/7682] 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-07-17T07:46:29.7669947Z [5267/7682] 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-07-17T07:46:29.7749993Z [5268/7682] 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-07-17T07:46:29.8040186Z [5269/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u24.c.obj 2025-07-17T07:46:29.8110988Z [5270/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-17T07:46:29.8787133Z [5271/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul16-ld64-u32.c.obj 2025-07-17T07:46:29.8840279Z [5272/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-17T07:46:29.9050913Z [5273/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u24.c.obj 2025-07-17T07:46:29.9103741Z [5274/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u32.c.obj 2025-07-17T07:46:29.9165795Z [5275/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-17T07:46:29.9482348Z [5276/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u24.c.obj 2025-07-17T07:46:29.9546025Z [5277/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-17T07:46:29.9967089Z [5278/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul16-ld64-u32.c.obj 2025-07-17T07:46:29.9984248Z [5279/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-17T07:46:30.0309412Z [5280/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-17T07:46:30.0368018Z [5281/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u24.c.obj 2025-07-17T07:46:30.0465118Z [5282/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-sse41-mul32-ld32-u32.c.obj 2025-07-17T07:46:30.0579200Z [5283/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u16.c.obj 2025-07-17T07:46:30.0635016Z [5284/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-sse41-u8.c.obj 2025-07-17T07:46:30.1193194Z [5285/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u8.c.obj 2025-07-17T07:46:30.1207354Z [5286/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-sse41-u16.c.obj 2025-07-17T07:46:30.1437293Z [5287/7682] 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-07-17T07:46:30.1499910Z [5288/7682] 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-07-17T07:46:30.1736682Z [5289/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.2122150Z [5290/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.2523286Z [5291/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.2584467Z [5292/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.2690442Z [5293/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.2895736Z [5294/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.3140608Z [5295/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.3156087Z [5296/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.3553152Z [5297/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.3810665Z [5298/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.3929222Z [5299/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.4097563Z [5300/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.4222421Z [5301/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.4345812Z [5302/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.4403757Z [5303/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.4815712Z [5304/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.5124759Z [5305/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul16.c.obj 2025-07-17T07:46:30.5196508Z [5306/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-sse41-mul32.c.obj 2025-07-17T07:46:30.5212118Z [5307/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u8.c.obj 2025-07-17T07:46:30.5431678Z [5308/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u24.c.obj 2025-07-17T07:46:30.5542717Z [5309/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-sse41-u32.c.obj 2025-07-17T07:46:30.6105631Z [5310/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.6118681Z [5311/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.6455524Z [5312/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.6519605Z [5313/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.6637468Z [5314/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.7050955Z [5315/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.7064913Z [5316/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.7453890Z [5317/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.7510102Z [5318/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.8084957Z [5319/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.8148843Z [5320/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.8201251Z [5321/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.8405412Z [5322/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.8566713Z [5323/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.8809589Z [5324/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.8902864Z [5325/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.9458410Z [5326/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.9528289Z [5327/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.9616520Z [5328/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:30.9726742Z [5329/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:30.9908687Z [5330/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.0118701Z [5331/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.0698318Z [5332/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.0776287Z [5333/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.0944742Z [5334/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.0995783Z [5335/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.1163235Z [5336/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.1388041Z [5337/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.1531392Z [5338/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.2080538Z [5339/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.2138083Z [5340/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.2275555Z [5341/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.2455248Z [5342/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.2582620Z [5343/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.2753381Z [5344/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.2807245Z [5345/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.3404753Z [5346/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.3460641Z [5347/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.3531105Z [5348/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld64.c.obj 2025-07-17T07:46:31.3659900Z [5349/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-sse41-ld128.c.obj 2025-07-17T07:46:31.3946604Z [5350/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-17T07:46:31.4011678Z [5351/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-17T07:46:31.4072917Z [5352/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-17T07:46:31.4601826Z [5353/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u8.c.obj 2025-07-17T07:46:31.4661797Z [5354/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul32-ld32-u16.c.obj 2025-07-17T07:46:31.4675208Z [5355/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-sse41-mul16-ld64-u16.c.obj 2025-07-17T07:46:31.4940667Z [5356/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u8.c.obj 2025-07-17T07:46:31.5033009Z [5357/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-sse41-u16.c.obj 2025-07-17T07:46:31.5185549Z [5358/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u8.c.obj 2025-07-17T07:46:31.5398970Z [5359/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-sse41-u16.c.obj 2025-07-17T07:46:31.5699595Z [5360/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\s8-ibilinear\gen\s8-ibilinear-sse41-c8.c.obj 2025-07-17T07:46:31.5788643Z [5361/7682] 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-07-17T07:46:31.5968805Z [5362/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\u8-ibilinear\gen\u8-ibilinear-sse41-c8.c.obj 2025-07-17T07:46:31.6176038Z [5363/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-gio-sse41-u2.c.obj 2025-07-17T07:46:31.6188396Z [5364/7682] 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-07-17T07:46:31.6240655Z [5365/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u8.c.obj 2025-07-17T07:46:31.6479984Z [5366/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u24.c.obj 2025-07-17T07:46:31.6961480Z [5367/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u8.c.obj 2025-07-17T07:46:31.7025158Z [5368/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int16-u32.c.obj 2025-07-17T07:46:31.7074198Z [5369/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u16.c.obj 2025-07-17T07:46:31.7303891Z [5370/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u32.c.obj 2025-07-17T07:46:31.7367168Z [5371/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx-int32-u24.c.obj 2025-07-17T07:46:31.7422802Z [5372/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.7802904Z [5373/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-avx.c.obj 2025-07-17T07:46:31.8386911Z [5374/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.8472008Z [5375/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx.c.obj 2025-07-17T07:46:31.8574173Z [5376/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.8653495Z [5377/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-avx.c.obj 2025-07-17T07:46:31.8833047Z [5378/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.8893220Z [5379/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.8948249Z [5380/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.9606201Z [5381/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-avx.c.obj 2025-07-17T07:46:31.9657674Z [5382/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l8c8s4r-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.9855253Z [5383/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx-acc2.c.obj 2025-07-17T07:46:31.9939202Z [5384/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-6f6m7l16c8s4r-minmax-avx.c.obj 2025-07-17T07:46:32.0137724Z [5385/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx.c.obj 2025-07-17T07:46:32.0186349Z [5386/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l8c8s4r-minmax-avx-acc2.c.obj 2025-07-17T07:46:32.0271521Z [5387/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx-acc2.c.obj 2025-07-17T07:46:32.0916191Z [5388/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx-acc2.c.obj 2025-07-17T07:46:32.0972397Z [5389/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-8f8m9l16c8s4r-minmax-avx.c.obj 2025-07-17T07:46:32.1104017Z [5390/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-avx.c.obj 2025-07-17T07:46:32.1408794Z [5391/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx-acc2.c.obj 2025-07-17T07:46:32.1465415Z [5392/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx.c.obj 2025-07-17T07:46:32.1606365Z [5393/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-avx-acc2.c.obj 2025-07-17T07:46:32.1722608Z [5394/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx-acc2.c.obj 2025-07-17T07:46:32.1943156Z [5395/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u8.c.obj 2025-07-17T07:46:32.1994449Z [5396/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u16.c.obj 2025-07-17T07:46:32.2152896Z [5397/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx-u32.c.obj 2025-07-17T07:46:32.3288171Z [5398/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.3300355Z [5399/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.3311434Z [5400/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.3322843Z [5401/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.3378617Z [5402/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.3390510Z [5403/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.3476603Z [5404/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.4744428Z [5405/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.4793443Z [5406/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.4840258Z [5407/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.4851352Z [5408/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.4935098Z [5409/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.5044490Z [5410/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.5238875Z [5411/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.6116183Z [5412/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.6165879Z [5413/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.6254283Z [5414/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.6318840Z [5415/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.6338646Z [5416/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.6386531Z [5417/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.6504483Z [5418/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.7456525Z [5419/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.7532688Z [5420/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.7582220Z [5421/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.7597590Z [5422/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-prelu\gen\f32-prelu-avx-2x16.c.obj 2025-07-17T07:46:32.7610346Z [5423/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.7745974Z [5424/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx-broadcast.c.obj 2025-07-17T07:46:32.7896996Z [5425/7682] 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-07-17T07:46:32.8853410Z [5426/7682] 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-07-17T07:46:32.8920047Z [5427/7682] 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-07-17T07:46:32.8977534Z [5428/7682] 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-07-17T07:46:32.9029859Z [5429/7682] 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-07-17T07:46:32.9041479Z [5430/7682] 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-07-17T07:46:32.9258637Z [5431/7682] 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-07-17T07:46:32.9356735Z [5432/7682] 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-07-17T07:46:33.0196661Z [5433/7682] 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-07-17T07:46:33.0308170Z [5434/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u8.c.obj 2025-07-17T07:46:33.0354077Z [5435/7682] 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-07-17T07:46:33.0406998Z [5436/7682] 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-07-17T07:46:33.0517551Z [5437/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u24.c.obj 2025-07-17T07:46:33.0537861Z [5438/7682] 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-07-17T07:46:33.0551438Z [5439/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx-u16.c.obj 2025-07-17T07:46:33.1505424Z [5440/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u8.c.obj 2025-07-17T07:46:33.1543607Z [5441/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u24.c.obj 2025-07-17T07:46:33.1578073Z [5442/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx-u16.c.obj 2025-07-17T07:46:33.1597149Z [5443/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c16.c.obj 2025-07-17T07:46:33.1715806Z [5444/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx-c64.c.obj 2025-07-17T07:46:33.1780449Z [5445/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u8.c.obj 2025-07-17T07:46:33.1840988Z [5446/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u16-acc2.c.obj 2025-07-17T07:46:33.2634792Z [5447/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u24-acc3.c.obj 2025-07-17T07:46:33.2682442Z [5448/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx-u32-acc2.c.obj 2025-07-17T07:46:33.2727718Z [5449/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u8.c.obj 2025-07-17T07:46:33.2818252Z [5450/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u24-acc3.c.obj 2025-07-17T07:46:33.2900416Z [5451/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc2.c.obj 2025-07-17T07:46:33.2913099Z [5452/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u32-acc4.c.obj 2025-07-17T07:46:33.3054856Z [5453/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx-u16-acc2.c.obj 2025-07-17T07:46:33.3756746Z [5454/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u16-acc2.c.obj 2025-07-17T07:46:33.3890348Z [5455/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u32-acc2.c.obj 2025-07-17T07:46:33.3947431Z [5456/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u16-acc2.c.obj 2025-07-17T07:46:33.3964881Z [5457/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u8.c.obj 2025-07-17T07:46:33.4018902Z [5458/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx-u24-acc3.c.obj 2025-07-17T07:46:33.4066590Z [5459/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u8.c.obj 2025-07-17T07:46:33.4122056Z [5460/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u24-acc3.c.obj 2025-07-17T07:46:33.4837814Z [5461/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx-u32-acc2.c.obj 2025-07-17T07:46:33.5115339Z [5462/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx-u8.c.obj 2025-07-17T07:46:33.5181228Z [5463/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx-u8.c.obj 2025-07-17T07:46:33.5234515Z [5464/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx-u8.c.obj 2025-07-17T07:46:33.5291149Z [5465/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx-u8.c.obj 2025-07-17T07:46:33.5351338Z [5466/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx-u8.c.obj 2025-07-17T07:46:33.5412232Z [5467/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx-u8.c.obj 2025-07-17T07:46:33.6028681Z [5468/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx-u8.c.obj 2025-07-17T07:46:33.6331415Z [5469/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx-u8.c.obj 2025-07-17T07:46:33.6456033Z [5470/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx-u8.c.obj 2025-07-17T07:46:33.6518110Z [5471/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx-u8.c.obj 2025-07-17T07:46:33.6531559Z [5472/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx-u8.c.obj 2025-07-17T07:46:33.6595768Z [5473/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx-u8.c.obj 2025-07-17T07:46:33.6611604Z [5474/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx-u8.c.obj 2025-07-17T07:46:33.7326295Z [5475/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx-u8.c.obj 2025-07-17T07:46:33.7578770Z [5476/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx-u8.c.obj 2025-07-17T07:46:33.7659339Z [5477/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx-u8.c.obj 2025-07-17T07:46:33.7713018Z [5478/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx-u8.c.obj 2025-07-17T07:46:33.7766573Z [5479/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx-u8.c.obj 2025-07-17T07:46:33.7855517Z [5480/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx-u8.c.obj 2025-07-17T07:46:33.7917326Z [5481/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx-u8.c.obj 2025-07-17T07:46:33.8572553Z [5482/7682] 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-07-17T07:46:33.8918786Z [5483/7682] 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-07-17T07:46:33.8931847Z [5484/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u16.c.obj 2025-07-17T07:46:33.8988705Z [5485/7682] 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-07-17T07:46:33.9001618Z [5486/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u8.c.obj 2025-07-17T07:46:33.9057505Z [5487/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u24.c.obj 2025-07-17T07:46:33.9156034Z [5488/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-lut16-p3-u32.c.obj 2025-07-17T07:46:33.9768337Z [5489/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u8.c.obj 2025-07-17T07:46:34.0161668Z [5490/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u16.c.obj 2025-07-17T07:46:34.0208524Z [5491/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u24.c.obj 2025-07-17T07:46:34.0221282Z [5492/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx-rr2-p6-u32.c.obj 2025-07-17T07:46:34.0312521Z [5493/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u8.c.obj 2025-07-17T07:46:34.0324513Z [5494/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx-u8.c.obj 2025-07-17T07:46:34.0389491Z [5495/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx-u8.c.obj 2025-07-17T07:46:34.1000782Z [5496/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx-u16.c.obj 2025-07-17T07:46:34.1411603Z [5497/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx-u8.c.obj 2025-07-17T07:46:34.1424052Z [5498/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx-u8.c.obj 2025-07-17T07:46:34.1473489Z [5499/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx-u8.c.obj 2025-07-17T07:46:34.1548154Z [5500/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx-u8.c.obj 2025-07-17T07:46:34.1616319Z [5501/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u32.c.obj 2025-07-17T07:46:34.1637915Z [5502/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx-rsqrt-u8.c.obj 2025-07-17T07:46:34.2201201Z [5503/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u8.c.obj 2025-07-17T07:46:34.2613246Z [5504/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u16.c.obj 2025-07-17T07:46:34.2668444Z [5505/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u24.c.obj 2025-07-17T07:46:34.2768675Z [5506/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u8.c.obj 2025-07-17T07:46:34.2785949Z [5507/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-div-u32.c.obj 2025-07-17T07:46:34.2843200Z [5508/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u24.c.obj 2025-07-17T07:46:34.2857360Z [5509/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx-rr2-p5-nr2-u32.c.obj 2025-07-17T07:46:34.3637788Z [5510/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u8.c.obj 2025-07-17T07:46:34.3997465Z [5511/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u8.c.obj 2025-07-17T07:46:34.4051981Z [5512/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx-rational-9-8-nr.c.obj 2025-07-17T07:46:34.4073632Z [5513/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u16.c.obj 2025-07-17T07:46:34.4149968Z [5514/7682] 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-07-17T07:46:34.4166405Z [5515/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-sqrt-u32.c.obj 2025-07-17T07:46:34.4182006Z [5516/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx-rsqrt-u32.c.obj 2025-07-17T07:46:34.5012629Z [5517/7682] 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-07-17T07:46:34.5425959Z [5518/7682] 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-07-17T07:46:34.5497996Z [5519/7682] 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-07-17T07:46:34.5509425Z [5520/7682] 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-07-17T07:46:34.5567054Z [5521/7682] 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-07-17T07:46:34.5583851Z [5522/7682] 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-07-17T07:46:34.5630622Z [5523/7682] 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-07-17T07:46:34.6416017Z [5524/7682] 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-07-17T07:46:34.6894218Z [5525/7682] 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-07-17T07:46:34.6943149Z [5526/7682] 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-07-17T07:46:34.6995406Z [5527/7682] 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-07-17T07:46:34.7009035Z [5528/7682] 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-07-17T07:46:34.7022660Z [5529/7682] 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-07-17T07:46:34.7083879Z [5530/7682] 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-07-17T07:46:34.7780552Z [5531/7682] 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-07-17T07:46:34.8356844Z [5532/7682] 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-07-17T07:46:34.8403488Z [5533/7682] 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-07-17T07:46:34.8449100Z [5534/7682] 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-07-17T07:46:34.8504838Z [5535/7682] 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-07-17T07:46:34.8516581Z [5536/7682] 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-07-17T07:46:34.8570719Z [5537/7682] 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-07-17T07:46:34.9013032Z [5538/7682] 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-07-17T07:46:34.9649845Z [5539/7682] 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-07-17T07:46:34.9661502Z [5540/7682] 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-07-17T07:46:34.9750515Z [5541/7682] 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-07-17T07:46:34.9818067Z [5542/7682] 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-07-17T07:46:34.9835881Z [5543/7682] 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-07-17T07:46:34.9894308Z [5544/7682] 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-07-17T07:46:35.0223603Z [5545/7682] 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-07-17T07:46:35.0946535Z [5546/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.0961469Z [5547/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.1082986Z [5548/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.1234136Z [5549/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.1359331Z [5550/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.1461787Z [5551/7682] 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-07-17T07:46:35.1516838Z [5552/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.2199264Z [5553/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-17T07:46:35.2253682Z [5554/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.2312119Z [5555/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul16.c.obj 2025-07-17T07:46:35.2575055Z [5556/7682] 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-07-17T07:46:35.2586704Z [5557/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.2785851Z [5558/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.2888353Z [5559/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-17T07:46:35.3456063Z [5560/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u8.c.obj 2025-07-17T07:46:35.3550819Z [5561/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:35.3601700Z [5562/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx-mul16.c.obj 2025-07-17T07:46:35.3674638Z [5563/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u16.c.obj 2025-07-17T07:46:35.3727715Z [5564/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx-u24.c.obj 2025-07-17T07:46:35.4098241Z [5565/7682] 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-07-17T07:46:35.4384129Z [5566/7682] 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-07-17T07:46:35.4831030Z [5567/7682] 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-07-17T07:46:35.4842932Z [5568/7682] 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-07-17T07:46:35.4906999Z [5569/7682] 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-07-17T07:46:35.5144230Z [5570/7682] 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-07-17T07:46:35.5292873Z [5571/7682] 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-07-17T07:46:35.5548602Z [5572/7682] 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-07-17T07:46:35.6050577Z [5573/7682] 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-07-17T07:46:35.6125328Z [5574/7682] 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-07-17T07:46:35.6175705Z [5575/7682] 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-07-17T07:46:35.6224135Z [5576/7682] 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-07-17T07:46:35.6661809Z [5577/7682] 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-07-17T07:46:35.6783702Z [5578/7682] 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-07-17T07:46:35.7277574Z [5579/7682] 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-07-17T07:46:35.7401222Z [5580/7682] 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-07-17T07:46:35.7607461Z [5581/7682] 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-07-17T07:46:35.7657287Z [5582/7682] 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-07-17T07:46:35.7917781Z [5583/7682] 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-07-17T07:46:35.8009456Z [5584/7682] 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-07-17T07:46:35.8196106Z [5585/7682] 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-07-17T07:46:35.8726470Z [5586/7682] 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-07-17T07:46:35.8994108Z [5587/7682] 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-07-17T07:46:35.9076190Z [5588/7682] 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-07-17T07:46:35.9480320Z [5589/7682] 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-07-17T07:46:35.9564969Z [5590/7682] 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-07-17T07:46:35.9644596Z [5591/7682] 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-07-17T07:46:35.9759362Z [5592/7682] 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-07-17T07:46:35.9970235Z [5593/7682] 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-07-17T07:46:36.0390838Z [5594/7682] 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-07-17T07:46:36.0978262Z [5595/7682] 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-07-17T07:46:36.1037122Z [5596/7682] 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-07-17T07:46:36.1048740Z [5597/7682] 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-07-17T07:46:36.1264086Z [5598/7682] 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-07-17T07:46:36.1339281Z [5599/7682] 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-07-17T07:46:36.1530218Z [5600/7682] 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-07-17T07:46:36.1718154Z [5601/7682] 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-07-17T07:46:36.2234038Z [5602/7682] 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-07-17T07:46:36.2249921Z [5603/7682] 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-07-17T07:46:36.2316513Z [5604/7682] 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-07-17T07:46:36.2471024Z [5605/7682] 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-07-17T07:46:36.2551830Z [5606/7682] 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-07-17T07:46:36.2803703Z [5607/7682] 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-07-17T07:46:36.2965867Z [5608/7682] 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-07-17T07:46:36.3596678Z [5609/7682] 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-07-17T07:46:36.3644631Z [5610/7682] 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-07-17T07:46:36.3745520Z [5611/7682] 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-07-17T07:46:36.3758482Z [5612/7682] 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-07-17T07:46:36.3927184Z [5613/7682] 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-07-17T07:46:36.3987923Z [5614/7682] 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-07-17T07:46:36.4265138Z [5615/7682] 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-07-17T07:46:36.4881895Z [5616/7682] 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-07-17T07:46:36.4932251Z [5617/7682] 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-07-17T07:46:36.5012361Z [5618/7682] 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-07-17T07:46:36.5151325Z [5619/7682] 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-07-17T07:46:36.5212031Z [5620/7682] 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-07-17T07:46:36.5231442Z [5621/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-07-17T07:46:36.5404952Z [5622/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-07-17T07:46:36.6152948Z [5623/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u32.c.obj 2025-07-17T07:46:36.6258070Z [5624/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-07-17T07:46:36.6311761Z [5625/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul16-ld64-u24.c.obj 2025-07-17T07:46:36.6440285Z [5626/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u24.c.obj 2025-07-17T07:46:36.6456651Z [5627/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx-mul32-ld32-u32.c.obj 2025-07-17T07:46:36.6471353Z [5628/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-07-17T07:46:36.6593066Z [5629/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-07-17T07:46:36.7406591Z [5630/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u24.c.obj 2025-07-17T07:46:36.7471072Z [5631/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-07-17T07:46:36.7483933Z [5632/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul16-ld64-u32.c.obj 2025-07-17T07:46:36.7653528Z [5633/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u8.c.obj 2025-07-17T07:46:36.7815696Z [5634/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx-u16.c.obj 2025-07-17T07:46:36.7964187Z [5635/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u32.c.obj 2025-07-17T07:46:36.8555031Z [5636/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u16.c.obj 2025-07-17T07:46:36.8570320Z [5637/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx-mul32-ld32-u24.c.obj 2025-07-17T07:46:36.8620463Z [5638/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx-u8.c.obj 2025-07-17T07:46:36.8771732Z [5639/7682] 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-07-17T07:46:36.8941221Z [5640/7682] 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-07-17T07:46:36.8992930Z [5641/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:36.9234744Z [5642/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:36.9814305Z [5643/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:36.9952111Z [5644/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:37.0010163Z [5645/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:37.0124925Z [5646/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c4s4r-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:37.0530892Z [5647/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:37.0542808Z [5648/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx-mul16.c.obj 2025-07-17T07:46:37.0823682Z [5649/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:37.1406641Z [5650/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:37.1630019Z [5651/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u8.c.obj 2025-07-17T07:46:37.1678658Z [5652/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u16.c.obj 2025-07-17T07:46:37.1741369Z [5653/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx-u24.c.obj 2025-07-17T07:46:37.1754525Z [5654/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul32.c.obj 2025-07-17T07:46:37.2178061Z [5655/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.2435215Z [5656/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx-mul16.c.obj 2025-07-17T07:46:37.2980003Z [5657/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.2991701Z [5658/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.3042876Z [5659/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.3137268Z [5660/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.3193048Z [5661/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.3572019Z [5662/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.4050753Z [5663/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.4388695Z [5664/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.4450686Z [5665/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.4516908Z [5666/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.4575532Z [5667/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.4587987Z [5668/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.5359321Z [5669/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.5574815Z [5670/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.5813213Z [5671/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.5831127Z [5672/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.5965066Z [5673/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.6018307Z [5674/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.6103798Z [5675/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.6790163Z [5676/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.6909335Z [5677/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.7014145Z [5678/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.7234999Z [5679/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.7288457Z [5680/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.7475694Z [5681/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.8040933Z [5682/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.8057727Z [5683/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.8069228Z [5684/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.8205822Z [5685/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.8406645Z [5686/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.8670948Z [5687/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.8727914Z [5688/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.9329104Z [5689/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.9384666Z [5690/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c8-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.9396357Z [5691/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-3x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:37.9490493Z [5692/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:37.9774655Z [5693/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:38.0090717Z [5694/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld128.c.obj 2025-07-17T07:46:38.0570796Z [5695/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u8.c.obj 2025-07-17T07:46:38.0622403Z [5696/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x4c2s4-minmax-fp32-avx-ld64.c.obj 2025-07-17T07:46:38.0674433Z [5697/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u16.c.obj 2025-07-17T07:46:38.0696979Z [5698/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul16-ld64-u8.c.obj 2025-07-17T07:46:38.0998081Z [5699/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx-mul32-ld32-u16.c.obj 2025-07-17T07:46:38.1060147Z [5700/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul16-ld64-u16.c.obj 2025-07-17T07:46:38.1134877Z [5701/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx-mul32-ld32-u16.c.obj 2025-07-17T07:46:38.1704407Z [5702/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u8.c.obj 2025-07-17T07:46:38.1780339Z [5703/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx-u16.c.obj 2025-07-17T07:46:38.1837325Z [5704/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u16.c.obj 2025-07-17T07:46:38.2034870Z [5705/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx-u8.c.obj 2025-07-17T07:46:38.2255404Z [5706/7682] 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-07-17T07:46:38.2503191Z [5707/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u16.c.obj 2025-07-17T07:46:38.2564919Z [5708/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u48.c.obj 2025-07-17T07:46:38.2757417Z [5709/7682] 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-07-17T07:46:38.2873989Z [5710/7682] 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-07-17T07:46:38.2924571Z [5711/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx-u32.c.obj 2025-07-17T07:46:38.3151347Z [5712/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u1.c.obj 2025-07-17T07:46:38.3261796Z [5713/7682] 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-07-17T07:46:38.3646313Z [5714/7682] 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-07-17T07:46:38.3846815Z [5715/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-goi-avx-u4.c.obj 2025-07-17T07:46:38.3898995Z [5716/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8-gemm-gio-avx-u8.c.obj 2025-07-17T07:46:38.4017241Z [5717/7682] 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-07-17T07:46:38.4073357Z [5718/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x8s4-gemm-goi-avx-u4.c.obj 2025-07-17T07:46:38.4325091Z [5719/7682] 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-07-17T07:46:38.4375491Z [5720/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx-u1.c.obj 2025-07-17T07:46:38.4868237Z [5721/7682] 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-07-17T07:46:38.4969963Z [5722/7682] 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-07-17T07:46:38.5016725Z [5723/7682] 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-07-17T07:46:38.5070867Z [5724/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u1.c.obj 2025-07-17T07:46:38.5471602Z [5725/7682] 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-07-17T07:46:38.5531555Z [5726/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx-u8.c.obj 2025-07-17T07:46:38.5710291Z [5727/7682] 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-07-17T07:46:38.5962325Z [5728/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-mov-avx.c.obj 2025-07-17T07:46:38.6209624Z [5729/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-mov-avx.c.obj 2025-07-17T07:46:38.6268301Z [5730/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-reuse-switch-avx.c.obj 2025-07-17T07:46:38.6423514Z [5731/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-multi-avx.c.obj 2025-07-17T07:46:38.6478710Z [5732/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-transposec\gen\x32-transposec-8x8-multi-switch-avx.c.obj 2025-07-17T07:46:38.6528384Z [5733/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-mov-avx.c.obj 2025-07-17T07:46:38.6807285Z [5734/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-multi-switch-avx.c.obj 2025-07-17T07:46:38.7102793Z [5735/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-mov-avx.c.obj 2025-07-17T07:46:38.7259738Z [5736/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x64-transposec\gen\x64-transposec-4x4-reuse-switch-avx.c.obj 2025-07-17T07:46:38.7312965Z [5737/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-f16c-u8.c.obj 2025-07-17T07:46:38.7573797Z [5738/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c16.c.obj 2025-07-17T07:46:38.7588872Z [5739/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c64.c.obj 2025-07-17T07:46:38.7863187Z [5740/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-f16c-c128.c.obj 2025-07-17T07:46:38.8070145Z [5741/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u8.c.obj 2025-07-17T07:46:38.8137525Z [5742/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u16-acc2.c.obj 2025-07-17T07:46:38.8334883Z [5743/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u32-acc2.c.obj 2025-07-17T07:46:38.8386902Z [5744/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-f16c-u24-acc3.c.obj 2025-07-17T07:46:38.8681102Z [5745/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vadd-f16c-u8.c.obj 2025-07-17T07:46:38.9020408Z [5746/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdiv-f16c-u16.c.obj 2025-07-17T07:46:38.9277995Z [5747/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vdivc-f16c-u16.c.obj 2025-07-17T07:46:38.9297795Z [5748/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmax-f16c-u8.c.obj 2025-07-17T07:46:38.9432971Z [5749/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vaddc-f16c-u8.c.obj 2025-07-17T07:46:38.9492180Z [5750/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmaxc-f16c-u8.c.obj 2025-07-17T07:46:38.9553296Z [5751/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmin-f16c-u8.c.obj 2025-07-17T07:46:38.9839119Z [5752/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vminc-f16c-u8.c.obj 2025-07-17T07:46:39.0181541Z [5753/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmul-f16c-u8.c.obj 2025-07-17T07:46:39.0429206Z [5754/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vprelu-f16c-u8.c.obj 2025-07-17T07:46:39.0478793Z [5755/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vmulc-f16c-u8.c.obj 2025-07-17T07:46:39.0563255Z [5756/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vpreluc-f16c-u8.c.obj 2025-07-17T07:46:39.0620423Z [5757/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrdivc-f16c-u16.c.obj 2025-07-17T07:46:39.0715810Z [5758/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrpreluc-f16c-u8.c.obj 2025-07-17T07:46:39.1128989Z [5759/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vrsubc-f16c-u8.c.obj 2025-07-17T07:46:39.1387175Z [5760/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiff-f16c-u8.c.obj 2025-07-17T07:46:39.1514948Z [5761/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsqrdiffc-f16c-u8.c.obj 2025-07-17T07:46:39.1652410Z [5762/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsub-f16c-u8.c.obj 2025-07-17T07:46:39.1828982Z [5763/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vbinary\gen\f16-vsubc-f16c-u8.c.obj 2025-07-17T07:46:39.1934692Z [5764/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vclamp\gen\f16-vclamp-f16c-u8.c.obj 2025-07-17T07:46:39.1951320Z [5765/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vhswish\gen\f16-vhswish-f16c-u8.c.obj 2025-07-17T07:46:39.2202717Z [5766/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vlrelu\gen\f16-vlrelu-f16c-u8.c.obj 2025-07-17T07:46:39.2514858Z [5767/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndd-f16c-u8.c.obj 2025-07-17T07:46:39.2688398Z [5768/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndne-f16c-u8.c.obj 2025-07-17T07:46:39.2755575Z [5769/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndu-f16c-u8.c.obj 2025-07-17T07:46:39.3053745Z [5770/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrnd\gen\f16-vrndz-f16c-u8.c.obj 2025-07-17T07:46:39.3140248Z [5771/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u16.c.obj 2025-07-17T07:46:39.3193346Z [5772/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vrsqrt\gen\f16-vrsqrt-f16c-rsqrt-u8.c.obj 2025-07-17T07:46:39.3344845Z [5773/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u8.c.obj 2025-07-17T07:46:39.3965589Z [5774/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-rsqrt-u16.c.obj 2025-07-17T07:46:39.4174887Z [5775/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u8.c.obj 2025-07-17T07:46:39.4186886Z [5776/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u16.c.obj 2025-07-17T07:46:39.4251088Z [5777/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-f16c-sqrt-u32.c.obj 2025-07-17T07:46:39.5400787Z [5778/7682] 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-07-17T07:46:39.5475085Z [5779/7682] 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-07-17T07:46:39.5543630Z [5780/7682] 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-07-17T07:46:39.5555822Z [5781/7682] 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-07-17T07:46:39.5610364Z [5782/7682] 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-07-17T07:46:39.5680206Z [5783/7682] 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-07-17T07:46:39.5703797Z [5784/7682] 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-07-17T07:46:39.6646177Z [5785/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u8.c.obj 2025-07-17T07:46:39.6779986Z [5786/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u32.c.obj 2025-07-17T07:46:39.6898544Z [5787/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.6950441Z [5788/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-f16c-u8.c.obj 2025-07-17T07:46:39.6962597Z [5789/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u16.c.obj 2025-07-17T07:46:39.7388181Z [5790/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-f16c-polynomial-p19h9t2-u24.c.obj 2025-07-17T07:46:39.7521440Z [5791/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vunary\gen\f16-vsqr-f16c-u8.c.obj 2025-07-17T07:46:39.7809593Z [5792/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p8c-minmax-fma3.c.obj 2025-07-17T07:46:39.8148207Z [5793/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3.c.obj 2025-07-17T07:46:39.8160513Z [5794/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.8232452Z [5795/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.8338898Z [5796/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-3p32c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.8731588Z [5797/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.8797145Z [5798/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p8c-minmax-fma3.c.obj 2025-07-17T07:46:39.9050977Z [5799/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.9331420Z [5800/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.9399960Z [5801/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l8c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:39.9463573Z [5802/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-4p32c-minmax-fma3.c.obj 2025-07-17T07:46:39.9617829Z [5803/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:39.9963227Z [5804/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.0035528Z [5805/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.0342298Z [5806/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.0725215Z [5807/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.0774831Z [5808/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.0809094Z [5809/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l8c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.0867454Z [5810/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l16c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.1347711Z [5811/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.1414756Z [5812/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-6f6m7l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.1573090Z [5813/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.1927501Z [5814/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l8c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.2099775Z [5815/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.2151128Z [5816/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.2606986Z [5817/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l32c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.2690050Z [5818/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.2711606Z [5819/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p8c-minmax-fma3.c.obj 2025-07-17T07:46:40.2850029Z [5820/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-8f8m9l16c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.3112786Z [5821/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.3323445Z [5822/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3.c.obj 2025-07-17T07:46:40.3379969Z [5823/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-9p32c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.3909297Z [5824/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.3922091Z [5825/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p16c-minmax-fma3.c.obj 2025-07-17T07:46:40.3982964Z [5826/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p8c-minmax-fma3.c.obj 2025-07-17T07:46:40.4128415Z [5827/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.4318125Z [5828/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-dwconv\gen\f16-dwconv-25p32c-minmax-fma3.c.obj 2025-07-17T07:46:40.4731545Z [5829/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vmulcaddc\gen\f16-vmulcaddc-c16-minmax-fma3-2x.c.obj 2025-07-17T07:46:40.4744579Z [5830/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-ibilinear\gen\f16-ibilinear-fma3-c16.c.obj 2025-07-17T07:46:40.4978353Z [5831/7682] 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-07-17T07:46:40.5064139Z [5832/7682] 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-07-17T07:46:40.5192154Z [5833/7682] 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-07-17T07:46:40.5598269Z [5834/7682] 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-07-17T07:46:40.5817017Z [5835/7682] 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-07-17T07:46:40.5887499Z [5836/7682] 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-07-17T07:46:40.5940397Z [5837/7682] 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-07-17T07:46:40.6167084Z [5838/7682] 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-07-17T07:46:40.6344847Z [5839/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u8.c.obj 2025-07-17T07:46:40.6423965Z [5840/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u16.c.obj 2025-07-17T07:46:40.6770603Z [5841/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vtanh\gen\f16-vtanh-fma3-polynomial-p19h9t2-u24.c.obj 2025-07-17T07:46:40.7047191Z [5842/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.7131355Z [5843/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p8c-minmax-fma3.c.obj 2025-07-17T07:46:40.7188078Z [5844/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.7451012Z [5845/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.7647025Z [5846/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.7700176Z [5847/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p8c-minmax-fma3.c.obj 2025-07-17T07:46:40.8073797Z [5848/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.8411939Z [5849/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.8546010Z [5850/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.8841426Z [5851/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.8896722Z [5852/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.8912992Z [5853/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:40.8966977Z [5854/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l8c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.9444471Z [5855/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:40.9638763Z [5856/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l16c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:41.0162549Z [5857/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3-acc2.c.obj 2025-07-17T07:46:41.0293534Z [5858/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3.c.obj 2025-07-17T07:46:41.0372345Z [5859/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-7f6m6l32c8s4r-minmax-fma3.c.obj 2025-07-17T07:46:41.0473819Z [5860/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p8c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:41.0540720Z [5861/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:41.0554649Z [5862/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p8c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:41.0884777Z [5863/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3-acc2.c.obj 2025-07-17T07:46:41.1431528Z [5864/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-fma3.c.obj 2025-07-17T07:46:41.1673715Z [5865/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.1815360Z [5866/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.1859394Z [5867/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.1938759Z [5868/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.1995421Z [5869/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.2272653Z [5870/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.2829140Z [5871/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.3230312Z [5872/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.3252661Z [5873/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.3358588Z [5874/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.3422076Z [5875/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.3502692Z [5876/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.3861466Z [5877/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.4075729Z [5878/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.4627381Z [5879/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.4676713Z [5880/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.4720501Z [5881/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-3x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.4783915Z [5882/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.4833293Z [5883/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.5187494Z [5884/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.5523303Z [5885/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.6064711Z [5886/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.6116194Z [5887/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.6128388Z [5888/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.6139477Z [5889/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.6230002Z [5890/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.6753897Z [5891/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.7099561Z [5892/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.7221520Z [5893/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.7306962Z [5894/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.7317741Z [5895/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.7444017Z [5896/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-3x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.8033326Z [5897/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.8424246Z [5898/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.8502432Z [5899/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast-prfm.c.obj 2025-07-17T07:46:41.8575131Z [5900/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.8625937Z [5901/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.9167367Z [5902/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.9530048Z [5903/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.9592949Z [5904/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16s4-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.9645980Z [5905/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.9756709Z [5906/7682] 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-07-17T07:46:41.9821084Z [5907/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x8-minmax-fma3-broadcast.c.obj 2025-07-17T07:46:41.9878627Z [5908/7682] 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-07-17T07:46:42.0467313Z [5909/7682] 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-07-17T07:46:42.1252354Z [5910/7682] 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-07-17T07:46:42.1273944Z [5911/7682] 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-07-17T07:46:42.1323396Z [5912/7682] 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-07-17T07:46:42.1334952Z [5913/7682] 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-07-17T07:46:42.1400918Z [5914/7682] 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-07-17T07:46:42.1412477Z [5915/7682] 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-07-17T07:46:42.1791430Z [5916/7682] 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-07-17T07:46:42.2490826Z [5917/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u32.c.obj 2025-07-17T07:46:42.2546167Z [5918/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u8.c.obj 2025-07-17T07:46:42.2645548Z [5919/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-fma3-u64.c.obj 2025-07-17T07:46:42.2694723Z [5920/7682] 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-07-17T07:46:42.2707049Z [5921/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-fma3-u8.c.obj 2025-07-17T07:46:42.2932513Z [5922/7682] 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-07-17T07:46:42.3001355Z [5923/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-fma3-rational-3-3-nr.c.obj 2025-07-17T07:46:42.3710948Z [5924/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u32.c.obj 2025-07-17T07:46:42.3811533Z [5925/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u8.c.obj 2025-07-17T07:46:42.3892417Z [5926/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-fma3-rsqrt-u32.c.obj 2025-07-17T07:46:42.3950092Z [5927/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-fma3-rsqrt-u8.c.obj 2025-07-17T07:46:42.4013419Z [5928/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-fma3-rational-9-8-nr.c.obj 2025-07-17T07:46:42.4526533Z [5929/7682] 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-07-17T07:46:42.4586745Z [5930/7682] 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-07-17T07:46:42.5094295Z [5931/7682] 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-07-17T07:46:42.5205486Z [5932/7682] 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-07-17T07:46:42.5297170Z [5933/7682] 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-07-17T07:46:42.5355535Z [5934/7682] 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-07-17T07:46:42.5428914Z [5935/7682] 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-07-17T07:46:42.5747919Z [5936/7682] 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-07-17T07:46:42.5932884Z [5937/7682] 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-07-17T07:46:42.6279806Z [5938/7682] 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-07-17T07:46:42.6523107Z [5939/7682] 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-07-17T07:46:42.6536090Z [5940/7682] 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-07-17T07:46:42.6590739Z [5941/7682] 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-07-17T07:46:42.6663347Z [5942/7682] 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-07-17T07:46:42.7170131Z [5943/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.7312173Z [5944/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.7923955Z [5945/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.7977016Z [5946/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.8022796Z [5947/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.8126403Z [5948/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.8175501Z [5949/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.8674823Z [5950/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.8740553Z [5951/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-gemm\gen\f16-gemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.9161465Z [5952/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.9207084Z [5953/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-3x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.9444805Z [5954/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-1x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.9457863Z [5955/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:42.9522199Z [5956/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-4x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:43.0007075Z [5957/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:43.0083720Z [5958/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-5x16-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:43.0387216Z [5959/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-6x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:43.0512925Z [5960/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16-acc2.c.obj 2025-07-17T07:46:43.0561067Z [5961/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u16.c.obj 2025-07-17T07:46:43.0635052Z [5962/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc2.c.obj 2025-07-17T07:46:43.1021886Z [5963/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u32-acc4.c.obj 2025-07-17T07:46:43.1101952Z [5964/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc2.c.obj 2025-07-17T07:46:43.1182063Z [5965/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-igemm\gen\f16-igemm-7x8-minmax-avx2-broadcast.c.obj 2025-07-17T07:46:43.1423839Z [5966/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40-acc5.c.obj 2025-07-17T07:46:43.1645233Z [5967/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u40.c.obj 2025-07-17T07:46:43.1707980Z [5968/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc2.c.obj 2025-07-17T07:46:43.1848513Z [5969/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48-acc3.c.obj 2025-07-17T07:46:43.2088283Z [5970/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u48.c.obj 2025-07-17T07:46:43.2172099Z [5971/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc4.c.obj 2025-07-17T07:46:43.2336119Z [5972/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64-acc2.c.obj 2025-07-17T07:46:43.2484711Z [5973/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u64.c.obj 2025-07-17T07:46:43.2731869Z [5974/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72.c.obj 2025-07-17T07:46:43.2751869Z [5975/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u72-acc3.c.obj 2025-07-17T07:46:43.2999987Z [5976/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc2.c.obj 2025-07-17T07:46:43.3086583Z [5977/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80-acc5.c.obj 2025-07-17T07:46:43.3493136Z [5978/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u80.c.obj 2025-07-17T07:46:43.3506090Z [5979/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc3.c.obj 2025-07-17T07:46:43.3691198Z [5980/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc6.c.obj 2025-07-17T07:46:43.3746884Z [5981/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96.c.obj 2025-07-17T07:46:43.3762011Z [5982/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-raddstoreexpminusmax\gen\f16-raddstoreexpminusmax-avx2-rr1-p2-u96-acc2.c.obj 2025-07-17T07:46:43.4127368Z [5983/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-velu\gen\f16-velu-avx2-rr1-p3-u8.c.obj 2025-07-17T07:46:43.4236100Z [5984/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u8.c.obj 2025-07-17T07:46:43.4772680Z [5985/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u16.c.obj 2025-07-17T07:46:43.4820589Z [5986/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u24.c.obj 2025-07-17T07:46:43.4952670Z [5987/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u16.c.obj 2025-07-17T07:46:43.5008844Z [5988/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-div-u32.c.obj 2025-07-17T07:46:43.5068466Z [5989/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u8.c.obj 2025-07-17T07:46:43.5345590Z [5990/7682] 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-07-17T07:46:43.5406210Z [5991/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsigmoid\gen\f16-vsigmoid-avx2-rr1-p2-rcp-u24.c.obj 2025-07-17T07:46:43.5993942Z [5992/7682] 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-07-17T07:46:43.6088828Z [5993/7682] 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-07-17T07:46:43.6143496Z [5994/7682] 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-07-17T07:46:43.6211923Z [5995/7682] 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-07-17T07:46:43.6462654Z [5996/7682] 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-07-17T07:46:43.6515711Z [5997/7682] 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-07-17T07:46:43.6531028Z [5998/7682] 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-07-17T07:46:43.7489330Z [5999/7682] 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-07-17T07:46:43.7582556Z [6000/7682] 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-07-17T07:46:43.7636397Z [6001/7682] 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-07-17T07:46:43.7772826Z [6002/7682] 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-07-17T07:46:43.7837750Z [6003/7682] 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-07-17T07:46:43.7937601Z [6004/7682] 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-07-17T07:46:43.8077236Z [6005/7682] 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-07-17T07:46:43.8948707Z [6006/7682] 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-07-17T07:46:43.8994371Z [6007/7682] 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-07-17T07:46:43.9092392Z [6008/7682] 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-07-17T07:46:43.9193333Z [6009/7682] 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-07-17T07:46:43.9315616Z [6010/7682] 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-07-17T07:46:43.9432662Z [6011/7682] 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-07-17T07:46:43.9612034Z [6012/7682] 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-07-17T07:46:44.0310126Z [6013/7682] 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-07-17T07:46:44.0459511Z [6014/7682] 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-07-17T07:46:44.0471629Z [6015/7682] 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-07-17T07:46:44.0590683Z [6016/7682] 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-07-17T07:46:44.0956063Z [6017/7682] 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-07-17T07:46:44.1006079Z [6018/7682] 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-07-17T07:46:44.1070212Z [6019/7682] 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-07-17T07:46:44.1732485Z [6020/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u16.c.obj 2025-07-17T07:46:44.1811323Z [6021/7682] 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-07-17T07:46:44.1889168Z [6022/7682] 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-07-17T07:46:44.1996587Z [6023/7682] 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-07-17T07:46:44.2089471Z [6024/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u32.c.obj 2025-07-17T07:46:44.2164398Z [6025/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx2-u48.c.obj 2025-07-17T07:46:44.2282280Z [6026/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u16.c.obj 2025-07-17T07:46:44.2785202Z [6027/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc2.c.obj 2025-07-17T07:46:44.2845459Z [6028/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u32.c.obj 2025-07-17T07:46:44.2913175Z [6029/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32-acc4.c.obj 2025-07-17T07:46:44.2971493Z [6030/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx2-u48.c.obj 2025-07-17T07:46:44.3033477Z [6031/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u32.c.obj 2025-07-17T07:46:44.3134726Z [6032/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc2.c.obj 2025-07-17T07:46:44.3418678Z [6033/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64-acc4.c.obj 2025-07-17T07:46:44.3631822Z [6034/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u64.c.obj 2025-07-17T07:46:44.3673529Z [6035/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72-acc3.c.obj 2025-07-17T07:46:44.3866984Z [6036/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc5.c.obj 2025-07-17T07:46:44.3996323Z [6037/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u72.c.obj 2025-07-17T07:46:44.4221540Z [6038/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80-acc2.c.obj 2025-07-17T07:46:44.4307568Z [6039/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u80.c.obj 2025-07-17T07:46:44.4423640Z [6040/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc2.c.obj 2025-07-17T07:46:44.4525255Z [6041/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc3.c.obj 2025-07-17T07:46:44.5743608Z [6042/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96-acc6.c.obj 2025-07-17T07:46:44.5763983Z [6043/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx2-p5-u96.c.obj 2025-07-17T07:46:44.6008598Z [6044/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc2.c.obj 2025-07-17T07:46:44.6054773Z [6045/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32-acc4.c.obj 2025-07-17T07:46:44.6309898Z [6046/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc2.c.obj 2025-07-17T07:46:44.6587809Z [6047/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72-acc3.c.obj 2025-07-17T07:46:44.6610124Z [6048/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u32.c.obj 2025-07-17T07:46:44.6750760Z [6049/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64-acc4.c.obj 2025-07-17T07:46:44.6795455Z [6050/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u64.c.obj 2025-07-17T07:46:44.7007813Z [6051/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc2.c.obj 2025-07-17T07:46:44.7073220Z [6052/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u72.c.obj 2025-07-17T07:46:44.7454710Z [6053/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80-acc5.c.obj 2025-07-17T07:46:44.7498007Z [6054/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc2.c.obj 2025-07-17T07:46:44.7657489Z [6055/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u80.c.obj 2025-07-17T07:46:44.7782791Z [6056/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc3.c.obj 2025-07-17T07:46:44.7841470Z [6057/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96-acc6.c.obj 2025-07-17T07:46:44.8435729Z [6058/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx2-p5-u96.c.obj 2025-07-17T07:46:44.9145130Z [6059/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u8.c.obj 2025-07-17T07:46:44.9302278Z [6060/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u16-acc2.c.obj 2025-07-17T07:46:44.9365587Z [6061/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc2.c.obj 2025-07-17T07:46:44.9499001Z [6062/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u8.c.obj 2025-07-17T07:46:44.9652742Z [6063/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr1-p5-u32-acc4.c.obj 2025-07-17T07:46:44.9863112Z [6064/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u32-acc4.c.obj 2025-07-17T07:46:45.0312470Z [6065/7682] 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-07-17T07:46:45.0457465Z [6066/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx2-rr2-p5-u16-acc2.c.obj 2025-07-17T07:46:45.0512913Z [6067/7682] 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-07-17T07:46:45.0641474Z [6068/7682] 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-07-17T07:46:45.0693839Z [6069/7682] 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-07-17T07:46:45.0843412Z [6070/7682] 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-07-17T07:46:45.1021096Z [6071/7682] 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-07-17T07:46:45.1784955Z [6072/7682] 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-07-17T07:46:45.1962778Z [6073/7682] 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-07-17T07:46:45.2169588Z [6074/7682] 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-07-17T07:46:45.2340509Z [6075/7682] 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-07-17T07:46:45.2394428Z [6076/7682] 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-07-17T07:46:45.2521166Z [6077/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u8.c.obj 2025-07-17T07:46:45.2577537Z [6078/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u16.c.obj 2025-07-17T07:46:45.2937886Z [6079/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u24.c.obj 2025-07-17T07:46:45.3089083Z [6080/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u8.c.obj 2025-07-17T07:46:45.3268167Z [6081/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u16.c.obj 2025-07-17T07:46:45.3434716Z [6082/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u24.c.obj 2025-07-17T07:46:45.3591222Z [6083/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx2-p5-u32.c.obj 2025-07-17T07:46:45.3687580Z [6084/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx2-rr1-p6-u32.c.obj 2025-07-17T07:46:45.3789388Z [6085/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u8.c.obj 2025-07-17T07:46:45.3947024Z [6086/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u16.c.obj 2025-07-17T07:46:45.3993340Z [6087/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u24.c.obj 2025-07-17T07:46:45.4236401Z [6088/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx2-p5-u32.c.obj 2025-07-17T07:46:45.4563382Z [6089/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u8.c.obj 2025-07-17T07:46:45.4859208Z [6090/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u24.c.obj 2025-07-17T07:46:45.4950225Z [6091/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-div-u32.c.obj 2025-07-17T07:46:45.5160113Z [6092/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u16.c.obj 2025-07-17T07:46:45.5217812Z [6093/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u8.c.obj 2025-07-17T07:46:45.5338786Z [6094/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u24.c.obj 2025-07-17T07:46:45.5426814Z [6095/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr1fma-u32.c.obj 2025-07-17T07:46:45.5608511Z [6096/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u8.c.obj 2025-07-17T07:46:45.6365690Z [6097/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u24.c.obj 2025-07-17T07:46:45.6686796Z [6098/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u32.c.obj 2025-07-17T07:46:45.6839948Z [6099/7682] 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-07-17T07:46:45.6981293Z [6100/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsigmoid\gen\f32-vsigmoid-avx2-rr1-p5-nr2fma-u16.c.obj 2025-07-17T07:46:45.7034407Z [6101/7682] 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-07-17T07:46:45.7813425Z [6102/7682] 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-07-17T07:46:45.8025585Z [6103/7682] 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-07-17T07:46:45.8139174Z [6104/7682] 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-07-17T07:46:45.8263059Z [6105/7682] 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-07-17T07:46:45.8318088Z [6106/7682] 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-07-17T07:46:45.9156685Z [6107/7682] 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-07-17T07:46:45.9170356Z [6108/7682] 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-07-17T07:46:45.9348288Z [6109/7682] 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-07-17T07:46:45.9516342Z [6110/7682] 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-07-17T07:46:45.9926231Z [6111/7682] 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-07-17T07:46:46.0145179Z [6112/7682] 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-07-17T07:46:46.0326061Z [6113/7682] 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-07-17T07:46:46.0491713Z [6114/7682] 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-07-17T07:46:46.1811203Z [6115/7682] 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-07-17T07:46:46.1890812Z [6116/7682] 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-07-17T07:46:46.2061683Z [6117/7682] 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-07-17T07:46:46.2773842Z [6118/7682] 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-07-17T07:46:46.2952413Z [6119/7682] 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-07-17T07:46:46.3112016Z [6120/7682] 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-07-17T07:46:46.3375133Z [6121/7682] 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-07-17T07:46:46.3823425Z [6122/7682] 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-07-17T07:46:49.3344990Z [6123/7682] 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-07-17T07:46:49.3526155Z [6124/7682] 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-07-17T07:46:49.3571682Z [6125/7682] 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-07-17T07:46:49.3719357Z [6126/7682] 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-07-17T07:46:49.3770617Z [6127/7682] 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-07-17T07:46:49.3948659Z [6128/7682] 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-07-17T07:46:49.4140482Z [6129/7682] 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-07-17T07:46:49.5103577Z [6130/7682] 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-07-17T07:46:49.5115515Z [6131/7682] 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-07-17T07:46:49.5166061Z [6132/7682] 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-07-17T07:46:49.5285749Z [6133/7682] 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-07-17T07:46:49.5497628Z [6134/7682] 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-07-17T07:46:49.5509751Z [6135/7682] 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-07-17T07:46:49.5690501Z [6136/7682] 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-07-17T07:46:49.6657925Z [6137/7682] 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-07-17T07:46:49.6706039Z [6138/7682] 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-07-17T07:46:49.6721190Z [6139/7682] 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-07-17T07:46:49.6903593Z [6140/7682] 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-07-17T07:46:49.7164549Z [6141/7682] 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-07-17T07:46:49.7208432Z [6142/7682] 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-07-17T07:46:49.8712070Z [6143/7682] 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-07-17T07:46:49.8765778Z [6144/7682] 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-07-17T07:46:49.8868006Z [6145/7682] 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-07-17T07:46:49.9090253Z [6146/7682] 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-07-17T07:46:49.9098188Z [6147/7682] 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-07-17T07:46:49.9451606Z [6148/7682] 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-07-17T07:46:49.9583076Z [6149/7682] 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-07-17T07:46:50.0033180Z [6150/7682] 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-07-17T07:46:50.0515279Z [6151/7682] 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-07-17T07:46:50.0664056Z [6152/7682] 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-07-17T07:46:50.0751897Z [6153/7682] 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-07-17T07:46:50.0905467Z [6154/7682] 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-07-17T07:46:50.1003872Z [6155/7682] 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-07-17T07:46:50.1081262Z [6156/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.1254885Z [6157/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.1920607Z [6158/7682] 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-07-17T07:46:50.1937417Z [6159/7682] 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-07-17T07:46:50.2220914Z [6160/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.2234379Z [6161/7682] 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-07-17T07:46:50.2284200Z [6162/7682] 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-07-17T07:46:50.2343718Z [6163/7682] 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-07-17T07:46:50.2491184Z [6164/7682] 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-07-17T07:46:50.3251802Z [6165/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.3493083Z [6166/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.3608922Z [6167/7682] 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-07-17T07:46:50.3753457Z [6168/7682] 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-07-17T07:46:50.3766126Z [6169/7682] 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-07-17T07:46:50.3820750Z [6170/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.3964896Z [6171/7682] 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-07-17T07:46:50.4798396Z [6172/7682] 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-07-17T07:46:50.4852417Z [6173/7682] 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-07-17T07:46:50.4918442Z [6174/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.5218660Z [6175/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.5231026Z [6176/7682] 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-07-17T07:46:50.5664145Z [6177/7682] 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-07-17T07:46:50.5800411Z [6178/7682] 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-07-17T07:46:50.6055862Z [6179/7682] 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-07-17T07:46:50.6111112Z [6180/7682] 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-07-17T07:46:50.6127191Z [6181/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.6441239Z [6182/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.6756415Z [6183/7682] 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-07-17T07:46:50.6956235Z [6184/7682] 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-07-17T07:46:50.7006689Z [6185/7682] 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-07-17T07:46:50.7202827Z [6186/7682] 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-07-17T07:46:50.7293807Z [6187/7682] 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-07-17T07:46:50.7363906Z [6188/7682] 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-07-17T07:46:50.7841477Z [6189/7682] 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-07-17T07:46:50.8072731Z [6190/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.8185794Z [6191/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:50.8571860Z [6192/7682] 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-07-17T07:46:50.8913392Z [6193/7682] 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-07-17T07:46:50.8935847Z [6194/7682] 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-07-17T07:46:50.9229522Z [6195/7682] 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-07-17T07:46:50.9279895Z [6196/7682] 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-07-17T07:46:50.9608229Z [6197/7682] 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-07-17T07:46:50.9942430Z [6198/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u24.c.obj 2025-07-17T07:46:50.9999095Z [6199/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:51.0087127Z [6200/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u32.c.obj 2025-07-17T07:46:51.0307048Z [6201/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u8.c.obj 2025-07-17T07:46:51.0362303Z [6202/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f16-vcvt\gen\qs8-f16-vcvt-avx2-u64.c.obj 2025-07-17T07:46:51.0609379Z [6203/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u24.c.obj 2025-07-17T07:46:51.0670302Z [6204/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx2-u32.c.obj 2025-07-17T07:46:51.1262152Z [6205/7682] 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-07-17T07:46:51.1380905Z [6206/7682] 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-07-17T07:46:51.1565555Z [6207/7682] 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-07-17T07:46:51.1628454Z [6208/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx2-madd.c.obj 2025-07-17T07:46:51.1812408Z [6209/7682] 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-07-17T07:46:51.1867937Z [6210/7682] 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-07-17T07:46:51.2111175Z [6211/7682] 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-07-17T07:46:51.2458463Z [6212/7682] 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-07-17T07:46:51.2830734Z [6213/7682] 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-07-17T07:46:51.2879496Z [6214/7682] 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-07-17T07:46:51.2938391Z [6215/7682] 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-07-17T07:46:51.3055674Z [6216/7682] 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-07-17T07:46:51.3067796Z [6217/7682] 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-07-17T07:46:51.3377508Z [6218/7682] 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-07-17T07:46:51.3623236Z [6219/7682] 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-07-17T07:46:51.4051116Z [6220/7682] 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-07-17T07:46:51.4247114Z [6221/7682] 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-07-17T07:46:51.4343498Z [6222/7682] 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-07-17T07:46:51.4406513Z [6223/7682] 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-07-17T07:46:51.4609969Z [6224/7682] 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-07-17T07:46:51.4775629Z [6225/7682] 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-07-17T07:46:51.4979781Z [6226/7682] 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-07-17T07:46:51.5496661Z [6227/7682] 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-07-17T07:46:51.5649538Z [6228/7682] 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-07-17T07:46:51.5854662Z [6229/7682] 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-07-17T07:46:51.5970119Z [6230/7682] 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-07-17T07:46:51.6082070Z [6231/7682] 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-07-17T07:46:51.6134754Z [6232/7682] 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-07-17T07:46:51.6326650Z [6233/7682] 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-07-17T07:46:51.6761714Z [6234/7682] 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-07-17T07:46:51.6873514Z [6235/7682] 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-07-17T07:46:51.7259457Z [6236/7682] 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-07-17T07:46:51.7333653Z [6237/7682] 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-07-17T07:46:51.7345941Z [6238/7682] 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-07-17T07:46:51.7564789Z [6239/7682] 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-07-17T07:46:51.7876512Z [6240/7682] 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-07-17T07:46:51.8153698Z [6241/7682] 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-07-17T07:46:51.8211622Z [6242/7682] 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-07-17T07:46:51.8429118Z [6243/7682] 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-07-17T07:46:51.8559775Z [6244/7682] 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-07-17T07:46:51.8819289Z [6245/7682] 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-07-17T07:46:51.9728349Z [6246/7682] 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-07-17T07:46:51.9977738Z [6247/7682] 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-07-17T07:46:51.9993528Z [6248/7682] 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-07-17T07:46:52.0009144Z [6249/7682] 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-07-17T07:46:52.0100261Z [6250/7682] 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-07-17T07:46:52.0863904Z [6251/7682] 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-07-17T07:46:52.0879323Z [6252/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx2-c32.c.obj 2025-07-17T07:46:52.0974620Z [6253/7682] 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-07-17T07:46:52.1056369Z [6254/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc2.c.obj 2025-07-17T07:46:52.1234525Z [6255/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u32.c.obj 2025-07-17T07:46:52.1293902Z [6256/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx2-u128-acc4.c.obj 2025-07-17T07:46:52.1317865Z [6257/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-17T07:46:52.2139429Z [6258/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u24.c.obj 2025-07-17T07:46:52.2224734Z [6259/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-17T07:46:52.2237483Z [6260/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u24.c.obj 2025-07-17T07:46:52.2327692Z [6261/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u16.c.obj 2025-07-17T07:46:52.2380300Z [6262/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vcvt\gen\qs8-vcvt-avx2-u64.c.obj 2025-07-17T07:46:52.2396948Z [6263/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx2-mul32-ld64-u32.c.obj 2025-07-17T07:46:52.2455515Z [6264/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx2-mul32-ld64-u32.c.obj 2025-07-17T07:46:52.3279879Z [6265/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u16.c.obj 2025-07-17T07:46:52.3499318Z [6266/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vlrelu\gen\qs8-vlrelu-avx2-u64.c.obj 2025-07-17T07:46:52.3560794Z [6267/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.3659169Z [6268/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.3679777Z [6269/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.3750636Z [6270/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.3814437Z [6271/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.4527849Z [6272/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.4842509Z [6273/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.4916382Z [6274/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.4929768Z [6275/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.5027568Z [6276/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.5040383Z [6277/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.5098172Z [6278/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p8c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.6002175Z [6279/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p32c-minmax-fp32-avx2-mul32.c.obj 2025-07-17T07:46:52.6055025Z [6280/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u32.c.obj 2025-07-17T07:46:52.6146906Z [6281/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u24.c.obj 2025-07-17T07:46:52.6237342Z [6282/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx2-u8.c.obj 2025-07-17T07:46:52.6291358Z [6283/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-17T07:46:52.6426266Z [6284/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-17T07:46:52.6505707Z [6285/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-2x8c8-minmax-fp32-avx2.c.obj 2025-07-17T07:46:52.7092353Z [6286/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u32.c.obj 2025-07-17T07:46:52.7275128Z [6287/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc2.c.obj 2025-07-17T07:46:52.7363090Z [6288/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-rsum\gen\qu8-rsum-avx2-u128-acc4.c.obj 2025-07-17T07:46:52.7406510Z [6289/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-4x8c8-minmax-fp32-avx2.c.obj 2025-07-17T07:46:52.7552955Z [6290/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u16.c.obj 2025-07-17T07:46:52.7701221Z [6291/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-17T07:46:52.7872390Z [6292/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx2-mul32-ld64-u8.c.obj 2025-07-17T07:46:52.8235650Z [6293/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vcvt\gen\qu8-vcvt-avx2-u64.c.obj 2025-07-17T07:46:52.8442336Z [6294/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u32.c.obj 2025-07-17T07:46:52.8497511Z [6295/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u16.c.obj 2025-07-17T07:46:52.8585015Z [6296/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u64.c.obj 2025-07-17T07:46:52.8603242Z [6297/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vlrelu\gen\qu8-vlrelu-avx2-u64.c.obj 2025-07-17T07:46:52.8651089Z [6298/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx2-u96.c.obj 2025-07-17T07:46:52.9130860Z [6299/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2-prfm.c.obj 2025-07-17T07:46:52.9528643Z [6300/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2.c.obj 2025-07-17T07:46:52.9576092Z [6301/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx2-prfm.c.obj 2025-07-17T07:46:52.9641610Z [6302/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-transposec\gen\x8-transposec-32x32-reuse-mov-avx2.c.obj 2025-07-17T07:46:52.9653634Z [6303/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx2.c.obj 2025-07-17T07:46:52.9709574Z [6304/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x8-gemm-goi-avx2-u16.c.obj 2025-07-17T07:46:53.0308224Z [6305/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-packw\gen\x16-packw-x16-gemm-goi-avx2-u16.c.obj 2025-07-17T07:46:53.0584167Z [6306/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x16-transposec\gen\x16-transposec-16x16-reuse-mov-avx2.c.obj 2025-07-17T07:46:53.0653430Z [6307/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u8.c.obj 2025-07-17T07:46:53.0715727Z [6308/7682] 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-07-17T07:46:53.0783368Z [6309/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u32-acc4.c.obj 2025-07-17T07:46:53.0832098Z [6310/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx256skx-rr2-p5-u16-acc2.c.obj 2025-07-17T07:46:53.1082033Z [6311/7682] 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-07-17T07:46:53.1632940Z [6312/7682] 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-07-17T07:46:53.2013971Z [6313/7682] 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-07-17T07:46:53.2210241Z [6314/7682] 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-07-17T07:46:53.2402786Z [6315/7682] 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-07-17T07:46:53.2414641Z [6316/7682] 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-07-17T07:46:53.2470499Z [6317/7682] 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-07-17T07:46:53.2486074Z [6318/7682] 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-07-17T07:46:53.3175363Z [6319/7682] 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-07-17T07:46:53.3695439Z [6320/7682] 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-07-17T07:46:53.3768056Z [6321/7682] 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-07-17T07:46:53.3817379Z [6322/7682] 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-07-17T07:46:53.3836909Z [6323/7682] 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-07-17T07:46:53.3970378Z [6324/7682] 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-07-17T07:46:53.4018956Z [6325/7682] 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-07-17T07:46:53.4806625Z [6326/7682] 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-07-17T07:46:53.5565608Z [6327/7682] 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-07-17T07:46:53.5579570Z [6328/7682] 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-07-17T07:46:53.5990500Z [6329/7682] 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-07-17T07:46:53.6094205Z [6330/7682] 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-07-17T07:46:53.6147931Z [6331/7682] 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-07-17T07:46:53.6277365Z [6332/7682] 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-07-17T07:46:53.6729294Z [6333/7682] 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-07-17T07:46:53.6928385Z [6334/7682] 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-07-17T07:46:53.7383889Z [6335/7682] 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-07-17T07:46:53.7672881Z [6336/7682] 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-07-17T07:46:53.7691664Z [6337/7682] 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-07-17T07:46:53.7751596Z [6338/7682] 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-07-17T07:46:53.7842496Z [6339/7682] 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-07-17T07:46:53.8042117Z [6340/7682] 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-07-17T07:46:53.8253666Z [6341/7682] 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-07-17T07:46:53.8896620Z [6342/7682] 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-07-17T07:46:53.9036774Z [6343/7682] 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-07-17T07:46:53.9090458Z [6344/7682] 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-07-17T07:46:53.9357591Z [6345/7682] 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-07-17T07:46:53.9526073Z [6346/7682] 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-07-17T07:46:53.9676405Z [6347/7682] 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-07-17T07:46:53.9689531Z [6348/7682] 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-07-17T07:46:54.0147670Z [6349/7682] 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-07-17T07:46:54.0643438Z [6350/7682] 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-07-17T07:46:54.0693675Z [6351/7682] 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-07-17T07:46:54.0840890Z [6352/7682] 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-07-17T07:46:54.1307568Z [6353/7682] 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-07-17T07:46:54.1461388Z [6354/7682] 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-07-17T07:46:54.2236494Z [6355/7682] 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-07-17T07:46:54.2282195Z [6356/7682] 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-07-17T07:46:54.2888736Z [6357/7682] 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-07-17T07:46:54.3074784Z [6358/7682] 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-07-17T07:46:54.3122386Z [6359/7682] 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-07-17T07:46:54.3670224Z [6360/7682] 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-07-17T07:46:54.3682725Z [6361/7682] 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-07-17T07:46:54.3764995Z [6362/7682] 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-07-17T07:46:54.3823989Z [6363/7682] 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-07-17T07:46:54.4407412Z [6364/7682] 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-07-17T07:46:54.4649286Z [6365/7682] 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-07-17T07:46:54.4747692Z [6366/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc4.c.obj 2025-07-17T07:46:54.4798447Z [6367/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u128-acc2.c.obj 2025-07-17T07:46:54.4810224Z [6368/7682] 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-07-17T07:46:54.4899327Z [6369/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256skx-u32.c.obj 2025-07-17T07:46:54.5086030Z [6370/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-17T07:46:54.5604037Z [6371/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x8c8-minmax-fp32-avx256skx.c.obj 2025-07-17T07:46:54.5799840Z [6372/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx.c.obj 2025-07-17T07:46:54.5849265Z [6373/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x8c8-gemm-goi-avx256skx-prfm.c.obj 2025-07-17T07:46:54.6137843Z [6374/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx.c.obj 2025-07-17T07:46:54.6255475Z [6375/7682] 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-07-17T07:46:54.6605294Z [6376/7682] 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-07-17T07:46:54.6730497Z [6377/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-packw\gen\x8-packw-x16c8-gemm-goi-avx256skx-prfm.c.obj 2025-07-17T07:46:54.6800113Z [6378/7682] 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-07-17T07:46:54.7692660Z [6379/7682] 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-07-17T07:46:54.7705814Z [6380/7682] 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-07-17T07:46:54.7717112Z [6381/7682] 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-07-17T07:46:54.7773643Z [6382/7682] 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-07-17T07:46:54.8121135Z [6383/7682] 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-07-17T07:46:54.8221843Z [6384/7682] 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-07-17T07:46:54.8237381Z [6385/7682] 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-07-17T07:46:54.9346938Z [6386/7682] 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-07-17T07:46:54.9359919Z [6387/7682] 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-07-17T07:46:54.9416098Z [6388/7682] 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-07-17T07:46:54.9431262Z [6389/7682] 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-07-17T07:46:54.9636168Z [6390/7682] 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-07-17T07:46:54.9965739Z [6391/7682] 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-07-17T07:46:55.0082755Z [6392/7682] 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-07-17T07:46:55.0798383Z [6393/7682] 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-07-17T07:46:55.0860571Z [6394/7682] 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-07-17T07:46:55.0968227Z [6395/7682] 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-07-17T07:46:55.1026594Z [6396/7682] 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-07-17T07:46:55.1038934Z [6397/7682] 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-07-17T07:46:55.1321715Z [6398/7682] 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-07-17T07:46:55.1833477Z [6399/7682] 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-07-17T07:46:55.2168673Z [6400/7682] 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-07-17T07:46:55.2283124Z [6401/7682] 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-07-17T07:46:55.2295519Z [6402/7682] 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-07-17T07:46:55.2466703Z [6403/7682] 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-07-17T07:46:55.2927688Z [6404/7682] 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-07-17T07:46:55.3096136Z [6405/7682] 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-07-17T07:46:55.3241603Z [6406/7682] 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-07-17T07:46:55.3554798Z [6407/7682] 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-07-17T07:46:55.3640046Z [6408/7682] 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-07-17T07:46:55.3692779Z [6409/7682] 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-07-17T07:46:55.3769973Z [6410/7682] 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-07-17T07:46:55.4357084Z [6411/7682] 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-07-17T07:46:55.4419249Z [6412/7682] 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-07-17T07:46:55.4712550Z [6413/7682] 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-07-17T07:46:55.4889386Z [6414/7682] 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-07-17T07:46:55.5047072Z [6415/7682] 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-07-17T07:46:55.5164398Z [6416/7682] 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-07-17T07:46:55.5553550Z [6417/7682] 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-07-17T07:46:55.5855452Z [6418/7682] 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-07-17T07:46:55.5925594Z [6419/7682] 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-07-17T07:46:55.6088493Z [6420/7682] 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-07-17T07:46:55.6235768Z [6421/7682] 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-07-17T07:46:55.6420352Z [6422/7682] 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-07-17T07:46:55.6432647Z [6423/7682] 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-07-17T07:46:55.7030515Z [6424/7682] 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-07-17T07:46:55.7259785Z [6425/7682] 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-07-17T07:46:55.7375307Z [6426/7682] 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-07-17T07:46:55.7586151Z [6427/7682] 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-07-17T07:46:55.7778917Z [6428/7682] 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-07-17T07:46:55.7854858Z [6429/7682] 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-07-17T07:46:55.7908588Z [6430/7682] 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-07-17T07:46:55.8421568Z [6431/7682] 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-07-17T07:46:55.8667993Z [6432/7682] 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-07-17T07:46:55.8792738Z [6433/7682] 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-07-17T07:46:55.9277809Z [6434/7682] 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-07-17T07:46:55.9338684Z [6435/7682] 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-07-17T07:46:55.9397544Z [6436/7682] 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-07-17T07:46:55.9732918Z [6437/7682] 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-07-17T07:46:56.0215514Z [6438/7682] 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-07-17T07:46:56.0227372Z [6439/7682] 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-07-17T07:46:56.0254234Z [6440/7682] 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-07-17T07:46:56.1094514Z [6441/7682] 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-07-17T07:46:56.1215654Z [6442/7682] 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-07-17T07:46:56.1403831Z [6443/7682] 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-07-17T07:46:56.1597156Z [6444/7682] 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-07-17T07:46:56.1609140Z [6445/7682] 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-07-17T07:46:56.1619850Z [6446/7682] 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-07-17T07:46:56.1664145Z [6447/7682] 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-07-17T07:46:56.2823888Z [6448/7682] 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-07-17T07:46:56.2908452Z [6449/7682] 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-07-17T07:46:56.2955558Z [6450/7682] 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-07-17T07:46:56.3001161Z [6451/7682] 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-07-17T07:46:56.3017376Z [6452/7682] 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-07-17T07:46:56.3076871Z [6453/7682] 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-07-17T07:46:56.3145743Z [6454/7682] 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-07-17T07:46:56.4175542Z [6455/7682] 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-07-17T07:46:56.4655014Z [6456/7682] 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-07-17T07:46:56.4712100Z [6457/7682] 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-07-17T07:46:56.4789148Z [6458/7682] 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-07-17T07:46:56.4800996Z [6459/7682] 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-07-17T07:46:56.4852939Z [6460/7682] 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-07-17T07:46:56.4867771Z [6461/7682] 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-07-17T07:46:56.5869000Z [6462/7682] 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-07-17T07:46:56.6018120Z [6463/7682] 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-07-17T07:46:56.6031528Z [6464/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x16c8-gemm-goi-avx256vnni.c.obj 2025-07-17T07:46:56.6233941Z [6465/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-packw\gen\qs8-packw-x8c8-gemm-goi-avx256vnni.c.obj 2025-07-17T07:46:56.6285346Z [6466/7682] 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-07-17T07:46:56.6296743Z [6467/7682] 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-07-17T07:46:56.7189155Z [6468/7682] 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-07-17T07:46:56.7466406Z [6469/7682] 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-07-17T07:46:56.7655180Z [6470/7682] 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-07-17T07:46:56.7919496Z [6471/7682] 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-07-17T07:46:56.7973900Z [6472/7682] 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-07-17T07:46:56.8077545Z [6473/7682] 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-07-17T07:46:56.8176100Z [6474/7682] 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-07-17T07:46:56.8989122Z [6475/7682] 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-07-17T07:46:56.9045215Z [6476/7682] 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-07-17T07:46:56.9103311Z [6477/7682] 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-07-17T07:46:56.9394209Z [6478/7682] 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-07-17T07:46:56.9438244Z [6479/7682] 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-07-17T07:46:56.9596720Z [6480/7682] 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-07-17T07:46:56.9642197Z [6481/7682] 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-07-17T07:46:57.0597932Z [6482/7682] 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-07-17T07:46:57.0656335Z [6483/7682] 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-07-17T07:46:57.0756769Z [6484/7682] 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-07-17T07:46:57.1345647Z [6485/7682] 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-07-17T07:46:57.1357472Z [6486/7682] 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-07-17T07:46:57.1368496Z [6487/7682] 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-07-17T07:46:57.1379517Z [6488/7682] 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-07-17T07:46:57.2260109Z [6489/7682] 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-07-17T07:46:57.2309654Z [6490/7682] 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-07-17T07:46:57.2400123Z [6491/7682] 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-07-17T07:46:57.2766923Z [6492/7682] 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-07-17T07:46:57.3380983Z [6493/7682] 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-07-17T07:46:57.3471437Z [6494/7682] 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-07-17T07:46:57.3715173Z [6495/7682] 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-07-17T07:46:57.3800960Z [6496/7682] 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-07-17T07:46:57.3814017Z [6497/7682] 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-07-17T07:46:57.4084753Z [6498/7682] 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-07-17T07:46:57.4195618Z [6499/7682] 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-07-17T07:46:57.4504721Z [6500/7682] 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-07-17T07:46:57.4661016Z [6501/7682] 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-07-17T07:46:57.4850611Z [6502/7682] 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-07-17T07:46:57.4942803Z [6503/7682] 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-07-17T07:46:57.5053013Z [6504/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u32.c.obj 2025-07-17T07:46:57.5251108Z [6505/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u64-acc2.c.obj 2025-07-17T07:46:57.5370299Z [6506/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc2.c.obj 2025-07-17T07:46:57.5860046Z [6507/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx256vnni-u128-acc4.c.obj 2025-07-17T07:46:57.5916244Z [6508/7682] 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-07-17T07:46:57.6304726Z [6509/7682] 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-07-17T07:46:57.6385151Z [6510/7682] 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-07-17T07:46:57.6514765Z [6511/7682] 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-07-17T07:46:57.7094714Z [6512/7682] 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-07-17T07:46:57.7159603Z [6513/7682] 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-07-17T07:46:57.7409852Z [6514/7682] 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-07-17T07:46:57.7426931Z [6515/7682] 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-07-17T07:46:57.7619383Z [6516/7682] 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-07-17T07:46:57.7670989Z [6517/7682] 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-07-17T07:46:57.7881410Z [6518/7682] 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-07-17T07:46:57.8510779Z [6519/7682] 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-07-17T07:46:57.8580061Z [6520/7682] 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-07-17T07:46:57.8777375Z [6521/7682] 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-07-17T07:46:57.8849140Z [6522/7682] 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-07-17T07:46:57.8997812Z [6523/7682] 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-07-17T07:46:57.9252480Z [6524/7682] 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-07-17T07:46:57.9341548Z [6525/7682] 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-07-17T07:46:57.9951089Z [6526/7682] 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-07-17T07:46:57.9963644Z [6527/7682] 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-07-17T07:46:58.0161579Z [6528/7682] 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-07-17T07:46:58.0298350Z [6529/7682] 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-07-17T07:46:58.0353269Z [6530/7682] 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-07-17T07:46:58.0596697Z [6531/7682] 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-07-17T07:46:58.0768637Z [6532/7682] 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-07-17T07:46:58.1320091Z [6533/7682] 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-07-17T07:46:58.1336441Z [6534/7682] 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-07-17T07:46:58.1624738Z [6535/7682] 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-07-17T07:46:58.1758471Z [6536/7682] 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-07-17T07:46:58.1825664Z [6537/7682] 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-07-17T07:46:58.1978487Z [6538/7682] 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-07-17T07:46:58.2075969Z [6539/7682] 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-07-17T07:46:58.2584817Z [6540/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.2641532Z [6541/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p16c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.2815469Z [6542/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-3p32c-minmax-avx512f.c.obj 2025-07-17T07:46:58.2955359Z [6543/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p16c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.3169184Z [6544/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.3227643Z [6545/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-4p32c-minmax-avx512f.c.obj 2025-07-17T07:46:58.3284000Z [6546/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.3880656Z [6547/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l32c16s1r-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.3932079Z [6548/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-5f5m5l16c16s1r-minmax-avx512f.c.obj 2025-07-17T07:46:58.4130276Z [6549/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p16c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.4322738Z [6550/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.4488074Z [6551/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.4538466Z [6552/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p16c-minmax-avx512f-acc2.c.obj 2025-07-17T07:46:58.4595811Z [6553/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-9p32c-minmax-avx512f.c.obj 2025-07-17T07:46:58.5343655Z [6554/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-dwconv\gen\f32-dwconv-25p32c-minmax-avx512f.c.obj 2025-07-17T07:46:58.5679663Z [6555/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.5781854Z [6556/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-1x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.5829079Z [6557/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.5841066Z [6558/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.5945919Z [6559/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-4x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.6352085Z [6560/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.6674673Z [6561/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.7106230Z [6562/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-5x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.7227995Z [6563/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.7270820Z [6564/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.7352545Z [6565/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-6x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.7430562Z [6566/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.7800310Z [6567/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-7x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.8047522Z [6568/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.8665874Z [6569/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.8678746Z [6570/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.8690168Z [6571/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-8x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.8761019Z [6572/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.9037502Z [6573/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-9x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.9606781Z [6574/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:58.9625941Z [6575/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.0044238Z [6576/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.0088511Z [6577/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-10x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.0145820Z [6578/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.0378983Z [6579/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.0738615Z [6580/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-11x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.0999334Z [6581/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.1364479Z [6582/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.1426073Z [6583/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.1724770Z [6584/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-12x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.1740488Z [6585/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.2178660Z [6586/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-13x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.2316337Z [6587/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.2366228Z [6588/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-14x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.2593924Z [6589/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.3009300Z [6590/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.3057251Z [6591/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.3391409Z [6592/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-15x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.3502253Z [6593/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.3766978Z [6594/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemm\gen\f32-gemm-16x64-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.3812378Z [6595/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-1x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.3971804Z [6596/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-4x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.4385757Z [6597/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-5x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.4431605Z [6598/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-6x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.4705698Z [6599/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-7x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.4953672Z [6600/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-gemminc\gen\f32-gemminc-8x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.5314302Z [6601/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-1x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.5385545Z [6602/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.5400392Z [6603/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-4x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.5588650Z [6604/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.5931250Z [6605/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-5x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.6047526Z [6606/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.6110369Z [6607/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-6x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.6401819Z [6608/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc2.c.obj 2025-07-17T07:46:59.6578676Z [6609/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-7x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.6671070Z [6610/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x32-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.6750087Z [6611/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64-acc4.c.obj 2025-07-17T07:46:59.6761215Z [6612/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-igemm\gen\f32-igemm-8x16-minmax-avx512f-broadcast.c.obj 2025-07-17T07:46:59.6881156Z [6613/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-07-17T07:46:59.6948511Z [6614/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc2.c.obj 2025-07-17T07:46:59.7490915Z [6615/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144-acc3.c.obj 2025-07-17T07:46:59.7503397Z [6616/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128.c.obj 2025-07-17T07:46:59.7637736Z [6617/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc2.c.obj 2025-07-17T07:46:59.7692457Z [6618/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160-acc5.c.obj 2025-07-17T07:46:59.7752267Z [6619/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u160.c.obj 2025-07-17T07:46:59.7805546Z [6620/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u128-acc4.c.obj 2025-07-17T07:46:59.8327961Z [6621/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u144.c.obj 2025-07-17T07:46:59.8374449Z [6622/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc2.c.obj 2025-07-17T07:46:59.8387131Z [6623/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc3.c.obj 2025-07-17T07:46:59.8470361Z [6624/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192-acc6.c.obj 2025-07-17T07:46:59.8570435Z [6625/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc2.c.obj 2025-07-17T07:46:59.8643822Z [6626/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64-acc4.c.obj 2025-07-17T07:46:59.8976700Z [6627/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddexpminusmax\gen\f32-raddexpminusmax-avx512f-p5-scalef-u192.c.obj 2025-07-17T07:46:59.9198878Z [6628/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u64.c.obj 2025-07-17T07:46:59.9301884Z [6629/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc4.c.obj 2025-07-17T07:46:59.9313491Z [6630/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128-acc2.c.obj 2025-07-17T07:46:59.9357097Z [6631/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u128.c.obj 2025-07-17T07:46:59.9441301Z [6632/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144-acc3.c.obj 2025-07-17T07:46:59.9511629Z [6633/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u144.c.obj 2025-07-17T07:46:59.9894364Z [6634/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc2.c.obj 2025-07-17T07:47:00.0160781Z [6635/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160-acc5.c.obj 2025-07-17T07:47:00.0177463Z [6636/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u160.c.obj 2025-07-17T07:47:00.0238558Z [6637/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc2.c.obj 2025-07-17T07:47:00.0288506Z [6638/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc3.c.obj 2025-07-17T07:47:00.0416051Z [6639/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192-acc6.c.obj 2025-07-17T07:47:00.0482790Z [6640/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddextexp\gen\f32-raddextexp-avx512f-p5-scalef-u192.c.obj 2025-07-17T07:47:00.1092124Z [6641/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr1-p5-scalef-u16.c.obj 2025-07-17T07:47:00.1236106Z [6642/7682] 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-07-17T07:47:00.1390070Z [6643/7682] 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-07-17T07:47:00.1726407Z [6644/7682] 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-07-17T07:47:00.1742769Z [6645/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u16.c.obj 2025-07-17T07:47:00.1758855Z [6646/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u32-acc2.c.obj 2025-07-17T07:47:00.1823443Z [6647/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-raddstoreexpminusmax\gen\f32-raddstoreexpminusmax-avx512f-rr2-p5-u64-acc4.c.obj 2025-07-17T07:47:00.2380920Z [6648/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c32.c.obj 2025-07-17T07:47:00.2394024Z [6649/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c128.c.obj 2025-07-17T07:47:00.2551556Z [6650/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rdsum\gen\f32-rdsum-7p7x-minmax-avx512f-c16.c.obj 2025-07-17T07:47:00.2815180Z [6651/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u48-acc3.c.obj 2025-07-17T07:47:00.2863560Z [6652/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u32-acc2.c.obj 2025-07-17T07:47:00.2874995Z [6653/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u16.c.obj 2025-07-17T07:47:00.2928268Z [6654/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmax-avx512f-u64-acc2.c.obj 2025-07-17T07:47:00.3447778Z [6655/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u16.c.obj 2025-07-17T07:47:00.3508762Z [6656/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u32-acc2.c.obj 2025-07-17T07:47:00.3649716Z [6657/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u48-acc3.c.obj 2025-07-17T07:47:00.3850750Z [6658/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc2.c.obj 2025-07-17T07:47:00.4004014Z [6659/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u16.c.obj 2025-07-17T07:47:00.4023345Z [6660/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u32-acc2.c.obj 2025-07-17T07:47:00.4180665Z [6661/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rmin-avx512f-u64-acc4.c.obj 2025-07-17T07:47:00.4512224Z [6662/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u48-acc3.c.obj 2025-07-17T07:47:00.4715904Z [6663/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rminmax\gen\f32-rminmax-avx512f-u64-acc2.c.obj 2025-07-17T07:47:00.4737109Z [6664/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u16.c.obj 2025-07-17T07:47:00.4917288Z [6665/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u32-acc2.c.obj 2025-07-17T07:47:00.5037383Z [6666/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u64-acc2.c.obj 2025-07-17T07:47:00.5342677Z [6667/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-rsum\gen\f32-rsum-avx512f-u48-acc3.c.obj 2025-07-17T07:47:00.5359478Z [6668/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vadd-avx512f-u16.c.obj 2025-07-17T07:47:00.5647541Z [6669/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vaddc-avx512f-u16.c.obj 2025-07-17T07:47:00.5954683Z [6670/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdiv-avx512f-u16.c.obj 2025-07-17T07:47:00.6077994Z [6671/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmax-avx512f-u16.c.obj 2025-07-17T07:47:00.6208031Z [6672/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vdivc-avx512f-u16.c.obj 2025-07-17T07:47:00.6295096Z [6673/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmaxc-avx512f-u16.c.obj 2025-07-17T07:47:00.6442032Z [6674/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmin-avx512f-u16.c.obj 2025-07-17T07:47:00.6497498Z [6675/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vminc-avx512f-u16.c.obj 2025-07-17T07:47:00.6805515Z [6676/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmul-avx512f-u16.c.obj 2025-07-17T07:47:00.7092029Z [6677/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vmulc-avx512f-u16.c.obj 2025-07-17T07:47:00.7293717Z [6678/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vprelu-avx512f-u16.c.obj 2025-07-17T07:47:00.7506743Z [6679/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrdivc-avx512f-u16.c.obj 2025-07-17T07:47:00.7568456Z [6680/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vpreluc-avx512f-u16.c.obj 2025-07-17T07:47:00.7621898Z [6681/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrpreluc-avx512f-u16.c.obj 2025-07-17T07:47:00.7675350Z [6682/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vrsubc-avx512f-u16.c.obj 2025-07-17T07:47:00.7977709Z [6683/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiff-avx512f-u16.c.obj 2025-07-17T07:47:00.8352692Z [6684/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsqrdiffc-avx512f-u16.c.obj 2025-07-17T07:47:00.8748460Z [6685/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsub-avx512f-u16.c.obj 2025-07-17T07:47:00.8836540Z [6686/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u64.c.obj 2025-07-17T07:47:00.8886548Z [6687/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vbinary\gen\f32-vsubc-avx512f-u16.c.obj 2025-07-17T07:47:00.9019224Z [6688/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u128.c.obj 2025-07-17T07:47:00.9075066Z [6689/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vcmul\gen\f32-vcmul-avx512f-u16.c.obj 2025-07-17T07:47:00.9420221Z [6690/7682] 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-07-17T07:47:00.9496165Z [6691/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vclamp\gen\f32-vclamp-avx512f-u32.c.obj 2025-07-17T07:47:00.9978965Z [6692/7682] 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-07-17T07:47:01.0025001Z [6693/7682] 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-07-17T07:47:01.0111516Z [6694/7682] 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-07-17T07:47:01.0228211Z [6695/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u32.c.obj 2025-07-17T07:47:01.0241193Z [6696/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u16.c.obj 2025-07-17T07:47:01.0659587Z [6697/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-velu\gen\f32-velu-avx512f-rr1-p6-u48.c.obj 2025-07-17T07:47:01.0683212Z [6698/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vgelu\gen\f32-vgelu-avx512f-rational-12-10-div.c.obj 2025-07-17T07:47:01.1287606Z [6699/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlog\gen\f32-vlog-avx512f-rational-3-3-nr.c.obj 2025-07-17T07:47:01.1349791Z [6700/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vhswish\gen\f32-vhswish-avx512f-u32.c.obj 2025-07-17T07:47:01.1400968Z [6701/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vlrelu\gen\f32-vlrelu-avx512f-u32.c.obj 2025-07-17T07:47:01.1498667Z [6702/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u16.c.obj 2025-07-17T07:47:01.1523135Z [6703/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrelu\gen\f32-vrelu-avx512f-u32.c.obj 2025-07-17T07:47:01.1854276Z [6704/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndd-avx512f-u32.c.obj 2025-07-17T07:47:01.2369299Z [6705/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndne-avx512f-u32.c.obj 2025-07-17T07:47:01.2667066Z [6706/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u16.c.obj 2025-07-17T07:47:01.2680264Z [6707/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u64.c.obj 2025-07-17T07:47:01.2692472Z [6708/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndu-avx512f-u32.c.obj 2025-07-17T07:47:01.2705994Z [6709/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrnd\gen\f32-vrndz-avx512f-u32.c.obj 2025-07-17T07:47:01.2719781Z [6710/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vrsqrt\gen\f32-vrsqrt-avx512f-rsqrt-u16.c.obj 2025-07-17T07:47:01.2772609Z [6711/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u32.c.obj 2025-07-17T07:47:01.3798024Z [6712/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u16.c.obj 2025-07-17T07:47:01.3878207Z [6713/7682] 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-07-17T07:47:01.3929442Z [6714/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u64.c.obj 2025-07-17T07:47:01.3940743Z [6715/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleexpminusmax\gen\f32-vscaleexpminusmax-avx512f-p5-scalef-u48.c.obj 2025-07-17T07:47:01.3988363Z [6716/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u32.c.obj 2025-07-17T07:47:01.4201394Z [6717/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u48.c.obj 2025-07-17T07:47:01.4272282Z [6718/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vscaleextexp\gen\f32-vscaleextexp-avx512f-p5-scalef-u64.c.obj 2025-07-17T07:47:01.5156734Z [6719/7682] 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-07-17T07:47:01.5205462Z [6720/7682] 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-07-17T07:47:01.5728990Z [6721/7682] 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-07-17T07:47:01.5743756Z [6722/7682] 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-07-17T07:47:01.5756513Z [6723/7682] 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-07-17T07:47:01.5771948Z [6724/7682] 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-07-17T07:47:01.5795460Z [6725/7682] 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-07-17T07:47:01.6484577Z [6726/7682] 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-07-17T07:47:01.6858704Z [6727/7682] 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-07-17T07:47:01.6962861Z [6728/7682] 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-07-17T07:47:01.7031672Z [6729/7682] 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-07-17T07:47:01.7294185Z [6730/7682] 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-07-17T07:47:01.7462640Z [6731/7682] 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-07-17T07:47:01.7657813Z [6732/7682] 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-07-17T07:47:01.7766238Z [6733/7682] 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-07-17T07:47:01.7984444Z [6734/7682] 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-07-17T07:47:01.8108008Z [6735/7682] 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-07-17T07:47:01.8183383Z [6736/7682] 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-07-17T07:47:01.8480462Z [6737/7682] 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-07-17T07:47:01.8695620Z [6738/7682] 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-07-17T07:47:01.8780837Z [6739/7682] 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-07-17T07:47:01.9159927Z [6740/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u32.c.obj 2025-07-17T07:47:01.9208752Z [6741/7682] 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-07-17T07:47:01.9386655Z [6742/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vtanh\gen\f32-vtanh-avx512f-rational-9-8-div.c.obj 2025-07-17T07:47:01.9525559Z [6743/7682] 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-07-17T07:47:01.9632229Z [6744/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-vsqrt\gen\f32-vsqrt-avx512f-rsqrt-u48.c.obj 2025-07-17T07:47:01.9709106Z [6745/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u1.c.obj 2025-07-17T07:47:01.9819721Z [6746/7682] 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-07-17T07:47:02.0334744Z [6747/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-gio-avx512f-u8.c.obj 2025-07-17T07:47:02.0450159Z [6748/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x16-gemm-goi-avx512f-u4.c.obj 2025-07-17T07:47:02.0528719Z [6749/7682] 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-07-17T07:47:02.0589269Z [6750/7682] 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-07-17T07:47:02.0693853Z [6751/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-gio-avx512f-u1.c.obj 2025-07-17T07:47:02.0781303Z [6752/7682] 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-07-17T07:47:02.0969993Z [6753/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x32-packw\gen\x32-packw-x32-gemm-goi-avx512f-u4.c.obj 2025-07-17T07:47:02.1456876Z [6754/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32-vcvt\gen\f16-f32-vcvt-avx512skx-u32.c.obj 2025-07-17T07:47:02.1612291Z [6755/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c16.c.obj 2025-07-17T07:47:02.1662185Z [6756/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c128.c.obj 2025-07-17T07:47:02.1739660Z [6757/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rdsum\gen\f16-f32acc-rdsum-7p7x-avx512skx-c32.c.obj 2025-07-17T07:47:02.1862605Z [6758/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u32-acc2.c.obj 2025-07-17T07:47:02.1920749Z [6759/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u16.c.obj 2025-07-17T07:47:02.2164862Z [6760/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u48-acc3.c.obj 2025-07-17T07:47:02.2568728Z [6761/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u64-acc2.c.obj 2025-07-17T07:47:02.2710635Z [6762/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-f32acc-rsum\gen\f16-f32acc-rsum-avx512skx-u128-acc4.c.obj 2025-07-17T07:47:02.2774870Z [6763/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u16.c.obj 2025-07-17T07:47:02.2821806Z [6764/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u32-acc2.c.obj 2025-07-17T07:47:02.3022095Z [6765/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u64-acc2.c.obj 2025-07-17T07:47:02.3203531Z [6766/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmax-avx512skx-u48-acc3.c.obj 2025-07-17T07:47:02.3266509Z [6767/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u16.c.obj 2025-07-17T07:47:02.3606603Z [6768/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u32-acc2.c.obj 2025-07-17T07:47:02.3751307Z [6769/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u48-acc3.c.obj 2025-07-17T07:47:02.3807232Z [6770/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc2.c.obj 2025-07-17T07:47:02.3936522Z [6771/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rmin-avx512skx-u64-acc4.c.obj 2025-07-17T07:47:02.4056764Z [6772/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u16.c.obj 2025-07-17T07:47:02.4315301Z [6773/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u32-acc2.c.obj 2025-07-17T07:47:02.4395185Z [6774/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u48-acc3.c.obj 2025-07-17T07:47:02.4658032Z [6775/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-rminmax\gen\f16-rminmax-avx512skx-u64-acc2.c.obj 2025-07-17T07:47:02.4972744Z [6776/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u32.c.obj 2025-07-17T07:47:02.5024866Z [6777/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u16.c.obj 2025-07-17T07:47:02.5085004Z [6778/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f16-vsqrt\gen\f16-vsqrt-avx512skx-sqrt-u64.c.obj 2025-07-17T07:47:02.5215025Z [6779/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-f16-vcvt\gen\f32-f16-vcvt-avx512skx-u32.c.obj 2025-07-17T07:47:02.5776547Z [6780/7682] 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-07-17T07:47:02.5904784Z [6781/7682] 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-07-17T07:47:02.6188214Z [6782/7682] 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-07-17T07:47:02.6345143Z [6783/7682] 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-07-17T07:47:02.6424575Z [6784/7682] 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-07-17T07:47:02.6476288Z [6785/7682] 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-07-17T07:47:02.6591183Z [6786/7682] 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-07-17T07:47:02.7158979Z [6787/7682] 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-07-17T07:47:02.7266963Z [6788/7682] 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-07-17T07:47:02.7549170Z [6789/7682] 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-07-17T07:47:02.7849869Z [6790/7682] 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-07-17T07:47:02.7899581Z [6791/7682] 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-07-17T07:47:02.8088612Z [6792/7682] 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-07-17T07:47:02.8138511Z [6793/7682] 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-07-17T07:47:02.8554454Z [6794/7682] 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-07-17T07:47:02.8617581Z [6795/7682] 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-07-17T07:47:02.9105666Z [6796/7682] 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-07-17T07:47:02.9228769Z [6797/7682] 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-07-17T07:47:02.9312846Z [6798/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u32.c.obj 2025-07-17T07:47:02.9369602Z [6799/7682] 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-07-17T07:47:02.9478378Z [6800/7682] 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-07-17T07:47:03.0033200Z [6801/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u64.c.obj 2025-07-17T07:47:03.0189285Z [6802/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qs8-vcvt\gen\f32-qs8-vcvt-avx512skx-u96.c.obj 2025-07-17T07:47:03.0239215Z [6803/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u32.c.obj 2025-07-17T07:47:03.0341835Z [6804/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u64.c.obj 2025-07-17T07:47:03.0585606Z [6805/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\f32-qu8-vcvt\gen\f32-qu8-vcvt-avx512skx-u96.c.obj 2025-07-17T07:47:03.0712985Z [6806/7682] 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-07-17T07:47:03.0832285Z [6807/7682] 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-07-17T07:47:03.1471121Z [6808/7682] 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-07-17T07:47:03.1543123Z [6809/7682] 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-07-17T07:47:03.1893509Z [6810/7682] 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-07-17T07:47:03.1968255Z [6811/7682] 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-07-17T07:47:03.2128504Z [6812/7682] 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-07-17T07:47:03.2195891Z [6813/7682] 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-07-17T07:47:03.2315438Z [6814/7682] 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-07-17T07:47:03.2904071Z [6815/7682] 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-07-17T07:47:03.3040625Z [6816/7682] 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-07-17T07:47:03.3270565Z [6817/7682] 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-07-17T07:47:03.3508872Z [6818/7682] 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-07-17T07:47:03.4001842Z [6819/7682] 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-07-17T07:47:03.4055367Z [6820/7682] 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-07-17T07:47:03.4071227Z [6821/7682] 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-07-17T07:47:03.4453395Z [6822/7682] 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-07-17T07:47:03.4578417Z [6823/7682] 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-07-17T07:47:03.4653824Z [6824/7682] 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-07-17T07:47:03.5052495Z [6825/7682] 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-07-17T07:47:03.5274249Z [6826/7682] 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-07-17T07:47:03.5641036Z [6827/7682] 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-07-17T07:47:03.5894363Z [6828/7682] 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-07-17T07:47:03.5957368Z [6829/7682] 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-07-17T07:47:03.6008398Z [6830/7682] 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-07-17T07:47:03.6141307Z [6831/7682] 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-07-17T07:47:03.6558394Z [6832/7682] 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-07-17T07:47:03.7233343Z [6833/7682] 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-07-17T07:47:03.7433964Z [6834/7682] 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-07-17T07:47:03.7484081Z [6835/7682] 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-07-17T07:47:03.7501502Z [6836/7682] 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-07-17T07:47:03.7565014Z [6837/7682] 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-07-17T07:47:03.7948777Z [6838/7682] 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-07-17T07:47:03.7973698Z [6839/7682] 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-07-17T07:47:03.8652628Z [6840/7682] 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-07-17T07:47:03.8994217Z [6841/7682] 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-07-17T07:47:03.9005967Z [6842/7682] 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-07-17T07:47:03.9489939Z [6843/7682] 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-07-17T07:47:03.9502445Z [6844/7682] 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-07-17T07:47:03.9516198Z [6845/7682] 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-07-17T07:47:03.9739542Z [6846/7682] 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-07-17T07:47:04.0514987Z [6847/7682] 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-07-17T07:47:04.0775171Z [6848/7682] 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-07-17T07:47:04.0787038Z [6849/7682] 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-07-17T07:47:04.0845093Z [6850/7682] 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-07-17T07:47:04.0976117Z [6851/7682] 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-07-17T07:47:04.0988966Z [6852/7682] 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-07-17T07:47:04.1057396Z [6853/7682] 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-07-17T07:47:04.2045870Z [6854/7682] 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-07-17T07:47:04.2136470Z [6855/7682] 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-07-17T07:47:04.2213021Z [6856/7682] 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-07-17T07:47:04.2345975Z [6857/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.2361367Z [6858/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.2582250Z [6859/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.3238276Z [6860/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.3405781Z [6861/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.3470557Z [6862/7682] 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-07-17T07:47:04.3555146Z [6863/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.3638945Z [6864/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.3692000Z [6865/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-dwconv\gen\qs8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.3807729Z [6866/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u16.c.obj 2025-07-17T07:47:04.4528785Z [6867/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u64.c.obj 2025-07-17T07:47:04.4686335Z [6868/7682] 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-07-17T07:47:04.4841237Z [6869/7682] 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-07-17T07:47:04.4891248Z [6870/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-f32-vcvt\gen\qs8-f32-vcvt-avx512skx-u48.c.obj 2025-07-17T07:47:04.4985394Z [6871/7682] 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-07-17T07:47:04.5085388Z [6872/7682] 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-07-17T07:47:04.5195306Z [6873/7682] 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-07-17T07:47:04.5939577Z [6874/7682] 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-07-17T07:47:04.6054890Z [6875/7682] 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-07-17T07:47:04.6118447Z [6876/7682] 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-07-17T07:47:04.6288895Z [6877/7682] 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-07-17T07:47:04.6349874Z [6878/7682] 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-07-17T07:47:04.6432937Z [6879/7682] 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-07-17T07:47:04.6732686Z [6880/7682] 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-07-17T07:47:04.7365006Z [6881/7682] 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-07-17T07:47:04.7418037Z [6882/7682] 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-07-17T07:47:04.7649431Z [6883/7682] 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-07-17T07:47:04.7696845Z [6884/7682] 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-07-17T07:47:04.7743574Z [6885/7682] 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-07-17T07:47:04.8024305Z [6886/7682] 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-07-17T07:47:04.8175111Z [6887/7682] 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-07-17T07:47:04.8533058Z [6888/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rdsum\gen\qs8-rdsum-7p7x-minmax-fp32-avx512skx-c128.c.obj 2025-07-17T07:47:04.8650092Z [6889/7682] 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-07-17T07:47:04.8722548Z [6890/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc2.c.obj 2025-07-17T07:47:04.8827237Z [6891/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u256-acc4.c.obj 2025-07-17T07:47:04.8959827Z [6892/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512skx-u64.c.obj 2025-07-17T07:47:04.9220753Z [6893/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vadd\gen\qs8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-17T07:47:04.9302001Z [6894/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-vaddc\gen\qs8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-17T07:47:04.9838819Z [6895/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:04.9995179Z [6896/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-5f5m5l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:05.0068513Z [6897/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:05.0263590Z [6898/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l16c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:05.0313335Z [6899/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-6f6m7l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:05.0503321Z [6900/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-8f8m9l32c16s1r-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:05.0570762Z [6901/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-9p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:05.1207308Z [6902/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-dwconv\gen\qu8-dwconv-25p16c-minmax-fp32-avx512skx-mul32.c.obj 2025-07-17T07:47:05.1258005Z [6903/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u48.c.obj 2025-07-17T07:47:05.1384272Z [6904/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u64.c.obj 2025-07-17T07:47:05.1560422Z [6905/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.1738273Z [6906/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T07:47:05.1853848Z [6907/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-f32-vcvt\gen\qu8-f32-vcvt-avx512skx-u16.c.obj 2025-07-17T07:47:05.1911637Z [6908/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.2656267Z [6909/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T07:47:05.2836113Z [6910/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-1x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.2886180Z [6911/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.2972901Z [6912/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T07:47:05.3029163Z [6913/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-gemm\gen\qu8-gemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.3145970Z [6914/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-5x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.3276120Z [6915/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-7x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.3918292Z [6916/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u128.c.obj 2025-07-17T07:47:05.3994666Z [6917/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx-prfm.c.obj 2025-07-17T07:47:05.4087516Z [6918/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u192.c.obj 2025-07-17T07:47:05.4186873Z [6919/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-igemm\gen\qu8-igemm-8x16c8-minmax-fp32-avx512skx.c.obj 2025-07-17T07:47:05.4202694Z [6920/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vadd\gen\qu8-vadd-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-17T07:47:05.4248268Z [6921/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512skx-vpshufb-u256.c.obj 2025-07-17T07:47:05.4411592Z [6922/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qu8-vaddc\gen\qu8-vaddc-minmax-avx512skx-mul32-ld128-u32.c.obj 2025-07-17T07:47:05.4845612Z [6923/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u64.c.obj 2025-07-17T07:47:05.4892627Z [6924/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u192.c.obj 2025-07-17T07:47:05.5012015Z [6925/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\x8-lut\gen\x8-lut-avx512vbmi-vpermx2b-u256.c.obj 2025-07-17T07:47:05.5566957Z [6926/7682] 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-07-17T07:47:05.5693457Z [6927/7682] 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-07-17T07:47:05.5773045Z [6928/7682] 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-07-17T07:47:05.6128797Z [6929/7682] 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-07-17T07:47:05.6295652Z [6930/7682] 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-07-17T07:47:05.6311909Z [6931/7682] 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-07-17T07:47:05.6364816Z [6932/7682] 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-07-17T07:47:05.7111776Z [6933/7682] 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-07-17T07:47:05.7127776Z [6934/7682] 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-07-17T07:47:05.7346928Z [6935/7682] 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-07-17T07:47:05.7664780Z [6936/7682] 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-07-17T07:47:05.7907782Z [6937/7682] 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-07-17T07:47:05.8295539Z [6938/7682] 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-07-17T07:47:05.8513446Z [6939/7682] 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-07-17T07:47:05.8688102Z [6940/7682] 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-07-17T07:47:05.8737094Z [6941/7682] 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-07-17T07:47:05.8789924Z [6942/7682] 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-07-17T07:47:05.9011272Z [6943/7682] 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-07-17T07:47:05.9243060Z [6944/7682] 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-07-17T07:47:05.9759329Z [6945/7682] 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-07-17T07:47:06.0018781Z [6946/7682] 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-07-17T07:47:06.0075353Z [6947/7682] 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-07-17T07:47:06.0090729Z [6948/7682] 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-07-17T07:47:06.0322891Z [6949/7682] 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-07-17T07:47:06.0482445Z [6950/7682] 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-07-17T07:47:06.1116737Z [6951/7682] 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-07-17T07:47:06.1290857Z [6952/7682] 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-07-17T07:47:06.1473807Z [6953/7682] 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-07-17T07:47:06.1533148Z [6954/7682] 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-07-17T07:47:06.1583118Z [6955/7682] 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-07-17T07:47:06.1634323Z [6956/7682] 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-07-17T07:47:06.1792465Z [6957/7682] 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-07-17T07:47:06.2768899Z [6958/7682] 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-07-17T07:47:06.2834327Z [6959/7682] 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-07-17T07:47:06.2972228Z [6960/7682] 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-07-17T07:47:06.3038123Z [6961/7682] 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-07-17T07:47:06.3089103Z [6962/7682] 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-07-17T07:47:06.3101107Z [6963/7682] 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-07-17T07:47:06.3782721Z [6964/7682] 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-07-17T07:47:06.4051655Z [6965/7682] 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-07-17T07:47:06.4282557Z [6966/7682] 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-07-17T07:47:06.4459717Z [6967/7682] 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-07-17T07:47:06.4560352Z [6968/7682] 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-07-17T07:47:06.4613762Z [6969/7682] 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-07-17T07:47:06.4736068Z [6970/7682] 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-07-17T07:47:06.5128016Z [6971/7682] 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-07-17T07:47:06.5665328Z [6972/7682] 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-07-17T07:47:06.5683374Z [6973/7682] 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-07-17T07:47:06.6022480Z [6974/7682] 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-07-17T07:47:06.6076366Z [6975/7682] 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-07-17T07:47:06.6304249Z [6976/7682] 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-07-17T07:47:06.6455769Z [6977/7682] 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-07-17T07:47:06.6691886Z [6978/7682] 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-07-17T07:47:06.7028270Z [6979/7682] 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-07-17T07:47:06.7045116Z [6980/7682] 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-07-17T07:47:06.7408216Z [6981/7682] 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-07-17T07:47:06.7567260Z [6982/7682] 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-07-17T07:47:06.7804039Z [6983/7682] 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-07-17T07:47:06.7883772Z [6984/7682] 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-07-17T07:47:06.7982520Z [6985/7682] 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-07-17T07:47:06.8491906Z [6986/7682] 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-07-17T07:47:06.8570908Z [6987/7682] 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-07-17T07:47:06.8838304Z [6988/7682] 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-07-17T07:47:06.9090852Z [6989/7682] 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-07-17T07:47:06.9237793Z [6990/7682] 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-07-17T07:47:06.9299333Z [6991/7682] 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-07-17T07:47:06.9380701Z [6992/7682] 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-07-17T07:47:06.9924693Z [6993/7682] 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-07-17T07:47:06.9986087Z [6994/7682] 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-07-17T07:47:07.0348164Z [6995/7682] 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-07-17T07:47:07.0599418Z [6996/7682] 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-07-17T07:47:07.0799429Z [6997/7682] 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-07-17T07:47:07.0858968Z [6998/7682] 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-07-17T07:47:07.0913490Z [6999/7682] 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-07-17T07:47:07.1664638Z [7000/7682] 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-07-17T07:47:07.1710733Z [7001/7682] 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-07-17T07:47:07.1770333Z [7002/7682] 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-07-17T07:47:07.1908227Z [7003/7682] 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-07-17T07:47:07.2069354Z [7004/7682] 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-07-17T07:47:07.2418850Z [7005/7682] 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-07-17T07:47:07.2434650Z [7006/7682] 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-07-17T07:47:07.3112315Z [7007/7682] 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-07-17T07:47:07.3175981Z [7008/7682] 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-07-17T07:47:07.3433564Z [7009/7682] 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-07-17T07:47:07.3507709Z [7010/7682] 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-07-17T07:47:07.4080794Z [7011/7682] 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-07-17T07:47:07.4270641Z [7012/7682] 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-07-17T07:47:07.4451504Z [7013/7682] 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-07-17T07:47:07.4466420Z [7014/7682] 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-07-17T07:47:07.4517456Z [7015/7682] 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-07-17T07:47:07.4689975Z [7016/7682] 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-07-17T07:47:07.4756654Z [7017/7682] 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-07-17T07:47:07.5749609Z [7018/7682] 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-07-17T07:47:07.5817384Z [7019/7682] 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-07-17T07:47:07.5865846Z [7020/7682] 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-07-17T07:47:07.5951745Z [7021/7682] 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-07-17T07:47:07.5998777Z [7022/7682] 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-07-17T07:47:07.6102932Z [7023/7682] 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-07-17T07:47:07.6118375Z [7024/7682] 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-07-17T07:47:07.7297149Z [7025/7682] 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-07-17T07:47:07.7311642Z [7026/7682] 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-07-17T07:47:07.7369882Z [7027/7682] 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-07-17T07:47:07.7445314Z [7028/7682] 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-07-17T07:47:07.7554199Z [7029/7682] 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-07-17T07:47:07.7675706Z [7030/7682] 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-07-17T07:47:07.7962487Z [7031/7682] 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-07-17T07:47:07.8726007Z [7032/7682] 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-07-17T07:47:07.8952363Z [7033/7682] 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-07-17T07:47:07.9010057Z [7034/7682] 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-07-17T07:47:07.9122078Z [7035/7682] 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-07-17T07:47:07.9451679Z [7036/7682] 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-07-17T07:47:07.9655519Z [7037/7682] 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-07-17T07:47:07.9705717Z [7038/7682] 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-07-17T07:47:08.0336361Z [7039/7682] 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-07-17T07:47:08.0719460Z [7040/7682] 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-07-17T07:47:08.0962098Z [7041/7682] 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-07-17T07:47:08.1025950Z [7042/7682] 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-07-17T07:47:08.1047323Z [7043/7682] 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-07-17T07:47:08.1182310Z [7044/7682] 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-07-17T07:47:08.1242378Z [7045/7682] 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-07-17T07:47:08.1710439Z [7046/7682] 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-07-17T07:47:08.2075269Z [7047/7682] 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-07-17T07:47:08.2422341Z [7048/7682] 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-07-17T07:47:08.2436213Z [7049/7682] 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-07-17T07:47:08.2482662Z [7050/7682] 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-07-17T07:47:08.2609879Z [7051/7682] 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-07-17T07:47:08.2988695Z [7052/7682] 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-07-17T07:47:08.3262446Z [7053/7682] 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-07-17T07:47:08.3411694Z [7054/7682] 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-07-17T07:47:08.3819957Z [7055/7682] 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-07-17T07:47:08.3846379Z [7056/7682] 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-07-17T07:47:08.3916699Z [7057/7682] 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-07-17T07:47:08.4108206Z [7058/7682] 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-07-17T07:47:08.4418729Z [7059/7682] 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-07-17T07:47:08.4677167Z [7060/7682] 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-07-17T07:47:08.4909860Z [7061/7682] 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-07-17T07:47:08.5234310Z [7062/7682] 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-07-17T07:47:08.5246922Z [7063/7682] 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-07-17T07:47:08.5447324Z [7064/7682] 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-07-17T07:47:08.5520279Z [7065/7682] 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-07-17T07:47:08.5997849Z [7066/7682] 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-07-17T07:47:08.6083484Z [7067/7682] 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-07-17T07:47:08.6786904Z [7068/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.6834614Z [7069/7682] 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-07-17T07:47:08.6887057Z [7070/7682] 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-07-17T07:47:08.6954021Z [7071/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-1x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.7133160Z [7072/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-4x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.7376599Z [7073/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.7389195Z [7074/7682] 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-07-17T07:47:08.8235027Z [7075/7682] 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-07-17T07:47:08.8341050Z [7076/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-5x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.8497723Z [7077/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.8559968Z [7078/7682] 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-07-17T07:47:08.8626421Z [7079/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-7x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.8705705Z [7080/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:08.8860585Z [7081/7682] 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-07-17T07:47:08.9601445Z [7082/7682] 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-07-17T07:47:08.9835435Z [7083/7682] 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-07-17T07:47:08.9943716Z [7084/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-8x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.0016540Z [7085/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.0031664Z [7086/7682] 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-07-17T07:47:09.0251448Z [7087/7682] 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-07-17T07:47:09.0471314Z [7088/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-9x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.0898607Z [7089/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.1162590Z [7090/7682] 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-07-17T07:47:09.1270408Z [7091/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-10x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.1502129Z [7092/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.1552717Z [7093/7682] 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-07-17T07:47:09.1639723Z [7094/7682] 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-07-17T07:47:09.1822057Z [7095/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-12x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.2270351Z [7096/7682] 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-07-17T07:47:09.2509554Z [7097/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c4-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.2643336Z [7098/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u64.c.obj 2025-07-17T07:47:09.2743105Z [7099/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc2.c.obj 2025-07-17T07:47:09.2796641Z [7100/7682] 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-07-17T07:47:09.2868687Z [7101/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-qc8w-igemm\gen\qs8-qc8w-igemm-14x16c8-minmax-avx512vnni.c.obj 2025-07-17T07:47:09.2924529Z [7102/7682] Building C object confu-deps\XNNPACK\CMakeFiles\microkernels-all.dir\src\qs8-rsum\gen\qs8-rsum-avx512vnni-u256-acc4.c.obj 2025-07-17T07:47:09.3781839Z [7103/7682] 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-07-17T07:47:09.4134114Z [7104/7682] 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-07-17T07:47:09.4244929Z [7105/7682] 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-07-17T07:47:09.4256814Z [7106/7682] 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-07-17T07:47:09.4308271Z [7107/7682] 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-07-17T07:47:09.4404547Z [7108/7682] 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-07-17T07:47:09.4417095Z [7109/7682] 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-07-17T07:47:09.5117148Z [7110/7682] 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-07-17T07:47:09.5519445Z [7111/7682] 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-07-17T07:47:09.5683085Z [7112/7682] 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-07-17T07:47:09.5755890Z [7113/7682] 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-07-17T07:47:09.5912173Z [7114/7682] 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-07-17T07:47:09.5957575Z [7115/7682] 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-07-17T07:47:09.6071493Z [7116/7682] 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-07-17T07:47:09.6545437Z [7117/7682] 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-07-17T07:47:09.6817499Z [7118/7682] 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-07-17T07:47:09.7020083Z [7119/7682] 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-07-17T07:47:09.7169934Z [7120/7682] 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-07-17T07:47:09.7221545Z [7121/7682] 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-07-17T07:47:09.7375107Z [7122/7682] 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-07-17T07:47:09.7435409Z [7123/7682] 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-07-17T07:47:09.7927224Z [7124/7682] 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-07-17T07:47:09.8152743Z [7125/7682] 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-07-17T07:47:09.8383803Z [7126/7682] 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-07-17T07:47:09.8900273Z [7127/7682] 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-07-17T07:47:09.8959074Z [7128/7682] 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-07-17T07:47:09.8971104Z [7129/7682] 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-07-17T07:47:09.9087603Z [7130/7682] 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-07-17T07:47:09.9329016Z [7131/7682] 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-07-17T07:47:09.9857370Z [7132/7682] 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-07-17T07:47:10.0247325Z [7133/7682] 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-07-17T07:47:10.0260115Z [7134/7682] 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-07-17T07:47:10.0317958Z [7135/7682] 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-07-17T07:47:10.0332948Z [7136/7682] 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-07-17T07:47:10.0386786Z [7137/7682] 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-07-17T07:47:10.0848396Z [7138/7682] 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-07-17T07:47:10.1273853Z [7139/7682] 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-07-17T07:47:10.1647006Z [7140/7682] 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-07-17T07:47:10.1717980Z [7141/7682] 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-07-17T07:47:10.1729902Z [7142/7682] 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-07-17T07:47:10.1807302Z [7143/7682] 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-07-17T07:47:10.1918655Z [7144/7682] 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-07-17T07:47:10.2720865Z [7145/7682] 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-07-17T07:47:10.2976676Z [7146/7682] 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-07-17T07:47:10.3574622Z [7147/7682] 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-07-17T07:47:10.3591690Z [7148/7682] 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-07-17T07:47:10.5506676Z [7149/7682] Linking CXX static library lib\gtest_main.lib 2025-07-17T07:47:10.7159013Z [7150/7682] Building CXX object third_party\benchmark\src\CMakeFiles\benchmark_main.dir\benchmark_main.cc.obj 2025-07-17T07:47:10.7769043Z [7151/7682] Linking CXX static library lib\gmock.lib 2025-07-17T07:47:10.9106188Z [7152/7682] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock_main.cc.obj 2025-07-17T07:47:10.9421237Z [7153/7682] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\src\gmock-all.cc.obj 2025-07-17T07:47:11.0889952Z [7154/7682] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\format.cc.obj 2025-07-17T07:47:11.1973636Z [7155/7682] Building CXX object third_party\googletest\googlemock\CMakeFiles\gmock_main.dir\__\googletest\src\gtest-all.cc.obj 2025-07-17T07:47:11.2123165Z [7156/7682] Building CXX object third_party\fmt\CMakeFiles\fmt.dir\src\os.cc.obj 2025-07-17T07:47:11.2143768Z [7157/7682] Linking CXX static library lib\benchmark.lib 2025-07-17T07:47:11.2349276Z [7158/7682] Building C object third_party\ittapi\CMakeFiles\jitprofiling.dir\src\ittnotify\jitprofiling.c.obj 2025-07-17T07:47:12.3187336Z [7159/7682] Building CXX object c10\test\CMakeFiles\c10_StreamGuard_test.dir\core\StreamGuard_test.cpp.obj 2025-07-17T07:47:12.6047904Z [7160/7682] Building CXX object c10\test\CMakeFiles\c10_CompileTimeFunctionPointer_test.dir\core\CompileTimeFunctionPointer_test.cpp.obj 2025-07-17T07:47:12.6775228Z [7161/7682] Building CXX object c10\test\CMakeFiles\c10_DeviceGuard_test.dir\core\DeviceGuard_test.cpp.obj 2025-07-17T07:47:13.1323716Z [7162/7682] Building CXX object c10\test\CMakeFiles\c10_SymInt_test.dir\core\SymInt_test.cpp.obj 2025-07-17T07:47:13.2678156Z [7163/7682] Building CXX object c10\test\CMakeFiles\c10_Device_test.dir\core\Device_test.cpp.obj 2025-07-17T07:47:14.1302281Z [7164/7682] Building CXX object c10\test\CMakeFiles\c10_Scalar_test.dir\core\Scalar_test.cpp.obj 2025-07-17T07:47:14.2938865Z [7165/7682] Building CXX object c10\test\CMakeFiles\c10_DispatchKeySet_test.dir\core\DispatchKeySet_test.cpp.obj 2025-07-17T07:47:14.4122180Z [7166/7682] Building CXX object c10\test\CMakeFiles\c10_InlineDeviceGuard_test.dir\core\impl\InlineDeviceGuard_test.cpp.obj 2025-07-17T07:47:14.8853577Z [7167/7682] Building CXX object c10\test\CMakeFiles\c10_ConstexprCrc_test.dir\util\ConstexprCrc_test.cpp.obj 2025-07-17T07:47:15.1442351Z [7168/7682] Building CXX object c10\test\CMakeFiles\c10_SizesAndStrides_test.dir\core\impl\SizesAndStrides_test.cpp.obj 2025-07-17T07:47:15.1730303Z [7169/7682] Building CXX object c10\test\CMakeFiles\c10_InlineStreamGuard_test.dir\core\impl\InlineStreamGuard_test.cpp.obj 2025-07-17T07:47:15.6806813Z [7170/7682] Building CXX object c10\test\CMakeFiles\c10_ArrayRef_test.dir\util\ArrayRef_test.cpp.obj 2025-07-17T07:47:16.2121835Z [7171/7682] Building CXX object c10\test\CMakeFiles\c10_Bitset_test.dir\util\Bitset_test.cpp.obj 2025-07-17T07:47:16.2939964Z [7172/7682] Building CXX object c10\test\CMakeFiles\c10_DeadlockDetection_test.dir\util\DeadlockDetection_test.cpp.obj 2025-07-17T07:47:16.4739099Z [7173/7682] Building CXX object c10\test\CMakeFiles\c10_cow_test.dir\core\impl\cow_test.cpp.obj 2025-07-17T07:47:17.1763733Z [7174/7682] Building CXX object c10\test\CMakeFiles\c10_Enumerate_test.dir\util\Enumerate_test.cpp.obj 2025-07-17T07:47:17.3332404Z [7175/7682] Building CXX object c10\test\CMakeFiles\c10_Half_test.dir\util\Half_test.cpp.obj 2025-07-17T07:47:17.3920038Z [7176/7682] Building CXX object c10\test\CMakeFiles\c10_IntrusiveList_test.dir\util\IntrusiveList_test.cpp.obj 2025-07-17T07:47:18.2345349Z [7177/7682] Building CXX object c10\test\CMakeFiles\c10_LeftRight_test.dir\util\LeftRight_test.cpp.obj 2025-07-17T07:47:18.5752412Z [7178/7682] Building CXX object c10\test\CMakeFiles\c10_NetworkFlow_test.dir\util\NetworkFlow_test.cpp.obj 2025-07-17T07:47:18.6516784Z [7179/7682] Building CXX object c10\test\CMakeFiles\c10_Semaphore_test.dir\util\Semaphore_test.cpp.obj 2025-07-17T07:47:18.8553899Z [7180/7682] Building CXX object c10\test\CMakeFiles\c10_Metaprogramming_test.dir\util\Metaprogramming_test.cpp.obj 2025-07-17T07:47:19.1293501Z [7181/7682] Building CXX object c10\test\CMakeFiles\c10_Synchronized_test.dir\util\Synchronized_test.cpp.obj 2025-07-17T07:47:19.4850129Z [7182/7682] Building CXX object c10\test\CMakeFiles\c10_TypeIndex_test.dir\util\TypeIndex_test.cpp.obj 2025-07-17T07:47:19.6380333Z [7183/7682] Building CXX object c10\test\CMakeFiles\c10_ThreadLocal_test.dir\util\ThreadLocal_test.cpp.obj 2025-07-17T07:47:20.2720737Z [7184/7682] Building CXX object c10\test\CMakeFiles\c10_TypeTraits_test.dir\util\TypeTraits_test.cpp.obj 2025-07-17T07:47:20.3203610Z [7185/7682] Building CXX object c10\test\CMakeFiles\c10_TypeList_test.dir\util\TypeList_test.cpp.obj 2025-07-17T07:47:20.7042470Z [7186/7682] Building CXX object c10\test\CMakeFiles\c10_accumulate_test.dir\util\accumulate_test.cpp.obj 2025-07-17T07:47:21.3842907Z [7187/7682] Building CXX object c10\test\CMakeFiles\c10_bfloat16_test.dir\util\bfloat16_test.cpp.obj 2025-07-17T07:47:21.4011422Z [7188/7682] Building CXX object c10\test\CMakeFiles\c10_bit_cast_test.dir\util\bit_cast_test.cpp.obj 2025-07-17T07:47:22.1163310Z [7189/7682] Building CXX object c10\test\CMakeFiles\c10_complex_test.dir\util\complex_test.cpp.obj 2025-07-17T07:47:22.1767368Z [7190/7682] Building CXX object c10\test\CMakeFiles\c10_complex_math_test.dir\util\complex_math_test.cpp.obj 2025-07-17T07:47:22.1831773Z [7191/7682] Building CXX object c10\test\CMakeFiles\c10_error_test.dir\util\error_test.cpp.obj 2025-07-17T07:47:22.5148791Z [7192/7682] Building CXX object c10\test\CMakeFiles\c10_exception_test.dir\util\exception_test.cpp.obj 2025-07-17T07:47:22.9296501Z [7193/7682] Building CXX object c10\test\CMakeFiles\c10_flags_test.dir\util\flags_test.cpp.obj 2025-07-17T07:47:23.4286512Z [7194/7682] Building CXX object c10\test\CMakeFiles\c10_generic_math_test.dir\util\generic_math_test.cpp.obj 2025-07-17T07:47:24.0224407Z [7195/7682] Building CXX object c10\test\CMakeFiles\c10_irange_test.dir\util\irange_test.cpp.obj 2025-07-17T07:47:24.3825276Z [7196/7682] Building CXX object c10\test\CMakeFiles\c10_lazy_test.dir\util\lazy_test.cpp.obj 2025-07-17T07:47:24.4811367Z [7197/7682] Building CXX object c10\test\CMakeFiles\c10_logging_test.dir\util\logging_test.cpp.obj 2025-07-17T07:47:26.5285694Z [7198/7682] Building CXX object c10\test\CMakeFiles\c10_ordered_preserving_dict_test.dir\util\ordered_preserving_dict_test.cpp.obj 2025-07-17T07:47:26.8587412Z [7199/7682] Building CXX object c10\test\CMakeFiles\c10_registry_test.dir\util\registry_test.cpp.obj 2025-07-17T07:47:28.0639170Z [7200/7682] Building CXX object c10\test\CMakeFiles\c10_optional_test.dir\util\optional_test.cpp.obj 2025-07-17T07:47:28.0641127Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): warning C4834: discarding return value of function with [[nodiscard]] attribute 2025-07-17T07:47:28.0643120Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(70): note: the template instantiation context (the oldest one first) is 2025-07-17T07:47:28.0848323Z 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-07-17T07:47:28.0854680Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(694): note: while compiling class template member function 'bool testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register(const char *,testing::internal::CodeLocation,const char *,const char *,int,const std::vector> &)' 2025-07-17T07:47:28.0863907Z C:\actions-runner\_work\pytorch\pytorch\c10\test\util\optional_test.cpp(63): note: see the first reference to 'testing::internal::TypeParameterizedTest<`anonymous-namespace'::OptionalTest,testing::internal::TemplateSel<`anonymous-namespace'::OptionalTest_Empty_Test>,`anonymous-namespace'::gtest_type_params_OptionalTest_>::Register' in 'void __cdecl `anonymous namespace'::`dynamic initializer for 'gtest_OptionalTest_Empty_registered_''(void)' 2025-07-17T07:47:28.0870661Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(705): note: see reference to class template instantiation 'testing::internal::SuiteApiResolver' being compiled 2025-07-17T07:47:28.4750590Z C:\actions-runner\_work\pytorch\pytorch\third_party\googletest\googletest\include\gtest/internal/gtest-internal.h(491): note: see reference to class template instantiation '`anonymous-namespace'::OptionalTest_Empty_Test' being compiled 2025-07-17T07:47:28.4751758Z with 2025-07-17T07:47:28.4751934Z [ 2025-07-17T07:47:28.4752109Z T=Type 2025-07-17T07:47:28.4752285Z ] 2025-07-17T07:47:28.4753075Z 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-07-17T07:47:28.4754164Z with 2025-07-17T07:47:28.4754335Z [ 2025-07-17T07:47:28.4754500Z T=Type 2025-07-17T07:47:28.4754678Z ] 2025-07-17T07:47:28.4755062Z [7201/7682] Building CXX object c10\test\CMakeFiles\c10_ssize_test.dir\util\ssize_test.cpp.obj 2025-07-17T07:47:28.5119968Z [7202/7682] Building CXX object c10\test\CMakeFiles\c10_string_util_test.dir\util\string_util_test.cpp.obj 2025-07-17T07:47:29.1433423Z [7203/7682] Building CXX object c10\test\CMakeFiles\c10_tempfile_test.dir\util\tempfile_test.cpp.obj 2025-07-17T07:47:29.3466609Z [7204/7682] Building CXX object c10\test\CMakeFiles\c10_string_view_test.dir\util\string_view_test.cpp.obj 2025-07-17T07:47:31.0971929Z [7205/7682] Building CXX object c10\benchmark\CMakeFiles\c10_intrusive_ptr_benchmark.dir\intrusive_ptr_benchmark.cpp.obj 2025-07-17T07:47:31.4296793Z [7206/7682] Building CXX object c10\test\CMakeFiles\c10_intrusive_ptr_test.dir\util\intrusive_ptr_test.cpp.obj 2025-07-17T07:47:32.0876453Z [7207/7682] Building CXX object c10\test\CMakeFiles\c10_typeid_test.dir\util\typeid_test.cpp.obj 2025-07-17T07:47:32.6801986Z [7208/7682] Building CXX object c10\test\CMakeFiles\c10_small_vector_test.dir\util\small_vector_test.cpp.obj 2025-07-17T07:47:35.4460709Z [7209/7682] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_1_var_test.dir\impl\CUDAAssertionsTest_1_var_test.cu.obj 2025-07-17T07:47:35.5517675Z CUDAAssertionsTest_1_var_test.cu 2025-07-17T07:47:35.5519135Z tmpxft_000011b4_00000000-7_CUDAAssertionsTest_1_var_test.cudafe1.cpp 2025-07-17T07:47:35.5519966Z [7210/7682] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_catches_stream.dir\impl\CUDAAssertionsTest_catches_stream.cu.obj 2025-07-17T07:47:35.6727246Z CUDAAssertionsTest_catches_stream.cu 2025-07-17T07:47:35.6727745Z tmpxft_0000172c_00000000-7_CUDAAssertionsTest_catches_stream.cudafe1.cpp 2025-07-17T07:47:35.6728782Z [7211/7682] 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-07-17T07:47:35.7606235Z CUDAAssertionsTest_catches_thread_and_block_and_device.cu 2025-07-17T07:47:35.7606939Z tmpxft_00001744_00000000-7_CUDAAssertionsTest_catches_thread_and_block_and_device.cudafe1.cpp 2025-07-17T07:47:35.7607885Z [7212/7682] Building CUDA object c10\cuda\test\CMakeFiles\c10_cuda_CUDAAssertionsTest_from_2_processes.dir\impl\CUDAAssertionsTest_from_2_processes.cu.obj 2025-07-17T07:47:35.7734454Z CUDAAssertionsTest_from_2_processes.cu 2025-07-17T07:47:35.7734952Z tmpxft_00000f74_00000000-7_CUDAAssertionsTest_from_2_processes.cudafe1.cpp 2025-07-17T07:47:35.7735581Z [7213/7682] Building C object caffe2\CMakeFiles\torch_global_deps.dir\__\torch\csrc\empty.c.obj 2025-07-17T07:47:35.8407345Z [7214/7682] Building CXX object caffe2\CMakeFiles\caffe2_nvrtc.dir\__\aten\src\ATen\cuda\nvrtc_stub\ATenNVRTC.cpp.obj 2025-07-17T07:47:35.8423307Z [7215/7682] 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-07-17T07:47:35.8579593Z CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cu 2025-07-17T07:47:35.8580249Z tmpxft_00000ddc_00000000-7_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.cudafe1.cpp 2025-07-17T07:47:35.8581384Z [7216/7682] 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-07-17T07:47:35.9269000Z CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cu 2025-07-17T07:47:35.9269657Z tmpxft_0000122c_00000000-7_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.cudafe1.cpp 2025-07-17T07:47:35.9270707Z [7217/7682] 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-07-17T07:47:36.8718727Z CUDAAssertionsTest_multiple_writes_from_same_block.cu 2025-07-17T07:47:36.8719322Z tmpxft_0000160c_00000000-7_CUDAAssertionsTest_multiple_writes_from_same_block.cudafe1.cpp 2025-07-17T07:47:36.8720030Z [7218/7682] Building CXX object c10\cuda\test\CMakeFiles\c10_cuda_CUDATest.dir\impl\CUDATest.cpp.obj 2025-07-17T07:47:37.9977346Z [7219/7682] Building CXX object caffe2\CMakeFiles\Dimname_test.dir\__\aten\src\ATen\test\Dimname_test.cpp.obj 2025-07-17T07:47:47.1932962Z [7220/7682] Building CXX object caffe2\CMakeFiles\MaybeOwned_test.dir\__\aten\src\ATen\test\MaybeOwned_test.cpp.obj 2025-07-17T07:47:49.0424630Z [7221/7682] Building CXX object caffe2\CMakeFiles\NamedTensor_test.dir\__\aten\src\ATen\test\NamedTensor_test.cpp.obj 2025-07-17T07:47:49.5987647Z [7222/7682] Building CXX object caffe2\CMakeFiles\Dict_test.dir\__\aten\src\ATen\test\Dict_test.cpp.obj 2025-07-17T07:48:24.3014464Z [7223/7682] Building CXX object caffe2\CMakeFiles\apply_utils_test.dir\__\aten\src\ATen\test\apply_utils_test.cpp.obj 2025-07-17T07:48:27.2313475Z [7224/7682] Building CXX object caffe2\CMakeFiles\basic.dir\__\aten\src\ATen\test\basic.cpp.obj 2025-07-17T07:48:30.3527475Z [7225/7682] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX2.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-17T07:48:30.3529609Z 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-07-17T07:48:30.3695712Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(121): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:48:31.5294984Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(126): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:48:31.5296389Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen/cpu/vec/vec256/vec256_16bit_float.h(128): warning C4556: value of intrinsic immediate argument '8' is out of range '0 - 7' 2025-07-17T07:48:31.5297510Z [7226/7682] Building CXX object caffe2\CMakeFiles\atest.dir\__\aten\src\ATen\test\atest.cpp.obj 2025-07-17T07:48:31.6477195Z [7227/7682] Building CXX object caffe2\CMakeFiles\broadcast_test.dir\__\aten\src\ATen\test\broadcast_test.cpp.obj 2025-07-17T07:48:36.2450472Z [7228/7682] Building CXX object caffe2\CMakeFiles\cpu_allocator_test.dir\__\aten\src\ATen\test\cpu_allocator_test.cpp.obj 2025-07-17T07:48:38.9813070Z [7229/7682] Building CXX object caffe2\CMakeFiles\cpu_generator_test.dir\__\aten\src\ATen\test\cpu_generator_test.cpp.obj 2025-07-17T07:48:42.0833552Z [7230/7682] Building CXX object caffe2\CMakeFiles\cpu_profiling_allocator_test.dir\__\aten\src\ATen\test\cpu_profiling_allocator_test.cpp.obj 2025-07-17T07:48:43.0338243Z [7231/7682] Building CXX object caffe2\CMakeFiles\dlconvertor_test.dir\__\aten\src\ATen\test\dlconvertor_test.cpp.obj 2025-07-17T07:48:47.5683641Z [7232/7682] Building CXX object caffe2\CMakeFiles\extension_backend_test.dir\__\aten\src\ATen\test\extension_backend_test.cpp.obj 2025-07-17T07:48:48.7784441Z [7233/7682] Building CXX object caffe2\CMakeFiles\half_test.dir\__\aten\src\ATen\test\half_test.cpp.obj 2025-07-17T07:48:52.3840594Z [7234/7682] Building CXX object caffe2\CMakeFiles\lazy_tensor_test.dir\__\aten\src\ATen\test\lazy_tensor_test.cpp.obj 2025-07-17T07:48:52.6869693Z [7235/7682] Building CXX object caffe2\CMakeFiles\vec_test_all_types_DEFAULT.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-17T07:48:57.2318446Z [7236/7682] Building CXX object caffe2\CMakeFiles\cpu_rng_test.dir\__\aten\src\ATen\test\cpu_rng_test.cpp.obj 2025-07-17T07:48:58.7791247Z [7237/7682] Building CXX object caffe2\CMakeFiles\memory_format_test.dir\__\aten\src\ATen\test\memory_format_test.cpp.obj 2025-07-17T07:48:59.3164551Z [7238/7682] Building CXX object caffe2\CMakeFiles\math_kernel_test.dir\__\aten\src\ATen\test\math_kernel_test.cpp.obj 2025-07-17T07:49:00.5373167Z [7239/7682] Building CXX object caffe2\CMakeFiles\operator_name_test.dir\__\aten\src\ATen\test\operator_name_test.cpp.obj 2025-07-17T07:49:01.9168107Z [7240/7682] Building CXX object caffe2\CMakeFiles\vec_test_all_types_AVX512.dir\__\aten\src\ATen\test\vec_test_all_types.cpp.obj 2025-07-17T07:49:03.0170565Z [7241/7682] Building CXX object caffe2\CMakeFiles\memory_overlapping_test.dir\__\aten\src\ATen\test\memory_overlapping_test.cpp.obj 2025-07-17T07:49:04.5509095Z [7242/7682] Building CXX object caffe2\CMakeFiles\ivalue_test.dir\__\aten\src\ATen\test\ivalue_test.cpp.obj 2025-07-17T07:49:08.1617357Z [7243/7682] Building CXX object caffe2\CMakeFiles\native_test.dir\__\aten\src\ATen\test\native_test.cpp.obj 2025-07-17T07:49:09.1642447Z [7244/7682] Building CXX object caffe2\CMakeFiles\operators_test.dir\__\aten\src\ATen\test\operators_test.cpp.obj 2025-07-17T07:49:10.6804764Z [7245/7682] Building CXX object caffe2\CMakeFiles\packedtensoraccessor_test.dir\__\aten\src\ATen\test\packedtensoraccessor_test.cpp.obj 2025-07-17T07:49:12.7295977Z [7246/7682] Building CXX object caffe2\CMakeFiles\mobile_memory_cleanup.dir\__\aten\src\ATen\test\mobile_memory_cleanup.cpp.obj 2025-07-17T07:49:12.8251915Z [7247/7682] Building CXX object caffe2\CMakeFiles\quantized_test.dir\__\aten\src\ATen\test\quantized_test.cpp.obj 2025-07-17T07:49:14.6190835Z [7248/7682] Building CXX object caffe2\CMakeFiles\pow_test.dir\__\aten\src\ATen\test\pow_test.cpp.obj 2025-07-17T07:49:15.7985534Z [7249/7682] Building CXX object caffe2\CMakeFiles\reduce_ops_test.dir\__\aten\src\ATen\test\reduce_ops_test.cpp.obj 2025-07-17T07:49:18.4080965Z [7250/7682] Building CXX object caffe2\CMakeFiles\reportMemoryUsage_test.dir\__\aten\src\ATen\test\reportMemoryUsage_test.cpp.obj 2025-07-17T07:49:21.4332612Z [7251/7682] Building CXX object caffe2\CMakeFiles\StorageUtils_test.dir\__\aten\src\ATen\test\StorageUtils_test.cpp.obj 2025-07-17T07:49:21.6093595Z [7252/7682] Building CXX object caffe2\CMakeFiles\scalar_test.dir\__\aten\src\ATen\test\scalar_test.cpp.obj 2025-07-17T07:49:22.0418534Z [7253/7682] Building CXX object caffe2\CMakeFiles\scalar_tensor_test.dir\__\aten\src\ATen\test\scalar_tensor_test.cpp.obj 2025-07-17T07:49:22.6292856Z [7254/7682] Building CXX object caffe2\CMakeFiles\stride_properties_test.dir\__\aten\src\ATen\test\stride_properties_test.cpp.obj 2025-07-17T07:49:25.4557524Z [7255/7682] Building CXX object caffe2\CMakeFiles\type_ptr_test.dir\__\aten\src\ATen\test\type_ptr_test.cpp.obj 2025-07-17T07:49:27.2513814Z [7256/7682] Building CXX object caffe2\CMakeFiles\tensor_iterator_test.dir\__\aten\src\ATen\test\tensor_iterator_test.cpp.obj 2025-07-17T07:49:28.0447263Z [7257/7682] Building CXX object caffe2\CMakeFiles\thread_init_test.dir\__\aten\src\ATen\test\thread_init_test.cpp.obj 2025-07-17T07:49:29.8376847Z [7258/7682] Building CXX object caffe2\CMakeFiles\test_parallel.dir\__\aten\src\ATen\test\test_parallel.cpp.obj 2025-07-17T07:49:31.7410058Z [7259/7682] Building CXX object caffe2\CMakeFiles\verify_api_visibility.dir\__\aten\src\ATen\test\verify_api_visibility.cpp.obj 2025-07-17T07:49:31.9687334Z [7260/7682] Building CXX object caffe2\CMakeFiles\undefined_tensor_test.dir\__\aten\src\ATen\test\undefined_tensor_test.cpp.obj 2025-07-17T07:49:36.5861870Z [7261/7682] Building CXX object caffe2\CMakeFiles\legacy_vmap_test.dir\__\aten\src\ATen\test\legacy_vmap_test.cpp.obj 2025-07-17T07:49:36.8726576Z [7262/7682] Building CXX object caffe2\CMakeFiles\weakref_test.dir\__\aten\src\ATen\test\weakref_test.cpp.obj 2025-07-17T07:49:38.0111213Z [7263/7682] Building CXX object caffe2\CMakeFiles\wrapdim_test.dir\__\aten\src\ATen\test\wrapdim_test.cpp.obj 2025-07-17T07:49:40.1446306Z [7264/7682] Building CXX object caffe2\CMakeFiles\List_test.dir\__\aten\src\ATen\core\List_test.cpp.obj 2025-07-17T07:49:40.2720900Z [7265/7682] Building CXX object caffe2\CMakeFiles\xla_tensor_test.dir\__\aten\src\ATen\test\xla_tensor_test.cpp.obj 2025-07-17T07:49:41.6908388Z [7266/7682] Building CXX object caffe2\CMakeFiles\IListRef_test.dir\__\aten\src\ATen\core\IListRef_test.cpp.obj 2025-07-17T07:49:42.0713658Z [7267/7682] Building CXX object caffe2\CMakeFiles\type_test.dir\__\aten\src\ATen\test\type_test.cpp.obj 2025-07-17T07:49:47.7804105Z [7268/7682] Building CXX object caffe2\CMakeFiles\kernel_function_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_test.cpp.obj 2025-07-17T07:49:49.8568768Z [7269/7682] Building CXX object caffe2\CMakeFiles\kernel_function_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_function_legacy_test.cpp.obj 2025-07-17T07:49:51.0756755Z [7270/7682] Building CXX object caffe2\CMakeFiles\CppSignature_test.dir\__\aten\src\ATen\core\dispatch\CppSignature_test.cpp.obj 2025-07-17T07:49:51.9702052Z [7271/7682] Building CXX object caffe2\CMakeFiles\kernel_stackbased_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_stackbased_test.cpp.obj 2025-07-17T07:49:52.0480438Z [7272/7682] Building CXX object caffe2\CMakeFiles\kernel_lambda_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_test.cpp.obj 2025-07-17T07:49:53.0426966Z [7273/7682] Building CXX object caffe2\CMakeFiles\KernelFunction_test.dir\__\aten\src\ATen\core\boxing\KernelFunction_test.cpp.obj 2025-07-17T07:49:53.8148955Z [7274/7682] Building CXX object caffe2\CMakeFiles\kernel_lambda_legacy_test.dir\__\aten\src\ATen\core\boxing\impl\kernel_lambda_legacy_test.cpp.obj 2025-07-17T07:49:54.1486923Z [7275/7682] Building CXX object caffe2\CMakeFiles\op_allowlist_test.dir\__\aten\src\ATen\core\op_registration\op_allowlist_test.cpp.obj 2025-07-17T07:49:54.5358637Z [7276/7682] 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-07-17T07:49:56.5928115Z [7277/7682] Building CXX object caffe2\CMakeFiles\inline_container_test.dir\serialize\inline_container_test.cc.obj 2025-07-17T07:49:56.8617553Z [7278/7682] Building CXX object caffe2\CMakeFiles\cuda_apply_test.dir\__\aten\src\ATen\test\cuda_apply_test.cpp.obj 2025-07-17T07:50:01.8014021Z [7279/7682] Building CUDA object caffe2\CMakeFiles\cuda_atomic_ops_test.dir\__\aten\src\ATen\test\cuda_atomic_ops_test.cu.obj 2025-07-17T07:50:01.9299016Z cuda_atomic_ops_test.cu 2025-07-17T07:50:01.9299395Z tmpxft_00000328_00000000-7_cuda_atomic_ops_test.cudafe1.cpp 2025-07-17T07:50:01.9300086Z [7280/7682] Building CUDA object caffe2\CMakeFiles\cuda_complex_math_test.dir\__\aten\src\ATen\test\cuda_complex_math_test.cu.obj 2025-07-17T07:50:02.0089639Z cuda_complex_math_test.cu 2025-07-17T07:50:02.0090303Z tmpxft_00000f90_00000000-7_cuda_complex_math_test.cudafe1.cpp 2025-07-17T07:50:02.0093203Z [7281/7682] Building CUDA object caffe2\CMakeFiles\cuda_complex_test.dir\__\aten\src\ATen\test\cuda_complex_test.cu.obj 2025-07-17T07:50:02.7591630Z cuda_complex_test.cu 2025-07-17T07:50:02.7593439Z tmpxft_0000172c_00000000-7_cuda_complex_test.cudafe1.cpp 2025-07-17T07:50:02.7595118Z [7282/7682] Building CXX object caffe2\CMakeFiles\cuda_allocator_test.dir\__\aten\src\ATen\test\cuda_allocator_test.cpp.obj 2025-07-17T07:50:03.0256765Z [7283/7682] Building CXX object caffe2\CMakeFiles\backend_fallback_test.dir\__\aten\src\ATen\core\dispatch\backend_fallback_test.cpp.obj 2025-07-17T07:50:05.1851453Z [7284/7682] Building CXX object caffe2\CMakeFiles\cuda_caching_host_allocator_test.dir\__\aten\src\ATen\test\cuda_caching_host_allocator_test.cpp.obj 2025-07-17T07:50:05.4032883Z [7285/7682] Building CXX object caffe2\CMakeFiles\cuda_device_test.dir\__\aten\src\ATen\test\cuda_device_test.cpp.obj 2025-07-17T07:50:05.4566884Z [7286/7682] Building CUDA object caffe2\CMakeFiles\cuda_cub_test.dir\__\aten\src\ATen\test\cuda_cub_test.cu.obj 2025-07-17T07:50:06.2099702Z cuda_cub_test.cu 2025-07-17T07:50:06.2100070Z tmpxft_000014b8_00000000-7_cuda_cub_test.cudafe1.cpp 2025-07-17T07:50:06.2100814Z [7287/7682] Building CXX object caffe2\CMakeFiles\cuda_exchange_device_test.dir\__\aten\src\ATen\test\cuda_exchange_device_test.cpp.obj 2025-07-17T07:50:08.2146638Z [7288/7682] Building CUDA object caffe2\CMakeFiles\cuda_integer_divider_test.dir\__\aten\src\ATen\test\cuda_integer_divider_test.cu.obj 2025-07-17T07:50:08.2172210Z cuda_integer_divider_test.cu 2025-07-17T07:50:08.2172747Z tmpxft_0000148c_00000000-7_cuda_integer_divider_test.cudafe1.cpp 2025-07-17T07:50:08.2174264Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data 2025-07-17T07:50:08.2176698Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\xmemory(723): note: the template instantiation context (the oldest one first) is 2025-07-17T07:50:08.2179074Z 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-07-17T07:50:08.2181867Z 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-07-17T07:50:08.2183692Z with 2025-07-17T07:50:08.2184901Z [ 2025-07-17T07:50:08.2185197Z Value=unsigned __int64 2025-07-17T07:50:08.2212727Z ] 2025-07-17T07:50:08.2214611Z C:\actions-runner\_work\pytorch\pytorch\aten\src\ATen\test\cuda_integer_divider_test.cu(188): note: see the first reference to 'IntDividerTester::addTestCase' in 'testUint64Divider' 2025-07-17T07:50:08.2218534Z 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-07-17T07:50:08.2300106Z with 2025-07-17T07:50:08.2347889Z [ 2025-07-17T07:50:08.2349707Z _Ty=TestCase, 2025-07-17T07:50:08.2657613Z Value=unsigned __int64 2025-07-17T07:50:08.2658313Z ] 2025-07-17T07:50:08.2674646Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(862): note: see reference to function template instantiation '_Ty &std::vector<_Ty,std::allocator<_Ty>>::_Emplace_one_at_back(Value &,unsigned __int64 &&,int &)' being compiled 2025-07-17T07:50:08.2684534Z with 2025-07-17T07:50:08.2685266Z [ 2025-07-17T07:50:08.2685702Z _Ty=TestCase, 2025-07-17T07:50:08.2736003Z Value=unsigned __int64 2025-07-17T07:50:08.2737175Z ] 2025-07-17T07:50:08.2755142Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(780): 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-07-17T07:50:08.2768357Z with 2025-07-17T07:50:08.2768672Z [ 2025-07-17T07:50:08.2769015Z _Ty=TestCase, 2025-07-17T07:50:08.2769525Z Value=unsigned __int64 2025-07-17T07:50:08.2769940Z ] 2025-07-17T07:50:10.7234368Z C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include\vector(798): 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-07-17T07:50:10.7237011Z with 2025-07-17T07:50:10.7237920Z [ 2025-07-17T07:50:10.7238378Z _Alloc=std::allocator>, 2025-07-17T07:50:10.7239426Z _Ty=TestCase, 2025-07-17T07:50:10.7239973Z Value=unsigned __int64, 2025-07-17T07:50:10.7241385Z _Objty=TestCase 2025-07-17T07:50:10.7241924Z ] 2025-07-17T07:50:10.7243408Z [7289/7682] Building CUDA object caffe2\CMakeFiles\cuda_distributions_test.dir\__\aten\src\ATen\test\cuda_distributions_test.cu.obj 2025-07-17T07:50:14.2189075Z cuda_distributions_test.cu 2025-07-17T07:50:14.2189493Z tmpxft_000011e0_00000000-7_cuda_distributions_test.cudafe1.cpp 2025-07-17T07:50:14.2190223Z [7290/7682] Building CUDA object caffe2\CMakeFiles\cuda_generator_test.dir\__\aten\src\ATen\test\cuda_generator_test.cu.obj 2025-07-17T07:50:14.5154226Z cuda_generator_test.cu 2025-07-17T07:50:14.5154856Z tmpxft_00001278_00000000-7_cuda_generator_test.cudafe1.cpp 2025-07-17T07:50:14.5155984Z [7291/7682] Building CUDA object caffe2\CMakeFiles\cuda_half_test.dir\__\aten\src\ATen\test\cuda_half_test.cu.obj 2025-07-17T07:50:15.1001861Z cuda_half_test.cu 2025-07-17T07:50:15.1002223Z tmpxft_00001030_00000000-7_cuda_half_test.cudafe1.cpp 2025-07-17T07:50:15.1002903Z [7292/7682] Building CUDA object caffe2\CMakeFiles\cuda_optional_test.dir\__\aten\src\ATen\test\cuda_optional_test.cu.obj 2025-07-17T07:50:17.0828671Z cuda_optional_test.cu 2025-07-17T07:50:17.0829059Z tmpxft_000014a0_00000000-7_cuda_optional_test.cudafe1.cpp 2025-07-17T07:50:17.0829825Z [7293/7682] Building CXX object caffe2\CMakeFiles\cuda_allocatorTraceTracker_test.dir\__\aten\src\ATen\test\cuda_allocatorTraceTracker_test.cpp.obj 2025-07-17T07:50:17.3247446Z [7294/7682] Building CUDA object caffe2\CMakeFiles\cuda_packedtensoraccessor_test.dir\__\aten\src\ATen\test\cuda_packedtensoraccessor_test.cu.obj 2025-07-17T07:50:17.5665388Z cuda_packedtensoraccessor_test.cu 2025-07-17T07:50:17.5666176Z tmpxft_00001190_00000000-7_cuda_packedtensoraccessor_test.cudafe1.cpp 2025-07-17T07:50:17.5667217Z [7295/7682] Building C object sleef\src\libm\CMakeFiles\mkrename_gnuabi.dir\mkrename_gnuabi.c.obj 2025-07-17T07:50:17.6850659Z [7296/7682] Building C object sleef\src\libm\CMakeFiles\mkmasked_gnuabi.dir\mkmasked_gnuabi.c.obj 2025-07-17T07:50:17.8721410Z [7297/7682] Building C object sleef\src\common\CMakeFiles\addSuffix.dir\addSuffix.c.obj 2025-07-17T07:50:17.9703397Z [7298/7682] Building CXX object caffe2\CMakeFiles\cuda_dlconvertor_test.dir\__\aten\src\ATen\test\cuda_dlconvertor_test.cpp.obj 2025-07-17T07:50:19.4561135Z [7299/7682] Building CXX object caffe2\CMakeFiles\cuda_stream_test.dir\__\aten\src\ATen\test\cuda_stream_test.cpp.obj 2025-07-17T07:50:19.7122766Z [7300/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\__\common\main.cpp.obj 2025-07-17T07:50:19.8189586Z [7301/7682] Building CXX object caffe2\CMakeFiles\op_registration_test.dir\__\aten\src\ATen\core\op_registration\op_registration_test.cpp.obj 2025-07-17T07:50:21.6928388Z [7302/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\source_range_test.cpp.obj 2025-07-17T07:50:21.8565133Z [7303/7682] Building CUDA object caffe2\CMakeFiles\cuda_vectorized_test.dir\__\aten\src\ATen\test\cuda_vectorized_test.cu.obj 2025-07-17T07:50:22.4334828Z cuda_vectorized_test.cu 2025-07-17T07:50:22.4335279Z tmpxft_00000cf4_00000000-7_cuda_vectorized_test.cudafe1.cpp 2025-07-17T07:50:22.4359761Z [7304/7682] Building CXX object caffe2\CMakeFiles\cuda_reportMemoryUsage_test.dir\__\aten\src\ATen\test\cuda_reportMemoryUsage_test.cpp.obj 2025-07-17T07:50:26.6705857Z [7305/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_add_if_then_else.cpp.obj 2025-07-17T07:50:26.9086187Z [7306/7682] Building CXX object caffe2\CMakeFiles\cuda_cudnn_test.dir\__\aten\src\ATen\test\cuda_cudnn_test.cpp.obj 2025-07-17T07:50:30.2894617Z [7307/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_load_upgraders.cpp.obj 2025-07-17T07:50:35.0933998Z [7308/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_op_replacement.cpp.obj 2025-07-17T07:50:35.1929984Z [7309/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_alias_analysis.cpp.obj 2025-07-17T07:50:35.3497431Z [7310/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_upgrader_utils.cpp.obj 2025-07-17T07:50:35.6096891Z [7311/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_argument_spec.cpp.obj 2025-07-17T07:50:40.0063901Z [7312/7682] Building CXX object test_jit\CMakeFiles\torchbind_test.dir\test_custom_class_registrations.cpp.obj 2025-07-17T07:50:43.0537209Z [7313/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_code_template.cpp.obj 2025-07-17T07:50:43.2625380Z [7314/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_autodiff.cpp.obj 2025-07-17T07:50:44.1751995Z [7315/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_parser.cpp.obj 2025-07-17T07:50:49.8491049Z [7316/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_constant_pooling.cpp.obj 2025-07-17T07:50:51.7853498Z [7317/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_create_autodiff_subgraphs.cpp.obj 2025-07-17T07:50:51.9398582Z [7318/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cleanup_passes.cpp.obj 2025-07-17T07:50:52.0153598Z [7319/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_concat_opt.cpp.obj 2025-07-17T07:50:52.2551848Z [7320/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_backend.cpp.obj 2025-07-17T07:50:54.9709129Z [7321/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_type.cpp.obj 2025-07-17T07:50:56.0948485Z [7322/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_class_import.cpp.obj 2025-07-17T07:50:58.8148476Z [7323/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_dce.cpp.obj 2025-07-17T07:51:06.3790867Z [7324/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class.cpp.obj 2025-07-17T07:51:06.5423085Z [7325/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_operators.cpp.obj 2025-07-17T07:51:06.9602948Z [7326/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_fuser.cpp.obj 2025-07-17T07:51:11.8803818Z [7327/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_custom_class_registrations.cpp.obj 2025-07-17T07:51:14.3328337Z [7328/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_inliner.cpp.obj 2025-07-17T07:51:15.7245475Z [7329/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_executor.cpp.obj 2025-07-17T07:51:16.0169592Z [7330/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_graph_iterator.cpp.obj 2025-07-17T07:51:18.4533734Z [7331/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lexer.cpp.obj 2025-07-17T07:51:19.6957662Z [7332/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_cs_debug_info_serialization.cpp.obj 2025-07-17T07:51:20.1002865Z [7333/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_ir.cpp.obj 2025-07-17T07:51:22.0996576Z [7334/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_irparser.cpp.obj 2025-07-17T07:51:23.1153982Z [7335/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_type.cpp.obj 2025-07-17T07:51:27.4763818Z [7336/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interface.cpp.obj 2025-07-17T07:51:27.8928276Z [7337/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_interpreter.cpp.obj 2025-07-17T07:51:29.3594012Z [7338/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_memory_dag.cpp.obj 2025-07-17T07:51:34.6889814Z [7339/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_mobile_type_parser.cpp.obj 2025-07-17T07:51:36.1443152Z [7340/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_peephole_optimize.cpp.obj 2025-07-17T07:51:36.9055917Z [7341/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_qualified_name.cpp.obj 2025-07-17T07:51:40.9137143Z [7342/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter_direct.cpp.obj 2025-07-17T07:51:41.6627772Z [7343/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_trainer.cpp.obj 2025-07-17T07:51:42.4227931Z [7344/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_lite_interpreter.cpp.obj 2025-07-17T07:51:47.7393915Z [7345/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_misc.cpp.obj 2025-07-17T07:51:49.3585131Z [7346/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_matching.cpp.obj 2025-07-17T07:51:49.6582168Z [7347/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_schema_info.cpp.obj 2025-07-17T07:51:50.9258449Z [7348/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_matcher.cpp.obj 2025-07-17T07:51:51.3655185Z [7349/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_module_api.cpp.obj 2025-07-17T07:51:53.8070109Z [7350/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_stack_opt.cpp.obj 2025-07-17T07:51:56.6579164Z [7351/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_rewriter.cpp.obj 2025-07-17T07:51:57.2562592Z [7352/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_subgraph_utils.cpp.obj 2025-07-17T07:51:57.4744014Z [7353/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_union.cpp.obj 2025-07-17T07:51:58.9420597Z [7354/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_script_profile.cpp.obj 2025-07-17T07:51:59.4687640Z [7355/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_file_format.cpp.obj 2025-07-17T07:52:00.4011249Z [7356/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_save_load.cpp.obj 2025-07-17T07:52:00.8050828Z [7357/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\common\main.cpp.obj 2025-07-17T07:52:03.4431501Z [7358/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_utils.cpp.obj 2025-07-17T07:52:04.2051364Z [7359/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_jit_logging_levels.cpp.obj 2025-07-17T07:52:05.9693447Z [7360/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_file_util.cpp.obj 2025-07-17T07:52:07.4690877Z [7361/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_shape_analysis.cpp.obj 2025-07-17T07:52:11.5450832Z [7362/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_function_schema.cpp.obj 2025-07-17T07:52:15.6452253Z [7363/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_planner.cpp.obj 2025-07-17T07:52:18.7748590Z [7364/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_execution_frame.cpp.obj 2025-07-17T07:52:19.6870156Z [7365/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_alias_analyzer.cpp.obj 2025-07-17T07:52:21.8122945Z [7366/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_layout_planner_algorithm.cpp.obj 2025-07-17T07:52:22.6409601Z [7367/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph_signature.cpp.obj 2025-07-17T07:52:23.1039384Z [7368/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_graph.cpp.obj 2025-07-17T07:52:23.1409785Z [7369/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_mpmc_queue.cpp.obj 2025-07-17T07:52:23.1946365Z [7370/7682] Building CXX object test_jit\CMakeFiles\test_jit.dir\test_flatbuffer.cpp.obj 2025-07-17T07:52:24.7230844Z [7371/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_placement.cpp.obj 2025-07-17T07:52:28.0614212Z [7372/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_c10_kernel.cpp.obj 2025-07-17T07:52:32.0920897Z [7373/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_tensor_meta.cpp.obj 2025-07-17T07:52:32.6367619Z [7374/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_itree.cpp.obj 2025-07-17T07:52:32.8698888Z [7375/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\TensorMeta.cpp.obj 2025-07-17T07:52:35.9428124Z [7376/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_serialization.cpp.obj 2025-07-17T07:52:37.7265277Z [7377/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\PlacementUtils.cpp.obj 2025-07-17T07:52:39.4703812Z [7378/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_op_kernel.cpp.obj 2025-07-17T07:52:42.0864611Z [7379/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\GraphSignature.cpp.obj 2025-07-17T07:52:42.5336390Z [7380/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\common\FileUtil.cpp.obj 2025-07-17T07:52:44.7350876Z [7381/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Graph.cpp.obj 2025-07-17T07:52:47.8585069Z [7382/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\FunctionSchema.cpp.obj 2025-07-17T07:52:48.7754591Z [7383/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\graph\Serialization.cpp.obj 2025-07-17T07:52:52.2925309Z [7384/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\test_weights.cpp.obj 2025-07-17T07:52:52.9088532Z [7385/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\OpKernel.cpp.obj 2025-07-17T07:52:53.2723260Z [7386/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\Bump.cpp.obj 2025-07-17T07:52:53.6891462Z [7387/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\GreedyBySize.cpp.obj 2025-07-17T07:52:55.0625099Z [7388/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\DisjointStorageGroups.cpp.obj 2025-07-17T07:52:55.5005902Z [7389/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionPlanner.cpp.obj 2025-07-17T07:52:59.3872153Z [7390/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Weights.cpp.obj 2025-07-17T07:52:59.5720573Z [7391/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\detail\ITree.cpp.obj 2025-07-17T07:53:05.2865480Z [7392/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ExecutionFrame.cpp.obj 2025-07-17T07:53:06.5140304Z [7393/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutPlanner.cpp.obj 2025-07-17T07:53:08.0852248Z [7394/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\C10Kernel.cpp.obj 2025-07-17T07:53:08.1493313Z [7395/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\AliasAnalyzer.cpp.obj 2025-07-17T07:53:12.3913327Z [7396/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\memory\LayoutManager.cpp.obj 2025-07-17T07:53:17.1551944Z [7397/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\Executor.cpp.obj 2025-07-17T07:53:19.0740083Z [7398/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\KernelFactory.cpp.obj 2025-07-17T07:53:23.0026086Z [7399/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ConstantFolder.cpp.obj 2025-07-17T07:53:24.5711336Z [7400/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\GraphExecutorBase.cpp.obj 2025-07-17T07:53:24.8694139Z [7401/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\SerialGraphExecutor.cpp.obj 2025-07-17T07:53:25.4938633Z [7402/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\executor\ParallelGraphExecutor.cpp.obj 2025-07-17T07:53:25.5464582Z [7403/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_approx.cpp.obj 2025-07-17T07:53:26.3546671Z [7404/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\__\common\main.cpp.obj 2025-07-17T07:53:30.8092588Z [7405/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\AutoFunctionalizeKernel.cpp.obj 2025-07-17T07:53:35.1499932Z [7406/7682] Building CXX object test_inductor\CMakeFiles\aoti_custom_ops.dir\custom_ops.cpp.obj 2025-07-17T07:53:35.1657553Z [7407/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\CallTorchBindKernel.cpp.obj 2025-07-17T07:53:35.6860441Z [7408/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\padded_buffer.cpp.obj 2025-07-17T07:53:37.2317685Z [7409/7682] Building CXX object test_nativert\CMakeFiles\test_nativert.dir\__\__\__\torch\nativert\kernels\HigherOrderKernel.cpp.obj 2025-07-17T07:53:39.2813943Z [7410/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_aten.cpp.obj 2025-07-17T07:53:41.4069654Z [7411/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_boundsinference.cpp.obj 2025-07-17T07:53:47.5218894Z [7412/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_printer.cpp.obj 2025-07-17T07:53:48.0291338Z [7413/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cpp_codegen.cpp.obj 2025-07-17T07:53:51.2587189Z [7414/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_expr.cpp.obj 2025-07-17T07:53:54.4136050Z [7415/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_conv.cpp.obj 2025-07-17T07:53:54.8508548Z [7416/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ir_verifier.cpp.obj 2025-07-17T07:53:56.4803773Z [7417/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_external_calls.cpp.obj 2025-07-17T07:53:57.6981069Z [7418/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_dynamic_shapes.cpp.obj 2025-07-17T07:54:01.2370872Z [7419/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_graph_opt.cpp.obj 2025-07-17T07:54:15.0263161Z [7420/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memplanning.cpp.obj 2025-07-17T07:54:15.9761225Z [7421/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_memdependency.cpp.obj 2025-07-17T07:54:17.0866256Z [7422/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_kernel.cpp.obj 2025-07-17T07:54:17.3090512Z [7423/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_loopnest.cpp.obj 2025-07-17T07:54:19.2791529Z [7424/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_ops.cpp.obj 2025-07-17T07:54:24.0781608Z [7425/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_reductions.cpp.obj 2025-07-17T07:54:25.4040782Z [7426/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_quantization.cpp.obj 2025-07-17T07:54:30.4737753Z [7427/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_te_fuser_pass.cpp.obj 2025-07-17T07:54:31.1187881Z [7428/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type.cpp.obj 2025-07-17T07:54:31.3805388Z [7429/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_registerizer.cpp.obj 2025-07-17T07:54:32.7090737Z [7430/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_type_specializations.cpp.obj 2025-07-17T07:54:37.3138160Z [7431/7682] Building CXX object test_cpp_c10d\CMakeFiles\BackoffTest.dir\BackoffTest.cpp.obj 2025-07-17T07:54:38.4639216Z [7432/7682] Building CXX object test_cpp_c10d\CMakeFiles\FileStoreTest.dir\FileStoreTest.cpp.obj 2025-07-17T07:54:38.8270035Z [7433/7682] Building CXX object test_cpp_c10d\CMakeFiles\TCPStoreTest.dir\TCPStoreTest.cpp.obj 2025-07-17T07:54:40.6316296Z [7434/7682] Building CXX object test_api\CMakeFiles\test_api.dir\__\common\main.cpp.obj 2025-07-17T07:54:43.2909510Z [7435/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_cuda.cpp.obj 2025-07-17T07:54:50.0069836Z [7436/7682] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooTest.dir\ProcessGroupGlooTest.cpp.obj 2025-07-17T07:54:50.1152866Z [7437/7682] Building CXX object test_tensorexpr\CMakeFiles\test_tensorexpr.dir\test_simplify.cpp.obj 2025-07-17T07:54:50.3744005Z [7438/7682] Building CXX object test_tensorexpr\CMakeFiles\tutorial_tensorexpr.dir\tutorial.cpp.obj 2025-07-17T07:54:54.3028031Z [7439/7682] Building CXX object test_cpp_c10d\CMakeFiles\ProcessGroupGlooAsyncTest.dir\ProcessGroupGlooAsyncTest.cpp.obj 2025-07-17T07:55:02.3590353Z [7440/7682] Building CXX object test_api\CMakeFiles\test_api.dir\any.cpp.obj 2025-07-17T07:55:07.7928009Z [7441/7682] Building CXX object test_api\CMakeFiles\test_api.dir\autograd.cpp.obj 2025-07-17T07:55:10.6063278Z [7442/7682] Building CXX object test_api\CMakeFiles\test_api.dir\expanding-array.cpp.obj 2025-07-17T07:55:11.0162721Z [7443/7682] Building CXX object test_api\CMakeFiles\test_api.dir\fft.cpp.obj 2025-07-17T07:55:12.1674768Z [7444/7682] Building CXX object test_api\CMakeFiles\test_api.dir\enum.cpp.obj 2025-07-17T07:55:14.2970227Z [7445/7682] Building CXX object test_api\CMakeFiles\test_api.dir\memory.cpp.obj 2025-07-17T07:55:15.6954809Z [7446/7682] Building CXX object test_api\CMakeFiles\test_api.dir\dataloader.cpp.obj 2025-07-17T07:55:24.0902239Z [7447/7682] Building CXX object test_api\CMakeFiles\test_api.dir\functional.cpp.obj 2025-07-17T07:55:28.0555343Z [7448/7682] Building CXX object test_api\CMakeFiles\test_api.dir\init.cpp.obj 2025-07-17T07:55:28.2942606Z [7449/7682] Building CXX object test_api\CMakeFiles\test_api.dir\jit.cpp.obj 2025-07-17T07:55:31.8823987Z [7450/7682] Building CXX object test_api\CMakeFiles\test_api.dir\ivalue.cpp.obj 2025-07-17T07:55:31.9064782Z [7451/7682] Building CXX object test_api\CMakeFiles\test_api.dir\integration.cpp.obj 2025-07-17T07:55:34.7143146Z [7452/7682] Building CXX object test_api\CMakeFiles\test_api.dir\meta_tensor.cpp.obj 2025-07-17T07:55:35.9533031Z [7453/7682] Building CXX object test_api\CMakeFiles\test_api.dir\misc.cpp.obj 2025-07-17T07:55:45.7332219Z [7454/7682] Building CXX object test_api\CMakeFiles\test_api.dir\module.cpp.obj 2025-07-17T07:55:48.1131283Z [7455/7682] Building CXX object test_api\CMakeFiles\test_api.dir\moduledict.cpp.obj 2025-07-17T07:55:48.7767187Z [7456/7682] Building CXX object test_api\CMakeFiles\test_api.dir\modulelist.cpp.obj 2025-07-17T07:55:50.5706597Z [7457/7682] Building CXX object test_api\CMakeFiles\test_api.dir\nested.cpp.obj 2025-07-17T07:55:54.4161009Z [7458/7682] Building CXX object test_api\CMakeFiles\test_api.dir\parameterdict.cpp.obj 2025-07-17T07:55:56.6175693Z [7459/7682] Building CXX object test_api\CMakeFiles\test_api.dir\parameterlist.cpp.obj 2025-07-17T07:56:05.7306740Z [7460/7682] Building CXX object test_api\CMakeFiles\test_api.dir\modules.cpp.obj 2025-07-17T07:56:07.8068618Z [7461/7682] Building CXX object test_api\CMakeFiles\test_api.dir\namespace.cpp.obj 2025-07-17T07:56:11.6378461Z [7462/7682] Building CXX object test_api\CMakeFiles\test_api.dir\nn_utils.cpp.obj 2025-07-17T07:56:14.7810946Z [7463/7682] Building CXX object test_api\CMakeFiles\test_api.dir\ordered_dict.cpp.obj 2025-07-17T07:56:18.4576931Z [7464/7682] Building CXX object test_api\CMakeFiles\test_api.dir\optim.cpp.obj 2025-07-17T07:56:18.6396427Z [7465/7682] Building CXX object test_api\CMakeFiles\test_api.dir\rnn.cpp.obj 2025-07-17T07:56:23.9203184Z [7466/7682] Building CXX object test_api\CMakeFiles\test_api.dir\sequential.cpp.obj 2025-07-17T07:56:29.7828341Z [7467/7682] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_cuda.cpp.obj 2025-07-17T07:56:32.1570172Z [7468/7682] Building CXX object test_api\CMakeFiles\test_api.dir\support.cpp.obj 2025-07-17T07:56:33.0017383Z [7469/7682] Building CXX object test_api\CMakeFiles\test_api.dir\serialize.cpp.obj 2025-07-17T07:56:33.3611308Z [7470/7682] Building CXX object test_api\CMakeFiles\test_api.dir\special.cpp.obj 2025-07-17T07:56:34.3180948Z [7471/7682] Building CXX object test_api\CMakeFiles\test_api.dir\transformer.cpp.obj 2025-07-17T07:56:35.2414745Z [7472/7682] Building CXX object test_api\CMakeFiles\test_api.dir\static.cpp.obj 2025-07-17T07:56:45.7325539Z [7473/7682] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_indexing.cpp.obj 2025-07-17T07:56:49.4540449Z [7474/7682] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options_cuda.cpp.obj 2025-07-17T07:56:50.5477593Z [7475/7682] Building CXX object test_api\CMakeFiles\test_api.dir\grad_mode.cpp.obj 2025-07-17T07:56:51.4862705Z [7476/7682] Building CXX object test_api\CMakeFiles\test_api.dir\inference_mode.cpp.obj 2025-07-17T07:56:51.6822968Z [7477/7682] Building CXX object test_api\CMakeFiles\test_api.dir\tensor_options.cpp.obj 2025-07-17T07:56:51.7622185Z [7478/7682] Building CXX object test_api\CMakeFiles\test_api.dir\torch_include.cpp.obj 2025-07-17T07:56:53.8400164Z [7479/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\__\common\main.cpp.obj 2025-07-17T07:56:55.3178258Z [7480/7682] Building CXX object test_api\CMakeFiles\test_api.dir\tensor.cpp.obj 2025-07-17T07:57:01.7558184Z [7481/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_cache.cpp.obj 2025-07-17T07:57:04.0762070Z [7482/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir.cpp.obj 2025-07-17T07:57:05.6728029Z [7483/7682] Building CXX object test_api\CMakeFiles\test_api.dir\operations.cpp.obj 2025-07-17T07:57:06.4567540Z [7484/7682] Building CXX object test_api\CMakeFiles\test_api.dir\parallel.cpp.obj 2025-07-17T07:57:07.6291144Z [7485/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_permutation_util.cpp.obj 2025-07-17T07:57:08.2197858Z [7486/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_misc.cpp.obj 2025-07-17T07:57:09.5656491Z [7487/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_ir_util.cpp.obj 2025-07-17T07:57:10.0289991Z [7488/7682] Building CXX object test_api\CMakeFiles\parallel_benchmark.dir\parallel_benchmark.cpp.obj 2025-07-17T07:57:10.4735074Z [7489/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_util.cpp.obj 2025-07-17T07:57:10.6573383Z [7490/7682] Building CXX object test_api\CMakeFiles\test_api.dir\nested_int.cpp.obj 2025-07-17T07:57:11.5333494Z [7491/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_backend_device.cpp.obj 2025-07-17T07:57:13.8247033Z [7492/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_shape.cpp.obj 2025-07-17T07:57:15.1330349Z [7493/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_trie_cache.cpp.obj 2025-07-17T07:57:20.5319055Z [7494/7682] Building C object functorch\CMakeFiles\functorch.dir\csrc\dim\dim_opcode.c.obj 2025-07-17T07:57:22.5746226Z C:\actions-runner\_work\pytorch\pytorch\torch/csrc/utils/python_compat.h(41): warning C4273: '_PyWeakref_ClearRef': inconsistent dll linkage 2025-07-17T07:57:22.5747934Z C:\Jenkins\Miniconda3\include\weakrefobject.h(67): note: see previous definition of '_PyWeakref_ClearRef' 2025-07-17T07:57:22.5759633Z [7495/7682] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_lib.cpp.obj 2025-07-17T07:57:23.6711934Z [7496/7682] Linking CXX static library lib\libprotobuf-lite.lib 2025-07-17T07:57:23.7950703Z [7497/7682] Linking C static library lib\cpuinfo_internals.lib 2025-07-17T07:57:26.5155104Z [7498/7682] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\dim\dim.cpp.obj 2025-07-17T07:57:26.9127157Z [7499/7682] Linking CXX static library lib\gmock_main.lib 2025-07-17T07:57:26.9805309Z [7500/7682] Linking CXX static library lib\benchmark_main.lib 2025-07-17T07:57:27.0373251Z [7501/7682] Linking C static library lib\libjitprofiling.lib 2025-07-17T07:57:27.2220750Z [7502/7682] Linking CXX static library lib\fmt.lib 2025-07-17T07:57:28.0409645Z [7503/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_graph_executor.cpp.obj 2025-07-17T07:57:28.5179055Z [7504/7682] Linking CXX executable bin\c10_CompileTimeFunctionPointer_test.exe 2025-07-17T07:57:28.5279208Z [7505/7682] Linking CXX executable bin\c10_DeviceGuard_test.exe 2025-07-17T07:57:28.7839470Z [7506/7682] Linking CXX executable bin\c10_Device_test.exe 2025-07-17T07:57:28.9702086Z [7507/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops_util.cpp.obj 2025-07-17T07:57:28.9917047Z [7508/7682] Linking CXX executable bin\c10_DispatchKeySet_test.exe 2025-07-17T07:57:29.0723230Z [7509/7682] Linking CXX executable bin\c10_Scalar_test.exe 2025-07-17T07:57:29.1676193Z [7510/7682] Linking CXX executable bin\c10_StreamGuard_test.exe 2025-07-17T07:57:29.2748291Z [7511/7682] Linking CXX executable bin\c10_SymInt_test.exe 2025-07-17T07:57:29.3742858Z [7512/7682] Building CXX object caffe2\torch\CMakeFiles\nnapi_backend.dir\csrc\jit\backends\nnapi\nnapi_backend_preprocess.cpp.obj 2025-07-17T07:57:29.3859581Z [7513/7682] Linking CXX executable bin\c10_InlineDeviceGuard_test.exe 2025-07-17T07:57:29.4991032Z [7514/7682] Linking CXX executable bin\c10_InlineStreamGuard_test.exe 2025-07-17T07:57:29.5793582Z [7515/7682] Linking CXX executable bin\c10_SizesAndStrides_test.exe 2025-07-17T07:57:29.6515363Z [7516/7682] Linking CXX executable bin\c10_ArrayRef_test.exe 2025-07-17T07:57:29.8120439Z [7517/7682] Linking CXX executable bin\c10_ConstexprCrc_test.exe 2025-07-17T07:57:29.8614030Z [7518/7682] Linking CXX executable bin\c10_Bitset_test.exe 2025-07-17T07:57:29.8768790Z [7519/7682] Linking CXX executable bin\c10_DeadlockDetection_test.exe 2025-07-17T07:57:30.1272006Z [7520/7682] Linking CXX executable bin\c10_Half_test.exe 2025-07-17T07:57:30.2040114Z [7521/7682] Linking CXX executable bin\c10_cow_test.exe 2025-07-17T07:57:30.2328000Z [7522/7682] Linking CXX executable bin\c10_IntrusiveList_test.exe 2025-07-17T07:57:30.2339257Z [7523/7682] Linking CXX executable bin\c10_Enumerate_test.exe 2025-07-17T07:57:30.4518871Z [7524/7682] Linking CXX executable bin\c10_Semaphore_test.exe 2025-07-17T07:57:30.5110744Z [7525/7682] Linking CXX executable bin\c10_NetworkFlow_test.exe 2025-07-17T07:57:30.5514249Z [7526/7682] Linking CXX executable bin\c10_LeftRight_test.exe 2025-07-17T07:57:30.5678658Z [7527/7682] Linking CXX executable bin\c10_Metaprogramming_test.exe 2025-07-17T07:57:30.6987868Z [7528/7682] Linking CXX executable bin\c10_Synchronized_test.exe 2025-07-17T07:57:30.7916790Z [7529/7682] Linking CXX executable bin\c10_TypeIndex_test.exe 2025-07-17T07:57:30.8059794Z [7530/7682] Linking CXX executable bin\c10_TypeList_test.exe 2025-07-17T07:57:30.8590398Z [7531/7682] Linking CXX executable bin\c10_ThreadLocal_test.exe 2025-07-17T07:57:30.8752730Z [7532/7682] Linking CXX executable bin\c10_TypeTraits_test.exe 2025-07-17T07:57:31.0586265Z [7533/7682] Linking CXX executable bin\c10_accumulate_test.exe 2025-07-17T07:57:31.0756896Z [7534/7682] Linking CXX executable bin\c10_bit_cast_test.exe 2025-07-17T07:57:31.2291466Z [7535/7682] Linking CXX executable bin\c10_bfloat16_test.exe 2025-07-17T07:57:31.2303088Z [7536/7682] Linking CXX executable bin\c10_complex_math_test.exe 2025-07-17T07:57:31.2874068Z [7537/7682] Linking CXX executable bin\c10_error_test.exe 2025-07-17T07:57:31.3501531Z [7538/7682] Linking CXX executable bin\c10_complex_test.exe 2025-07-17T07:57:31.4550162Z [7539/7682] Linking CXX executable bin\c10_exception_test.exe 2025-07-17T07:57:31.4656072Z [7540/7682] Linking CXX executable bin\c10_generic_math_test.exe 2025-07-17T07:57:31.5630113Z [7541/7682] Linking CXX executable bin\c10_flags_test.exe 2025-07-17T07:57:31.6641953Z [7542/7682] Linking CXX executable bin\c10_irange_test.exe 2025-07-17T07:57:31.7277527Z [7543/7682] Linking CXX executable bin\c10_lazy_test.exe 2025-07-17T07:57:31.8813515Z [7544/7682] Linking CXX executable bin\c10_logging_test.exe 2025-07-17T07:57:32.2407700Z [7545/7682] Linking CXX executable bin\c10_registry_test.exe 2025-07-17T07:57:32.2937717Z [7546/7682] Linking CXX executable bin\c10_ordered_preserving_dict_test.exe 2025-07-17T07:57:32.5140360Z [7547/7682] Linking CXX executable bin\c10_ssize_test.exe 2025-07-17T07:57:32.5525361Z [7548/7682] Linking CXX executable bin\c10_optional_test.exe 2025-07-17T07:57:32.7245210Z [7549/7682] Linking CXX executable bin\c10_string_view_test.exe 2025-07-17T07:57:32.9496472Z [7550/7682] Linking CXX executable bin\c10_tempfile_test.exe 2025-07-17T07:57:32.9519446Z [7551/7682] Linking CXX executable bin\c10_string_util_test.exe 2025-07-17T07:57:33.3436939Z [7552/7682] Linking CXX executable bin\c10_typeid_test.exe 2025-07-17T07:57:33.4760636Z [7553/7682] Linking CXX executable bin\c10_intrusive_ptr_test.exe 2025-07-17T07:57:33.7313304Z [7554/7682] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_1_var_test.exe 2025-07-17T07:57:33.8135667Z [7555/7682] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_stream.exe 2025-07-17T07:57:34.0364161Z [7556/7682] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_from_2_processes.exe 2025-07-17T07:57:34.0528354Z [7557/7682] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe 2025-07-17T07:57:34.4191477Z [7558/7682] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe 2025-07-17T07:57:34.4333425Z [7559/7682] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe 2025-07-17T07:57:34.6398002Z [7560/7682] Linking CXX executable bin\c10_cuda_CUDATest.exe 2025-07-17T07:57:34.7652525Z [7561/7682] Linking CXX executable bin\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe 2025-07-17T07:57:35.0185155Z [7562/7682] Linking CXX shared library bin\caffe2_nvrtc.dll 2025-07-17T07:57:35.1904820Z [7563/7682] Linking C executable sleef\bin\mkrename_gnuabi.exe 2025-07-17T07:57:35.2475927Z [7564/7682] Linking C shared library bin\torch_global_deps.dll 2025-07-17T07:57:35.4090734Z [7565/7682] Linking CXX executable bin\c10_small_vector_test.exe 2025-07-17T07:57:35.4718437Z [7566/7682] Linking C executable sleef\bin\mkmasked_gnuabi.exe 2025-07-17T07:57:35.5915698Z [7567/7682] Linking C executable sleef\bin\addSuffix.exe 2025-07-17T07:57:35.7342786Z [7568/7682] Linking CXX executable bin\c10_intrusive_ptr_benchmark.exe 2025-07-17T07:57:40.6549400Z [7569/7682] Building C object sleef\src\common\CMakeFiles\arraymap.dir\arraymap.c.obj 2025-07-17T07:57:41.8319367Z [7570/7682] Building CXX object functorch\CMakeFiles\functorch.dir\csrc\init_dim_only.cpp.obj 2025-07-17T07:57:43.5326955Z [7571/7682] Linking C static library lib\microkernels-all.lib 2025-07-17T07:57:44.2890583Z [7572/7682] Building CXX object test_lazy\CMakeFiles\test_lazy.dir\test_lazy_ops.cpp.obj 2025-07-17T08:01:43.9909925Z [7573/7682] Linking CXX shared library bin\torch_cpu.dll 2025-07-17T08:01:45.2312859Z [7574/7682] Linking CXX executable bin\FileStoreTest.exe 2025-07-17T08:01:45.2522612Z [7575/7682] Linking CXX executable bin\BackoffTest.exe 2025-07-17T08:01:45.2542770Z [7576/7682] Linking CXX executable bin\TCPStoreTest.exe 2025-07-17T08:02:53.9733834Z [7577/7682] Linking CXX shared library bin\torch_cuda.dll 2025-07-17T08:02:54.1478177Z [7578/7682] Linking CXX shared library bin\torch.dll 2025-07-17T08:02:54.1631727Z [7579/7682] Linking CXX shared library bin\c10d_cuda_test.dll 2025-07-17T08:02:54.3944594Z [7580/7682] Linking CXX shared library bin\shm.dll 2025-07-17T08:02:54.5366096Z [7581/7682] Linking CXX executable bin\Dimname_test.exe 2025-07-17T08:02:54.9133106Z [7582/7682] Linking CXX shared library bin\jitbackend_test.dll 2025-07-17T08:02:55.0586817Z [7583/7682] Linking CXX executable bin\Dict_test.exe 2025-07-17T08:02:55.4275122Z [7584/7682] Linking CXX executable bin\MaybeOwned_test.exe 2025-07-17T08:02:55.4628099Z [7585/7682] Linking CXX shared library bin\backend_with_compiler.dll 2025-07-17T08:02:55.4639250Z [7586/7682] Linking CXX executable bin\NamedTensor_test.exe 2025-07-17T08:02:55.5840855Z [7587/7682] Linking CXX executable bin\apply_utils_test.exe 2025-07-17T08:02:56.0293542Z [7588/7682] Linking CXX executable bin\broadcast_test.exe 2025-07-17T08:02:56.0304773Z [7589/7682] Linking CXX executable bin\cpu_allocator_test.exe 2025-07-17T08:02:56.0316223Z [7590/7682] Linking CXX executable bin\atest.exe 2025-07-17T08:02:56.1096031Z [7591/7682] Linking CXX executable bin\basic.exe 2025-07-17T08:02:56.5779749Z [7592/7682] Linking CXX executable bin\cpu_profiling_allocator_test.exe 2025-07-17T08:02:56.5791271Z [7593/7682] Linking CXX executable bin\dlconvertor_test.exe 2025-07-17T08:02:56.5911169Z [7594/7682] Linking CXX executable bin\cpu_generator_test.exe 2025-07-17T08:02:57.0927822Z [7595/7682] Linking CXX executable bin\half_test.exe 2025-07-17T08:02:57.2051981Z [7596/7682] Linking CXX executable bin\extension_backend_test.exe 2025-07-17T08:02:57.5539141Z [7597/7682] Linking CXX executable bin\lazy_tensor_test.exe 2025-07-17T08:02:57.6733227Z [7598/7682] Linking CXX executable bin\math_kernel_test.exe 2025-07-17T08:02:57.7381180Z [7599/7682] Linking CXX executable bin\ivalue_test.exe 2025-07-17T08:02:58.0907601Z [7600/7682] Linking CXX executable bin\memory_format_test.exe 2025-07-17T08:02:58.1924807Z [7601/7682] Linking CXX executable bin\memory_overlapping_test.exe 2025-07-17T08:02:58.2258998Z [7602/7682] Linking CXX executable bin\mobile_memory_cleanup.exe 2025-07-17T08:02:58.3074199Z [7603/7682] Linking CXX executable bin\cpu_rng_test.exe 2025-07-17T08:02:58.5178140Z [7604/7682] Linking CXX executable bin\operator_name_test.exe 2025-07-17T08:02:58.6826545Z [7605/7682] Linking CXX executable bin\operators_test.exe 2025-07-17T08:02:58.7015917Z [7606/7682] Linking CXX executable bin\native_test.exe 2025-07-17T08:02:58.7936942Z [7607/7682] Linking CXX executable bin\packedtensoraccessor_test.exe 2025-07-17T08:02:59.1504526Z [7608/7682] Linking CXX executable bin\reduce_ops_test.exe 2025-07-17T08:02:59.2797434Z [7609/7682] Linking CXX executable bin\quantized_test.exe 2025-07-17T08:02:59.2955843Z [7610/7682] Linking CXX executable bin\reportMemoryUsage_test.exe 2025-07-17T08:02:59.3551928Z [7611/7682] Linking CXX executable bin\pow_test.exe 2025-07-17T08:02:59.8059191Z [7612/7682] Linking CXX executable bin\scalar_tensor_test.exe 2025-07-17T08:02:59.8696696Z [7613/7682] Linking CXX executable bin\StorageUtils_test.exe 2025-07-17T08:02:59.8861847Z [7614/7682] Linking CXX executable bin\stride_properties_test.exe 2025-07-17T08:02:59.9534894Z [7615/7682] Linking CXX executable bin\scalar_test.exe 2025-07-17T08:03:00.3685740Z [7616/7682] Linking CXX executable bin\thread_init_test.exe 2025-07-17T08:03:00.3747491Z [7617/7682] Linking CXX executable bin\type_ptr_test.exe 2025-07-17T08:03:00.4073744Z [7618/7682] Linking CXX executable bin\test_parallel.exe 2025-07-17T08:03:00.8571193Z [7619/7682] Linking CXX executable bin\verify_api_visibility.exe 2025-07-17T08:03:00.8929159Z [7620/7682] Linking CXX executable bin\vec_test_all_types_DEFAULT.exe 2025-07-17T08:03:00.9105728Z [7621/7682] Linking CXX executable bin\undefined_tensor_test.exe 2025-07-17T08:03:01.0197859Z [7622/7682] Linking CXX executable bin\type_test.exe 2025-07-17T08:03:01.0346098Z [7623/7682] Linking CXX executable bin\tensor_iterator_test.exe 2025-07-17T08:03:01.1924780Z [7624/7682] Linking CXX executable bin\vec_test_all_types_AVX2.exe 2025-07-17T08:03:01.3584160Z [7625/7682] Linking CXX executable bin\weakref_test.exe 2025-07-17T08:03:01.4122422Z [7626/7682] Linking CXX executable bin\wrapdim_test.exe 2025-07-17T08:03:01.5455760Z [7627/7682] Linking CXX executable bin\xla_tensor_test.exe 2025-07-17T08:03:01.5989166Z [7628/7682] Linking CXX executable bin\vec_test_all_types_AVX512.exe 2025-07-17T08:03:01.6682158Z [7629/7682] Linking CXX executable bin\IListRef_test.exe 2025-07-17T08:03:01.7012533Z [7630/7682] Linking CXX executable bin\legacy_vmap_test.exe 2025-07-17T08:03:02.0842717Z [7631/7682] Linking CXX executable bin\KernelFunction_test.exe 2025-07-17T08:03:02.3713276Z [7632/7682] Linking CXX executable bin\kernel_stackbased_test.exe 2025-07-17T08:03:02.4063876Z [7633/7682] Linking CXX executable bin\List_test.exe 2025-07-17T08:03:02.7057796Z [7634/7682] Linking CXX executable bin\CppSignature_test.exe 2025-07-17T08:03:03.0083452Z [7635/7682] Linking CXX executable bin\op_allowlist_test.exe 2025-07-17T08:03:03.0254823Z [7636/7682] Linking CXX executable bin\backend_fallback_test.exe 2025-07-17T08:03:03.4867612Z [7637/7682] Linking CXX executable bin\kernel_function_test.exe 2025-07-17T08:03:03.8695273Z [7638/7682] Linking CXX executable bin\kernel_lambda_test.exe 2025-07-17T08:03:03.8809732Z [7639/7682] Linking CXX executable bin\make_boxed_from_unboxed_functor_test.exe 2025-07-17T08:03:04.0524079Z [7640/7682] Linking CXX executable bin\inline_container_test.exe 2025-07-17T08:03:04.1329431Z [7641/7682] Linking CXX executable bin\cuda_allocator_test.exe 2025-07-17T08:03:04.2624212Z [7642/7682] Linking CXX executable bin\cuda_apply_test.exe 2025-07-17T08:03:04.3839715Z [7643/7682] Linking CXX executable bin\kernel_function_legacy_test.exe 2025-07-17T08:03:04.6837703Z [7644/7682] Linking CXX executable bin\cuda_atomic_ops_test.exe 2025-07-17T08:03:04.7544704Z [7645/7682] Linking CXX executable bin\cuda_complex_math_test.exe 2025-07-17T08:03:04.8220704Z [7646/7682] Linking CXX executable bin\cuda_complex_test.exe 2025-07-17T08:03:04.8529180Z [7647/7682] Linking CXX executable bin\cuda_caching_host_allocator_test.exe 2025-07-17T08:03:05.1192864Z [7648/7682] Linking CXX executable bin\cuda_cub_test.exe 2025-07-17T08:03:05.1376518Z [7649/7682] Linking CXX executable bin\cuda_device_test.exe 2025-07-17T08:03:05.2116828Z [7650/7682] Linking CXX executable bin\cuda_exchange_device_test.exe 2025-07-17T08:03:05.5307694Z [7651/7682] Linking CXX executable bin\cuda_dlconvertor_test.exe 2025-07-17T08:03:05.6596933Z [7652/7682] Linking CXX executable bin\cuda_distributions_test.exe 2025-07-17T08:03:05.7071127Z [7653/7682] Linking CXX executable bin\kernel_lambda_legacy_test.exe 2025-07-17T08:03:05.7458206Z [7654/7682] Linking CXX executable bin\cuda_integer_divider_test.exe 2025-07-17T08:03:05.8294464Z [7655/7682] Linking CXX executable bin\cuda_half_test.exe 2025-07-17T08:03:05.9609537Z [7656/7682] Linking CXX executable bin\cuda_generator_test.exe 2025-07-17T08:03:06.0583553Z [7657/7682] Linking CXX executable bin\cuda_allocatorTraceTracker_test.exe 2025-07-17T08:03:06.2627393Z [7658/7682] Linking CXX executable bin\cuda_optional_test.exe 2025-07-17T08:03:06.2798806Z [7659/7682] Linking CXX executable bin\cuda_packedtensoraccessor_test.exe 2025-07-17T08:03:06.3293934Z [7660/7682] Linking CXX executable bin\cuda_reportMemoryUsage_test.exe 2025-07-17T08:03:06.4806877Z [7661/7682] Linking CXX executable bin\cuda_stream_test.exe 2025-07-17T08:03:06.7000662Z [7662/7682] Linking CXX executable bin\cuda_vectorized_test.exe 2025-07-17T08:03:06.8249882Z [7663/7682] Linking CXX executable bin\cuda_cudnn_test.exe 2025-07-17T08:03:07.0871748Z [7664/7682] Linking CXX executable bin\tutorial_tensorexpr.exe 2025-07-17T08:03:07.4369887Z [7665/7682] Linking CXX executable bin\ProcessGroupGlooTest.exe 2025-07-17T08:03:07.7129976Z [7666/7682] Linking CXX shared library bin\aoti_custom_ops.dll 2025-07-17T08:03:07.7338137Z [7667/7682] Linking CXX executable bin\ProcessGroupGlooAsyncTest.exe 2025-07-17T08:03:07.9812845Z [7668/7682] Linking CXX executable bin\parallel_benchmark.exe 2025-07-17T08:03:08.6028744Z [7669/7682] Linking CXX executable bin\test_lazy.exe 2025-07-17T08:03:09.5162453Z [7670/7682] Linking CXX executable bin\test_api.exe 2025-07-17T08:03:09.6949002Z [7671/7682] Linking CXX executable bin\test_tensorexpr.exe 2025-07-17T08:03:09.8210366Z [7672/7682] Linking CXX shared library bin\torchbind_test.dll 2025-07-17T08:03:13.6424890Z [7673/7682] Linking CXX executable bin\op_registration_test.exe 2025-07-17T08:03:18.1575767Z [7674/7682] Linking CXX executable bin\test_nativert.exe 2025-07-17T08:03:23.2133302Z [7675/7682] Linking CXX executable bin\test_jit.exe 2025-07-17T08:03:44.1624200Z [7676/7682] Linking CXX shared library bin\torch_python.dll 2025-07-17T08:03:44.3670980Z [7677/7682] Linking CXX shared module functorch\functorch.pyd 2025-07-17T08:03:44.3801500Z [7678/7682] Linking CXX shared library bin\nnapi_backend.dll 2025-07-17T08:03:44.3802885Z [7678/7682] Install the project... 2025-07-17T08:03:44.5118733Z -- Install configuration: "Release" 2025-07-17T08:09:22.6586101Z Could not find an up-to-date installation of `packaging`. License expressions might not be validated. To enforce validation, please install `packaging>=24.2`. 2025-07-17T08:09:22.7756980Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\config\_apply_pyprojecttoml.py:82: SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated 2025-07-17T08:09:22.7757790Z !! 2025-07-17T08:09:22.7757893Z 2025-07-17T08:09:22.7758047Z ******************************************************************************** 2025-07-17T08:09:22.7758848Z Please use a simple string containing a SPDX expression for `project.license`. You can also use `project.license-files`. (Both options available on setuptools>=77.0.0). 2025-07-17T08:09:22.7759507Z 2025-07-17T08:09:22.7759728Z By 2026-Feb-18, you need to update your project and remove deprecated calls 2025-07-17T08:09:22.7760172Z or your builds will no longer be supported. 2025-07-17T08:09:22.7760406Z 2025-07-17T08:09:22.7773937Z See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. 2025-07-17T08:09:22.7774499Z ******************************************************************************** 2025-07-17T08:09:22.7774736Z 2025-07-17T08:09:22.7774811Z !! 2025-07-17T08:09:22.7775012Z corresp(dist, value, root_dir) 2025-07-17T08:09:23.0995386Z -- Checkout nccl release tag: v2.27.5-1 2025-07-17T08:09:23.0997325Z running bdist_wheel 2025-07-17T08:09:32.0759950Z running build 2025-07-17T08:09:32.0760221Z running build_py 2025-07-17T08:09:32.0843916Z creating build\lib.win-amd64-cpython-39\functorch 2025-07-17T08:09:32.0848083Z copying functorch\__init__.py -> build\lib.win-amd64-cpython-39\functorch 2025-07-17T08:09:32.0867042Z creating build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.0870038Z copying torch\functional.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.1910554Z copying torch\hub.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.3154012Z copying torch\library.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.3181122Z copying torch\overrides.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.4388604Z copying torch\quasirandom.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.5067325Z copying torch\random.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.5079042Z copying torch\return_types.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.5092375Z copying torch\serialization.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.5134769Z copying torch\storage.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.7227751Z copying torch\torch_version.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.7785968Z copying torch\types.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.7818538Z copying torch\version.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.7819085Z copying torch\_appdirs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.8257129Z copying torch\_classes.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.8267240Z copying torch\_compile.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.8277894Z copying torch\_custom_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.8289844Z copying torch\_environment.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.8295856Z copying torch\_guards.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.9117165Z copying torch\_jit_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.9623112Z copying torch\_linalg_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:32.9634669Z copying torch\_lobpcg.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.0324902Z copying torch\_lowrank.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.0340825Z copying torch\_meta_registrations.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.0431420Z copying torch\_namedtensor_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.0442548Z copying torch\_ops.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.1073704Z copying torch\_python_dispatcher.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.1089914Z copying torch\_size_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.1886924Z copying torch\_sources.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.1897965Z copying torch\_storage_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.1907950Z copying torch\_streambase.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.1914101Z copying torch\_tensor.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.2969803Z copying torch\_tensor_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3032641Z copying torch\_tensor_str.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3055414Z copying torch\_thread_safe_fork.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3060426Z copying torch\_torch_docs.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3207665Z copying torch\_utils.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3233252Z copying torch\_utils_internal.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3239548Z copying torch\_VF.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3246210Z copying torch\_vmap_internals.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3258864Z copying torch\_weights_only_unpickler.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3273683Z copying torch\__config__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.3283710Z copying torch\__future__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.4295706Z copying torch\__init__.py -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:33.4341236Z creating build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.4344478Z copying torchgen\code_template.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.5489108Z copying torchgen\context.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.5519173Z copying torchgen\gen.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6578638Z copying torchgen\gen_aoti_c_shim.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6596639Z copying torchgen\gen_backend_stubs.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6630310Z copying torchgen\gen_functionalization_type.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6642787Z copying torchgen\gen_lazy_tensor.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6657927Z copying torchgen\gen_schema_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6667622Z copying torchgen\gen_vmap_plumbing.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6678672Z copying torchgen\local.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6687635Z copying torchgen\model.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6732194Z copying torchgen\native_function_generation.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.6880457Z copying torchgen\utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.7326457Z copying torchgen\yaml_utils.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.7336617Z copying torchgen\__init__.py -> build\lib.win-amd64-cpython-39\torchgen 2025-07-17T08:09:33.7343412Z creating build\lib.win-amd64-cpython-39\functorch\compile 2025-07-17T08:09:33.7346514Z copying functorch\compile\__init__.py -> build\lib.win-amd64-cpython-39\functorch\compile 2025-07-17T08:09:33.7358869Z creating build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7361832Z copying functorch\dim\batch_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7371714Z copying functorch\dim\delayed_mul_tensor.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7386491Z copying functorch\dim\dim.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7396048Z copying functorch\dim\magic_trace.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7410183Z copying functorch\dim\op_properties.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7419424Z copying functorch\dim\reference.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7435567Z copying functorch\dim\tree_map.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7441145Z copying functorch\dim\wrap_type.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7449662Z copying functorch\dim\__init__.py -> build\lib.win-amd64-cpython-39\functorch\dim 2025-07-17T08:09:33.7460919Z creating build\lib.win-amd64-cpython-39\functorch\einops 2025-07-17T08:09:33.7464532Z copying functorch\einops\rearrange.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-17T08:09:33.8384537Z copying functorch\einops\_parsing.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-17T08:09:33.9234288Z copying functorch\einops\__init__.py -> build\lib.win-amd64-cpython-39\functorch\einops 2025-07-17T08:09:33.9241806Z creating build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-17T08:09:33.9254268Z copying functorch\experimental\control_flow.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-17T08:09:33.9260504Z copying functorch\experimental\ops.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-17T08:09:33.9266989Z copying functorch\experimental\__init__.py -> build\lib.win-amd64-cpython-39\functorch\experimental 2025-07-17T08:09:33.9286947Z creating build\lib.win-amd64-cpython-39\functorch\_src 2025-07-17T08:09:33.9287562Z copying functorch\_src\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src 2025-07-17T08:09:33.9288119Z creating build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-07-17T08:09:33.9288782Z copying functorch\_src\aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd 2025-07-17T08:09:33.9294277Z creating build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-07-17T08:09:33.9297149Z copying functorch\_src\eager_transforms\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms 2025-07-17T08:09:33.9305093Z creating build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-07-17T08:09:33.9313466Z copying functorch\_src\make_functional\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\make_functional 2025-07-17T08:09:33.9320509Z creating build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-07-17T08:09:33.9323483Z copying functorch\_src\vmap\__init__.py -> build\lib.win-amd64-cpython-39\functorch\_src\vmap 2025-07-17T08:09:33.9338442Z creating build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-17T08:09:33.9339023Z copying torch\accelerator\memory.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-17T08:09:33.9351301Z copying torch\accelerator\_utils.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-17T08:09:33.9359854Z copying torch\accelerator\__init__.py -> build\lib.win-amd64-cpython-39\torch\accelerator 2025-07-17T08:09:33.9371663Z creating build\lib.win-amd64-cpython-39\torch\amp 2025-07-17T08:09:33.9374882Z copying torch\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-17T08:09:34.0071026Z copying torch\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-17T08:09:34.0087354Z copying torch\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\amp 2025-07-17T08:09:34.0094491Z creating build\lib.win-amd64-cpython-39\torch\ao 2025-07-17T08:09:34.0098276Z copying torch\ao\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao 2025-07-17T08:09:34.0110017Z creating build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.0113073Z copying torch\autograd\anomaly_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.0930080Z copying torch\autograd\forward_ad.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.0941535Z copying torch\autograd\function.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.0966698Z copying torch\autograd\functional.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.0994841Z copying torch\autograd\gradcheck.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.1030674Z copying torch\autograd\grad_mode.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.1041532Z copying torch\autograd\graph.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.1056669Z copying torch\autograd\profiler.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.2070673Z copying torch\autograd\profiler_legacy.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.2081960Z copying torch\autograd\profiler_util.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.2103906Z copying torch\autograd\variable.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.2109416Z copying torch\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd 2025-07-17T08:09:34.2126480Z creating build\lib.win-amd64-cpython-39\torch\backends 2025-07-17T08:09:34.2129390Z copying torch\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends 2025-07-17T08:09:34.2140218Z creating build\lib.win-amd64-cpython-39\torch\compiler 2025-07-17T08:09:34.2143360Z copying torch\compiler\config.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-17T08:09:34.2153770Z copying torch\compiler\_cache.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-17T08:09:34.2164137Z copying torch\compiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\compiler 2025-07-17T08:09:34.2180460Z creating build\lib.win-amd64-cpython-39\torch\contrib 2025-07-17T08:09:34.2183393Z copying torch\contrib\_tensorboard_vis.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-07-17T08:09:34.2194359Z copying torch\contrib\__init__.py -> build\lib.win-amd64-cpython-39\torch\contrib 2025-07-17T08:09:34.2200083Z creating build\lib.win-amd64-cpython-39\torch\cpu 2025-07-17T08:09:34.2202952Z copying torch\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu 2025-07-17T08:09:34.2216477Z creating build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2219392Z copying torch\cuda\comm.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2225126Z copying torch\cuda\error.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2229835Z copying torch\cuda\gds.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2880325Z copying torch\cuda\graphs.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2897481Z copying torch\cuda\jiterator.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2907742Z copying torch\cuda\memory.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2939079Z copying torch\cuda\nccl.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2948386Z copying torch\cuda\nvtx.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2957775Z copying torch\cuda\profiler.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2968113Z copying torch\cuda\random.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2977525Z copying torch\cuda\sparse.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2983138Z copying torch\cuda\streams.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.2993622Z copying torch\cuda\tunable.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.3009335Z copying torch\cuda\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.3021919Z copying torch\cuda\_memory_viz.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.3037108Z copying torch\cuda\_pin_memory_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.3047272Z copying torch\cuda\_sanitizer.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.3062657Z copying torch\cuda\_utils.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.3074089Z copying torch\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda 2025-07-17T08:09:34.3110547Z creating build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.3113826Z copying torch\distributed\argparse_util.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.3956971Z copying torch\distributed\c10d_logger.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.3967643Z copying torch\distributed\collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.4719189Z copying torch\distributed\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.4730023Z copying torch\distributed\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.4756075Z copying torch\distributed\distributed_c10d.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.5517752Z copying torch\distributed\launch.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.6115172Z copying torch\distributed\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.6121749Z copying torch\distributed\remote_device.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7038673Z copying torch\distributed\rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7049901Z copying torch\distributed\run.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7069491Z copying torch\distributed\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7914122Z copying torch\distributed\_checkpointable.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7925512Z copying torch\distributed\_composable_state.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7936192Z copying torch\distributed\_dist2.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7948611Z copying torch\distributed\_functional_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7970839Z copying torch\distributed\_functional_collectives_impl.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7981436Z copying torch\distributed\_serialization.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.7995846Z copying torch\distributed\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.8591407Z copying torch\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed 2025-07-17T08:09:34.8611701Z creating build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8615441Z copying torch\distributions\bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8632719Z copying torch\distributions\beta.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8644230Z copying torch\distributions\binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8683638Z copying torch\distributions\categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8699773Z copying torch\distributions\cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8709660Z copying torch\distributions\chi2.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8722957Z copying torch\distributions\constraints.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8740957Z copying torch\distributions\constraint_registry.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8751640Z copying torch\distributions\continuous_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8766497Z copying torch\distributions\dirichlet.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8776700Z copying torch\distributions\distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8788319Z copying torch\distributions\exponential.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8801496Z copying torch\distributions\exp_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8811934Z copying torch\distributions\fishersnedecor.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8821920Z copying torch\distributions\gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8835577Z copying torch\distributions\generalized_pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8846919Z copying torch\distributions\geometric.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8874372Z copying torch\distributions\gumbel.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8885504Z copying torch\distributions\half_cauchy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.8894968Z copying torch\distributions\half_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9388475Z copying torch\distributions\independent.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9401463Z copying torch\distributions\inverse_gamma.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9414210Z copying torch\distributions\kl.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9429604Z copying torch\distributions\kumaraswamy.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9439210Z copying torch\distributions\laplace.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9448266Z copying torch\distributions\lkj_cholesky.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9458289Z copying torch\distributions\logistic_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9467816Z copying torch\distributions\log_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9477373Z copying torch\distributions\lowrank_multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9487864Z copying torch\distributions\mixture_same_family.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9498745Z copying torch\distributions\multinomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9508378Z copying torch\distributions\multivariate_normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9522653Z copying torch\distributions\negative_binomial.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9535918Z copying torch\distributions\normal.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9545478Z copying torch\distributions\one_hot_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9556378Z copying torch\distributions\pareto.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9571372Z copying torch\distributions\poisson.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9581991Z copying torch\distributions\relaxed_bernoulli.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9591613Z copying torch\distributions\relaxed_categorical.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9601898Z copying torch\distributions\studentT.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9611294Z copying torch\distributions\transformed_distribution.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9622386Z copying torch\distributions\transforms.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9646048Z copying torch\distributions\uniform.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9656984Z copying torch\distributions\utils.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9667967Z copying torch\distributions\von_mises.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9685883Z copying torch\distributions\weibull.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9694726Z copying torch\distributions\wishart.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9705264Z copying torch\distributions\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributions 2025-07-17T08:09:34.9719632Z creating build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9722573Z copying torch\export\custom_obj.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9728485Z copying torch\export\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9738881Z copying torch\export\decomp_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9748889Z copying torch\export\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9777882Z copying torch\export\exported_program.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9813867Z copying torch\export\graph_signature.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9829249Z copying torch\export\unflatten.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9861578Z copying torch\export\_draft_export.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9881977Z copying torch\export\_remove_auto_functionalized_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9893316Z copying torch\export\_remove_effect_tokens_pass.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9904681Z copying torch\export\_safeguard.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9917144Z copying torch\export\_swap.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9932481Z copying torch\export\_trace.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9965752Z copying torch\export\_tree_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9979541Z copying torch\export\_unlift.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9993599Z copying torch\export\_wrapper_utils.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:34.9998917Z copying torch\export\__init__.py -> build\lib.win-amd64-cpython-39\torch\export 2025-07-17T08:09:35.0021545Z creating build\lib.win-amd64-cpython-39\torch\fft 2025-07-17T08:09:35.0024300Z copying torch\fft\__init__.py -> build\lib.win-amd64-cpython-39\torch\fft 2025-07-17T08:09:35.0049682Z creating build\lib.win-amd64-cpython-39\torch\func 2025-07-17T08:09:35.0052503Z copying torch\func\__init__.py -> build\lib.win-amd64-cpython-39\torch\func 2025-07-17T08:09:35.0058885Z creating build\lib.win-amd64-cpython-39\torch\futures 2025-07-17T08:09:35.0061843Z copying torch\futures\__init__.py -> build\lib.win-amd64-cpython-39\torch\futures 2025-07-17T08:09:35.0075829Z creating build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.0078824Z copying torch\fx\annotate.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.0805758Z copying torch\fx\config.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.0811430Z copying torch\fx\graph.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.1843009Z copying torch\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.1863881Z copying torch\fx\immutable_collections.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.1883904Z copying torch\fx\interpreter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.1898717Z copying torch\fx\node.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2178424Z copying torch\fx\operator_schemas.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2193616Z copying torch\fx\proxy.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2210624Z copying torch\fx\subgraph_rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2225331Z copying torch\fx\tensor_type.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2238576Z copying torch\fx\traceback.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2249982Z copying torch\fx\_compatibility.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2260853Z copying torch\fx\_graph_pickler.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2277350Z copying torch\fx\_lazy_graph_module.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2286684Z copying torch\fx\_pytree.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2297604Z copying torch\fx\_symbolic_trace.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2319995Z copying torch\fx\_utils.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2329196Z copying torch\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx 2025-07-17T08:09:35.2344592Z creating build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2347579Z copying torch\jit\annotations.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2362651Z copying torch\jit\frontend.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2383952Z copying torch\jit\generate_bytecode.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2393046Z copying torch\jit\quantized.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2411399Z copying torch\jit\supported_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2421892Z copying torch\jit\unsupported_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2431926Z copying torch\jit\_async.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2441288Z copying torch\jit\_await.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2450332Z copying torch\jit\_builtins.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2460463Z copying torch\jit\_check.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2470731Z copying torch\jit\_dataclass_impls.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2480626Z copying torch\jit\_decompositions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2494084Z copying torch\jit\_decomposition_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2500189Z copying torch\jit\_freeze.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2511574Z copying torch\jit\_fuser.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2521105Z copying torch\jit\_ir_utils.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2530123Z copying torch\jit\_logging.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2536167Z copying torch\jit\_monkeytype_config.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2564950Z copying torch\jit\_pickle.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2573835Z copying torch\jit\_recursive.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2593732Z copying torch\jit\_script.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2622915Z copying torch\jit\_serialization.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2633664Z copying torch\jit\_shape_functions.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2657824Z copying torch\jit\_state.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2671046Z copying torch\jit\_trace.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2696392Z copying torch\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:35.2710294Z creating build\lib.win-amd64-cpython-39\torch\linalg 2025-07-17T08:09:35.2713397Z copying torch\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\linalg 2025-07-17T08:09:35.2763893Z creating build\lib.win-amd64-cpython-39\torch\masked 2025-07-17T08:09:35.2772756Z copying torch\masked\_docs.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-17T08:09:35.2798196Z copying torch\masked\_ops.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-17T08:09:35.2826749Z copying torch\masked\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked 2025-07-17T08:09:35.2838924Z creating build\lib.win-amd64-cpython-39\torch\monitor 2025-07-17T08:09:35.2841790Z copying torch\monitor\__init__.py -> build\lib.win-amd64-cpython-39\torch\monitor 2025-07-17T08:09:35.2856864Z creating build\lib.win-amd64-cpython-39\torch\mps 2025-07-17T08:09:35.2859719Z copying torch\mps\event.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-17T08:09:35.2868690Z copying torch\mps\profiler.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-17T08:09:35.2878414Z copying torch\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\mps 2025-07-17T08:09:35.2889761Z creating build\lib.win-amd64-cpython-39\torch\mtia 2025-07-17T08:09:35.2892912Z copying torch\mtia\memory.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-17T08:09:35.2905932Z copying torch\mtia\_utils.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-17T08:09:35.2916675Z copying torch\mtia\__init__.py -> build\lib.win-amd64-cpython-39\torch\mtia 2025-07-17T08:09:35.2929939Z creating build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-17T08:09:35.2933252Z copying torch\multiprocessing\pool.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-17T08:09:35.2942762Z copying torch\multiprocessing\queue.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-17T08:09:35.2958246Z copying torch\multiprocessing\reductions.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-17T08:09:35.2977198Z copying torch\multiprocessing\spawn.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-17T08:09:35.2987413Z copying torch\multiprocessing\_atfork.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-17T08:09:35.3000625Z copying torch\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\multiprocessing 2025-07-17T08:09:35.3010340Z creating build\lib.win-amd64-cpython-39\torch\nested 2025-07-17T08:09:35.3013480Z copying torch\nested\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested 2025-07-17T08:09:35.3031357Z creating build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.3034298Z copying torch\nn\common_types.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.3045295Z copying torch\nn\cpp.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.3054666Z copying torch\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.4456830Z copying torch\nn\grad.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.4468716Z copying torch\nn\init.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.4492788Z copying torch\nn\parameter.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.5737323Z copying torch\nn\_reduction.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.5767119Z copying torch\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:35.5782291Z creating build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.5785749Z copying torch\onnx\errors.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6530348Z copying torch\onnx\operators.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6541796Z copying torch\onnx\symbolic_helper.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6585614Z copying torch\onnx\symbolic_opset10.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6609784Z copying torch\onnx\symbolic_opset11.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6639584Z copying torch\onnx\symbolic_opset12.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6650494Z copying torch\onnx\symbolic_opset13.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6674700Z copying torch\onnx\symbolic_opset14.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6689037Z copying torch\onnx\symbolic_opset15.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6698577Z copying torch\onnx\symbolic_opset16.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6708209Z copying torch\onnx\symbolic_opset17.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6722465Z copying torch\onnx\symbolic_opset18.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6733414Z copying torch\onnx\symbolic_opset19.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6739372Z copying torch\onnx\symbolic_opset20.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6752786Z copying torch\onnx\symbolic_opset7.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6763225Z copying torch\onnx\symbolic_opset8.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.6774305Z copying torch\onnx\symbolic_opset9.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.8231583Z copying torch\onnx\utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.8262124Z copying torch\onnx\verification.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.8296198Z copying torch\onnx\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.8306799Z copying torch\onnx\_experimental.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.9001820Z copying torch\onnx\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.9013377Z copying torch\onnx\_globals.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.9024858Z copying torch\onnx\_onnx_supported_ops.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.9035103Z copying torch\onnx\_type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.9046015Z copying torch\onnx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx 2025-07-17T08:09:35.9064940Z creating build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9067985Z copying torch\optim\adadelta.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9083847Z copying torch\optim\adagrad.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9103453Z copying torch\optim\adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9131716Z copying torch\optim\adamax.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9146671Z copying torch\optim\adamw.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9156247Z copying torch\optim\asgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9170515Z copying torch\optim\lbfgs.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9189776Z copying torch\optim\lr_scheduler.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9225372Z copying torch\optim\nadam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9242376Z copying torch\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9267872Z copying torch\optim\radam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9284257Z copying torch\optim\rmsprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9298790Z copying torch\optim\rprop.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9313307Z copying torch\optim\sgd.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9328520Z copying torch\optim\sparse_adam.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9338980Z copying torch\optim\swa_utils.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9354127Z copying torch\optim\_adafactor.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9373297Z copying torch\optim\_functional.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9383179Z copying torch\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim 2025-07-17T08:09:35.9396391Z creating build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9399636Z copying torch\package\file_structure_representation.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9414109Z copying torch\package\find_file_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9424505Z copying torch\package\glob_group.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9443433Z copying torch\package\importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9453121Z copying torch\package\package_exporter.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9477735Z copying torch\package\package_importer.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9499264Z copying torch\package\_digraph.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9509482Z copying torch\package\_directory_reader.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9519817Z copying torch\package\_importlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9533590Z copying torch\package\_mangling.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9543084Z copying torch\package\_mock.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9553106Z copying torch\package\_package_pickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9566641Z copying torch\package\_package_unpickler.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9575605Z copying torch\package\_stdlib.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9586198Z copying torch\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\package 2025-07-17T08:09:35.9594000Z creating build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9596971Z copying torch\profiler\itt.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9607323Z copying torch\profiler\profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9627485Z copying torch\profiler\python_tracer.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9636964Z copying torch\profiler\_memory_profiler.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9662225Z copying torch\profiler\_pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9682743Z copying torch\profiler\_utils.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9693733Z copying torch\profiler\__init__.py -> build\lib.win-amd64-cpython-39\torch\profiler 2025-07-17T08:09:35.9707678Z creating build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9710705Z copying torch\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9725969Z copying torch\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9766354Z copying torch\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9780563Z copying torch\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9790707Z copying torch\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9799811Z copying torch\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9810562Z copying torch\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9818813Z copying torch\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9828090Z copying torch\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9841080Z copying torch\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9846729Z copying torch\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9852542Z copying torch\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9866587Z copying torch\quantization\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9876529Z copying torch\quantization\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9885702Z copying torch\quantization\_quantized_conversions.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9899495Z copying torch\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization 2025-07-17T08:09:35.9911299Z creating build\lib.win-amd64-cpython-39\torch\signal 2025-07-17T08:09:35.9914288Z copying torch\signal\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal 2025-07-17T08:09:35.9921679Z creating build\lib.win-amd64-cpython-39\torch\sparse 2025-07-17T08:09:35.9924941Z copying torch\sparse\semi_structured.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-17T08:09:35.9942650Z copying torch\sparse\_semi_structured_conversions.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-17T08:09:36.0851645Z copying torch\sparse\_semi_structured_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-17T08:09:36.0866389Z copying torch\sparse\_triton_ops.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-17T08:09:36.0900907Z copying torch\sparse\_triton_ops_meta.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-17T08:09:36.1080237Z copying torch\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\sparse 2025-07-17T08:09:36.1097983Z creating build\lib.win-amd64-cpython-39\torch\special 2025-07-17T08:09:36.1101025Z copying torch\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\special 2025-07-17T08:09:36.1122082Z creating build\lib.win-amd64-cpython-39\torch\testing 2025-07-17T08:09:36.1125399Z copying torch\testing\_comparison.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-17T08:09:36.1153823Z copying torch\testing\_creation.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-17T08:09:36.1168252Z copying torch\testing\_utils.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-17T08:09:36.1179386Z copying torch\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing 2025-07-17T08:09:36.1192706Z creating build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.1195899Z copying torch\utils\backend_registration.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.2197027Z copying torch\utils\bundled_inputs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.2215513Z copying torch\utils\checkpoint.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.2249143Z copying torch\utils\collect_env.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.2272471Z copying torch\utils\cpp_backtrace.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.2278477Z copying torch\utils\cpp_extension.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.2724867Z copying torch\utils\deterministic.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.3334288Z copying torch\utils\dlpack.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.3345370Z copying torch\utils\file_baton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.3355618Z copying torch\utils\flop_counter.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.3376322Z copying torch\utils\hooks.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.3983008Z copying torch\utils\mkldnn.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.3993800Z copying torch\utils\mobile_optimizer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4003903Z copying torch\utils\model_zoo.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4009747Z copying torch\utils\module_tracker.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4038561Z copying torch\utils\show_pickle.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4052200Z copying torch\utils\throughput_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4062732Z copying torch\utils\weak.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4073781Z copying torch\utils\_appending_byte_serializer.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4084333Z copying torch\utils\_backport_slots.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4095342Z copying torch\utils\_config_module.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4115953Z copying torch\utils\_content_store.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4128806Z copying torch\utils\_contextlib.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4140120Z copying torch\utils\_cpp_embed_headers.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4155947Z copying torch\utils\_cpp_extension_versioner.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4167258Z copying torch\utils\_cxx_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4189153Z copying torch\utils\_device.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4197977Z copying torch\utils\_dtype_abbrs.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4207387Z copying torch\utils\_exposed_in.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4217638Z copying torch\utils\_filelock.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4230253Z copying torch\utils\_foreach_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4243877Z copying torch\utils\_functools.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4253963Z copying torch\utils\_get_clean_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4264551Z copying torch\utils\_helion.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4270121Z copying torch\utils\_import_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4281530Z copying torch\utils\_mode_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4292526Z copying torch\utils\_ordered_set.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4304205Z copying torch\utils\_python_dispatch.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4320621Z copying torch\utils\_pytree.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4358760Z copying torch\utils\_stats.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4369040Z copying torch\utils\_thunk.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4376218Z copying torch\utils\_traceback.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4396772Z copying torch\utils\_triton.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4408957Z copying torch\utils\_typing_utils.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4417184Z copying torch\utils\_zip.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4455723Z copying torch\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:36.4472995Z creating build\lib.win-amd64-cpython-39\torch\xpu 2025-07-17T08:09:36.4477594Z copying torch\xpu\memory.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-17T08:09:36.4493940Z copying torch\xpu\random.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-17T08:09:36.4506397Z copying torch\xpu\streams.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-17T08:09:36.4517887Z copying torch\xpu\_gpu_trace.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-17T08:09:36.4527762Z copying torch\xpu\_utils.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-17T08:09:36.4538111Z copying torch\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\xpu 2025-07-17T08:09:36.4558952Z creating build\lib.win-amd64-cpython-39\torch\_awaits 2025-07-17T08:09:36.4561471Z copying torch\_awaits\__init__.py -> build\lib.win-amd64-cpython-39\torch\_awaits 2025-07-17T08:09:36.4573361Z creating build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-17T08:09:36.4576291Z copying torch\_custom_op\autograd.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-17T08:09:36.4587252Z copying torch\_custom_op\impl.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-17T08:09:36.4602725Z copying torch\_custom_op\__init__.py -> build\lib.win-amd64-cpython-39\torch\_custom_op 2025-07-17T08:09:36.4608734Z creating build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-17T08:09:36.4611799Z copying torch\_decomp\decompositions.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-17T08:09:36.4678178Z copying torch\_decomp\decompositions_for_jvp.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-17T08:09:36.4689536Z copying torch\_decomp\decompositions_for_rng.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-17T08:09:36.4708068Z copying torch\_decomp\__init__.py -> build\lib.win-amd64-cpython-39\torch\_decomp 2025-07-17T08:09:36.4725472Z creating build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-17T08:09:36.4728507Z copying torch\_dispatch\python.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-17T08:09:36.4739174Z copying torch\_dispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dispatch 2025-07-17T08:09:36.4753183Z creating build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.4755439Z copying torch\_dynamo\bytecode_analysis.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5587666Z copying torch\_dynamo\bytecode_transformation.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5622496Z copying torch\_dynamo\cache_size.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5642635Z copying torch\_dynamo\callback.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5652616Z copying torch\_dynamo\codegen.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5698782Z copying torch\_dynamo\code_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5714955Z copying torch\_dynamo\compiled_autograd.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5744934Z copying torch\_dynamo\comptime.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5757034Z copying torch\_dynamo\config.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5772197Z copying torch\_dynamo\convert_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5799806Z copying torch\_dynamo\create_parameter_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5811044Z copying torch\_dynamo\current_scope_id.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5827028Z copying torch\_dynamo\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5845755Z copying torch\_dynamo\decorators.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5866724Z copying torch\_dynamo\device_interface.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5885425Z copying torch\_dynamo\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.5895473Z copying torch\_dynamo\eval_frame.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7030680Z copying torch\_dynamo\exc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7048105Z copying torch\_dynamo\external_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7059647Z copying torch\_dynamo\funcname_cache.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7071117Z copying torch\_dynamo\graph_break_hints.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7084649Z copying torch\_dynamo\graph_deduplication.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7100404Z copying torch\_dynamo\graph_region_tracker.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7116577Z copying torch\_dynamo\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7126329Z copying torch\_dynamo\guards.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7190619Z copying torch\_dynamo\hooks.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7202130Z copying torch\_dynamo\logging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7216298Z copying torch\_dynamo\metrics_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7226698Z copying torch\_dynamo\mutation_guard.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.7237252Z copying torch\_dynamo\output_graph.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8115574Z copying torch\_dynamo\package.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8136371Z copying torch\_dynamo\pgo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8154542Z copying torch\_dynamo\precompile_context.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8174828Z copying torch\_dynamo\profiler.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8184985Z copying torch\_dynamo\replay_record.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8195510Z copying torch\_dynamo\resume_execution.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8211720Z copying torch\_dynamo\side_effects.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8236452Z copying torch\_dynamo\source.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.8256647Z copying torch\_dynamo\symbolic_convert.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9457684Z copying torch\_dynamo\tensor_version_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9468165Z copying torch\_dynamo\testing.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9484098Z copying torch\_dynamo\test_case.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9496622Z copying torch\_dynamo\test_dont_skip_tracing_functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9507688Z copying torch\_dynamo\test_minifier_common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9521777Z copying torch\_dynamo\trace_rules.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9580626Z copying torch\_dynamo\types.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9590745Z copying torch\_dynamo\utils.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9652481Z copying torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9670385Z copying torch\_dynamo\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:36.9684069Z creating build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:36.9687128Z copying torch\_export\converter.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.0585823Z copying torch\_export\error.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.0599687Z copying torch\_export\non_strict_utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.0620957Z copying torch\_export\pass_base.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.0644653Z copying torch\_export\tools.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.1342274Z copying torch\_export\utils.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.1367531Z copying torch\_export\verifier.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.1386674Z copying torch\_export\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.1397496Z copying torch\_export\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export 2025-07-17T08:09:37.1412759Z creating build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1416616Z copying torch\_functorch\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1887725Z copying torch\_functorch\apis.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1903134Z copying torch\_functorch\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1922206Z copying torch\_functorch\batch_norm_replacement.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1937261Z copying torch\_functorch\benchmark_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1948624Z copying torch\_functorch\compilers.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1959924Z copying torch\_functorch\compile_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1971188Z copying torch\_functorch\config.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1983359Z copying torch\_functorch\deprecated.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.1993933Z copying torch\_functorch\eager_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2029620Z copying torch\_functorch\functional_call.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2040012Z copying torch\_functorch\fx_minifier.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2060674Z copying torch\_functorch\make_functional.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2077854Z copying torch\_functorch\partitioners.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2129055Z copying torch\_functorch\pyfunctorch.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2139882Z copying torch\_functorch\python_key.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2145578Z copying torch\_functorch\pytree_hacks.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2157364Z copying torch\_functorch\top_operators_github_usage.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2172368Z copying torch\_functorch\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2181695Z copying torch\_functorch\vmap.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2195664Z copying torch\_functorch\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch 2025-07-17T08:09:37.2210602Z creating build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2213950Z copying torch\_higher_order_ops\aoti_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2224677Z copying torch\_higher_order_ops\associative_scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2239170Z copying torch\_higher_order_ops\auto_functionalize.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2262931Z copying torch\_higher_order_ops\base_hop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2273083Z copying torch\_higher_order_ops\cond.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2293491Z copying torch\_higher_order_ops\effects.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2304828Z copying torch\_higher_order_ops\executorch_call_delegate.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2314904Z copying torch\_higher_order_ops\flat_apply.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.2329458Z copying torch\_higher_order_ops\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3359907Z copying torch\_higher_order_ops\foreach_map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3369937Z copying torch\_higher_order_ops\hints_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3379829Z copying torch\_higher_order_ops\invoke_subgraph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3396183Z copying torch\_higher_order_ops\map.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3406922Z copying torch\_higher_order_ops\out_dtype.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3420695Z copying torch\_higher_order_ops\run_const_graph.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3430381Z copying torch\_higher_order_ops\scan.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3452757Z copying torch\_higher_order_ops\schema.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3465822Z copying torch\_higher_order_ops\strict_mode.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3476994Z copying torch\_higher_order_ops\torchbind.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3487954Z copying torch\_higher_order_ops\triton_kernel_wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3525882Z copying torch\_higher_order_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3545689Z copying torch\_higher_order_ops\while_loop.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3563209Z copying torch\_higher_order_ops\wrap.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3578213Z copying torch\_higher_order_ops\_invoke_quant.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3588240Z copying torch\_higher_order_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\_higher_order_ops 2025-07-17T08:09:37.3608309Z creating build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.3611561Z copying torch\_inductor\analyze_preserves_zero_mask.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.3621719Z copying torch\_inductor\aoti_eager.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.3632460Z copying torch\_inductor\async_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.3657570Z copying torch\_inductor\autotune_process.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.4622000Z copying torch\_inductor\bounds.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.4633634Z copying torch\_inductor\choices.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.4652336Z copying torch\_inductor\codecache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.4708659Z copying torch\_inductor\comms.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.5494599Z copying torch\_inductor\comm_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.5511736Z copying torch\_inductor\comm_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.5522923Z copying torch\_inductor\compiler_bisector.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6681145Z copying torch\_inductor\compile_fx.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6735257Z copying torch\_inductor\compile_fx_async.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6747485Z copying torch\_inductor\compile_fx_ext.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6764622Z copying torch\_inductor\compile_fx_subproc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6778223Z copying torch\_inductor\config.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6811856Z copying torch\_inductor\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6823881Z copying torch\_inductor\cpp_builder.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6858014Z copying torch\_inductor\cpu_vec_isa.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6870411Z copying torch\_inductor\cudagraph_trees.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6919953Z copying torch\_inductor\cudagraph_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6938797Z copying torch\_inductor\custom_graph_pass.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6950554Z copying torch\_inductor\debug.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.6977547Z copying torch\_inductor\decomposition.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7006502Z copying torch\_inductor\dependencies.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7033884Z copying torch\_inductor\dtype_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7044738Z copying torch\_inductor\exc.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7062995Z copying torch\_inductor\extern_node_serializer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7073901Z copying torch\_inductor\freezing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7086511Z copying torch\_inductor\freezing_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7102525Z copying torch\_inductor\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.7673762Z copying torch\_inductor\fx_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.8538135Z copying torch\_inductor\graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.8587876Z copying torch\_inductor\hooks.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.8594299Z copying torch\_inductor\index_propagation.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.8605360Z copying torch\_inductor\inductor_prims.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.8616373Z copying torch\_inductor\ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.8723664Z copying torch\_inductor\jagged_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:37.8735228Z copying torch\_inductor\loop_body.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0116216Z copying torch\_inductor\lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0827692Z copying torch\_inductor\memory.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0850035Z copying torch\_inductor\metrics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0866101Z copying torch\_inductor\mkldnn_ir.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0887952Z copying torch\_inductor\mkldnn_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0913171Z copying torch\_inductor\mock_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0933256Z copying torch\_inductor\ops_handler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0952341Z copying torch\_inductor\optimize_indexing.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0963177Z copying torch\_inductor\output_code.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.0983380Z copying torch\_inductor\pattern_matcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.1018332Z copying torch\_inductor\quantized_lowerings.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.1028848Z copying torch\_inductor\remote_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.1044691Z copying torch\_inductor\scheduler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.2428826Z copying torch\_inductor\select_algorithm.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3228260Z copying torch\_inductor\sizevars.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3250827Z copying torch\_inductor\standalone_compile.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3269326Z copying torch\_inductor\subgraph_lowering.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3279799Z copying torch\_inductor\template_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3307540Z copying torch\_inductor\test_case.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3318296Z copying torch\_inductor\test_operators.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3327926Z copying torch\_inductor\tiling_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3348157Z copying torch\_inductor\triton_bundler.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3362352Z copying torch\_inductor\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3403039Z copying torch\_inductor\virtualized.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3414247Z copying torch\_inductor\wrapper_benchmark.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3429486Z copying torch\_inductor\__autotune_main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3443281Z copying torch\_inductor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:38.3460959Z creating build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3464260Z copying torch\_lazy\closure.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3475270Z copying torch\_lazy\computation.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3484164Z copying torch\_lazy\config.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3490877Z copying torch\_lazy\debug.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3500341Z copying torch\_lazy\device_context.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3518221Z copying torch\_lazy\extract_compiled_graph.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3528339Z copying torch\_lazy\ir_cache.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3534523Z copying torch\_lazy\metrics.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3540250Z copying torch\_lazy\tensor_factory_functions.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3550980Z copying torch\_lazy\ts_backend.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3556724Z copying torch\_lazy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_lazy 2025-07-17T08:09:38.3569552Z creating build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3572758Z copying torch\_library\autograd.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3584291Z copying torch\_library\custom_ops.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3605189Z copying torch\_library\fake_class_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3619238Z copying torch\_library\fake_impl.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3633469Z copying torch\_library\fake_profile.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3650340Z copying torch\_library\infer_schema.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3663301Z copying torch\_library\simple_registry.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3673781Z copying torch\_library\triton.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3688817Z copying torch\_library\utils.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3706021Z copying torch\_library\__init__.py -> build\lib.win-amd64-cpython-39\torch\_library 2025-07-17T08:09:38.3713750Z creating build\lib.win-amd64-cpython-39\torch\_logging 2025-07-17T08:09:38.3716725Z copying torch\_logging\scribe.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-17T08:09:38.3731209Z copying torch\_logging\structured.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-17T08:09:38.3740824Z copying torch\_logging\_internal.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-17T08:09:38.3764624Z copying torch\_logging\_registrations.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-17T08:09:38.3783526Z copying torch\_logging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_logging 2025-07-17T08:09:38.3814129Z creating build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3817055Z copying torch\_numpy\fft.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3833074Z copying torch\_numpy\linalg.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3843224Z copying torch\_numpy\random.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3853252Z copying torch\_numpy\_binary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3863122Z copying torch\_numpy\_casting_dicts.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3897382Z copying torch\_numpy\_dtypes.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3911170Z copying torch\_numpy\_dtypes_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3921691Z copying torch\_numpy\_funcs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3930967Z copying torch\_numpy\_funcs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3960223Z copying torch\_numpy\_getlimits.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3966115Z copying torch\_numpy\_ndarray.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3982148Z copying torch\_numpy\_normalizations.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.3996934Z copying torch\_numpy\_reductions_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.4006988Z copying torch\_numpy\_ufuncs.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.4018688Z copying torch\_numpy\_unary_ufuncs_impl.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.4030189Z copying torch\_numpy\_util.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.4041234Z copying torch\_numpy\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy 2025-07-17T08:09:38.4048327Z creating build\lib.win-amd64-cpython-39\torch\_prims 2025-07-17T08:09:38.4051512Z copying torch\_prims\context.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-17T08:09:38.4062555Z copying torch\_prims\debug_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-17T08:09:38.4072657Z copying torch\_prims\executor.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-17T08:09:38.4082133Z copying torch\_prims\rng_prims.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-17T08:09:38.4097986Z copying torch\_prims\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims 2025-07-17T08:09:38.4136052Z creating build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-17T08:09:38.4143473Z copying torch\_prims_common\wrappers.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-17T08:09:38.4161741Z copying torch\_prims_common\__init__.py -> build\lib.win-amd64-cpython-39\torch\_prims_common 2025-07-17T08:09:38.4196483Z creating build\lib.win-amd64-cpython-39\torch\_refs 2025-07-17T08:09:38.4199361Z copying torch\_refs\fft.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-17T08:09:38.4375638Z copying torch\_refs\_conversions.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-17T08:09:38.4391098Z copying torch\_refs\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs 2025-07-17T08:09:38.4470780Z creating build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-17T08:09:38.4473140Z copying torch\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-17T08:09:38.4485556Z copying torch\_strobelight\compile_time_profiler.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-17T08:09:38.4504122Z copying torch\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\_strobelight 2025-07-17T08:09:38.4511435Z creating build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4515521Z copying torch\_subclasses\fake_impls.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4536230Z copying torch\_subclasses\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4603383Z copying torch\_subclasses\fake_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4617516Z copying torch\_subclasses\functional_tensor.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4641203Z copying torch\_subclasses\meta_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4674873Z copying torch\_subclasses\schema_check_mode.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4685416Z copying torch\_subclasses\_fake_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4700251Z copying torch\_subclasses\__init__.py -> build\lib.win-amd64-cpython-39\torch\_subclasses 2025-07-17T08:09:38.4707006Z creating build\lib.win-amd64-cpython-39\torch\_vendor 2025-07-17T08:09:38.4709834Z copying torch\_vendor\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor 2025-07-17T08:09:38.4715768Z creating build\lib.win-amd64-cpython-39\torch\ao\nn 2025-07-17T08:09:38.4718551Z copying torch\ao\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn 2025-07-17T08:09:38.4732421Z creating build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-17T08:09:38.4735473Z copying torch\ao\ns\_numeric_suite.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-17T08:09:38.5095976Z copying torch\ao\ns\_numeric_suite_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-17T08:09:38.5116789Z copying torch\ao\ns\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns 2025-07-17T08:09:38.5123023Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-17T08:09:38.5126073Z copying torch\ao\pruning\_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-17T08:09:38.5962828Z copying torch\ao\pruning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning 2025-07-17T08:09:38.5979238Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.5981651Z copying torch\ao\quantization\fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.5998029Z copying torch\ao\quantization\fuser_method_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.6982811Z copying torch\ao\quantization\fuse_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.6997500Z copying torch\ao\quantization\observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8154307Z copying torch\ao\quantization\qconfig.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8172172Z copying torch\ao\quantization\qconfig_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8184040Z copying torch\ao\quantization\quantization_mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8195221Z copying torch\ao\quantization\quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8215159Z copying torch\ao\quantization\quantize_fx.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8234328Z copying torch\ao\quantization\quantize_jit.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8245227Z copying torch\ao\quantization\quantize_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8260001Z copying torch\ao\quantization\quant_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8281965Z copying torch\ao\quantization\stubs.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8282813Z copying torch\ao\quantization\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8301514Z copying torch\ao\quantization\_correct_bias.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8311975Z copying torch\ao\quantization\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8322201Z copying torch\ao\quantization\_learnable_fake_quantize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8338417Z copying torch\ao\quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization 2025-07-17T08:09:38.8350213Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-07-17T08:09:38.8352930Z copying torch\ao\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic 2025-07-17T08:09:38.8364172Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-07-17T08:09:38.8367013Z copying torch\ao\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat 2025-07-17T08:09:38.8377680Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-07-17T08:09:38.8380510Z copying torch\ao\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable 2025-07-17T08:09:38.8387199Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-17T08:09:38.8394868Z copying torch\ao\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-17T08:09:38.8411892Z copying torch\ao\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized 2025-07-17T08:09:38.8418740Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-07-17T08:09:38.8421684Z copying torch\ao\nn\sparse\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse 2025-07-17T08:09:38.8428324Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-17T08:09:38.8432361Z copying torch\ao\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-17T08:09:38.8446266Z copying torch\ao\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\modules 2025-07-17T08:09:38.8453023Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-07-17T08:09:38.8455958Z copying torch\ao\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat 2025-07-17T08:09:38.8462593Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-07-17T08:09:38.8465747Z copying torch\ao\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized 2025-07-17T08:09:38.8477276Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-17T08:09:38.8480359Z copying torch\ao\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-17T08:09:38.8501915Z copying torch\ao\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-17T08:09:38.8510996Z copying torch\ao\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-17T08:09:38.8520813Z copying torch\ao\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\qat\modules 2025-07-17T08:09:38.8532723Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-17T08:09:38.8536517Z copying torch\ao\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-17T08:09:38.8543121Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-17T08:09:38.8546204Z copying torch\ao\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-17T08:09:38.8556662Z copying torch\ao\nn\intrinsic\quantized\modules\conv_add.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-17T08:09:38.8567057Z copying torch\ao\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-17T08:09:38.8597005Z copying torch\ao\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-17T08:09:38.8597961Z copying torch\ao\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\modules 2025-07-17T08:09:38.8610888Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-17T08:09:38.8615174Z 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-07-17T08:09:38.8623790Z copying torch\ao\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-17T08:09:38.8630174Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-07-17T08:09:38.8633162Z copying torch\ao\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic 2025-07-17T08:09:38.8644807Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-17T08:09:38.8648288Z copying torch\ao\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-17T08:09:38.8658969Z copying torch\ao\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-17T08:09:38.8668934Z copying torch\ao\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-17T08:09:38.8682797Z copying torch\ao\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\modules 2025-07-17T08:09:38.8689283Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-17T08:09:38.8692631Z copying torch\ao\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-17T08:09:38.8702607Z copying torch\ao\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\qat\dynamic\modules 2025-07-17T08:09:38.8713067Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-17T08:09:38.8716246Z copying torch\ao\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-17T08:09:38.8731760Z copying torch\ao\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-17T08:09:38.8746624Z copying torch\ao\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\modules 2025-07-17T08:09:38.8756788Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-07-17T08:09:38.8759640Z copying torch\ao\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic 2025-07-17T08:09:38.8768029Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8771131Z copying torch\ao\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8782243Z copying torch\ao\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8795637Z copying torch\ao\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8817707Z copying torch\ao\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8827265Z copying torch\ao\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8844283Z copying torch\ao\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8855249Z copying torch\ao\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8870376Z copying torch\ao\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8881788Z copying torch\ao\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8891082Z copying torch\ao\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8904949Z copying torch\ao\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\modules 2025-07-17T08:09:38.8916155Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-07-17T08:09:38.8923220Z copying torch\ao\nn\quantized\reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference 2025-07-17T08:09:38.8930704Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-17T08:09:38.8933866Z copying torch\ao\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-17T08:09:38.8952716Z copying torch\ao\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-17T08:09:38.8963134Z copying torch\ao\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-17T08:09:38.8989174Z copying torch\ao\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\dynamic\modules 2025-07-17T08:09:38.8997127Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-17T08:09:38.8999586Z copying torch\ao\nn\quantized\reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-17T08:09:38.9010503Z copying torch\ao\nn\quantized\reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-17T08:09:38.9025822Z copying torch\ao\nn\quantized\reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-17T08:09:38.9042633Z copying torch\ao\nn\quantized\reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-17T08:09:38.9094996Z copying torch\ao\nn\quantized\reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-17T08:09:38.9112004Z copying torch\ao\nn\quantized\reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\reference\modules 2025-07-17T08:09:38.9120586Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-17T08:09:38.9122248Z copying torch\ao\nn\sparse\quantized\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-17T08:09:38.9133367Z copying torch\ao\nn\sparse\quantized\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-17T08:09:38.9147564Z copying torch\ao\nn\sparse\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized 2025-07-17T08:09:38.9152957Z creating build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-17T08:09:38.9155938Z copying torch\ao\nn\sparse\quantized\dynamic\linear.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-17T08:09:38.9166635Z copying torch\ao\nn\sparse\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\quantized\dynamic 2025-07-17T08:09:38.9174444Z creating build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9178873Z copying torch\ao\ns\fx\graph_matcher.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9192822Z copying torch\ao\ns\fx\graph_passes.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9212522Z copying torch\ao\ns\fx\mappings.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9227531Z copying torch\ao\ns\fx\ns_types.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9238510Z copying torch\ao\ns\fx\n_shadows_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9269423Z copying torch\ao\ns\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9280566Z copying torch\ao\ns\fx\qconfig_multi_mapping.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9293160Z copying torch\ao\ns\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9309823Z copying torch\ao\ns\fx\weight_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9321335Z copying torch\ao\ns\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\ns\fx 2025-07-17T08:09:38.9327759Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-17T08:09:38.9330908Z copying torch\ao\pruning\scheduler\base_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-17T08:09:38.9601245Z copying torch\ao\pruning\scheduler\cubic_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-17T08:09:38.9611215Z copying torch\ao\pruning\scheduler\lambda_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-17T08:09:38.9626626Z copying torch\ao\pruning\scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler 2025-07-17T08:09:38.9633287Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-17T08:09:38.9641619Z copying torch\ao\pruning\sparsifier\base_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-17T08:09:38.9651978Z copying torch\ao\pruning\sparsifier\nearly_diagonal_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-17T08:09:38.9662013Z copying torch\ao\pruning\sparsifier\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-17T08:09:38.9675855Z copying torch\ao\pruning\sparsifier\weight_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-17T08:09:38.9686129Z copying torch\ao\pruning\sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier 2025-07-17T08:09:38.9693631Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-07-17T08:09:38.9695571Z copying torch\ao\pruning\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental 2025-07-17T08:09:38.9735757Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-17T08:09:38.9736779Z copying torch\ao\pruning\_experimental\activation_sparsifier\activation_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-17T08:09:38.9738011Z copying torch\ao\pruning\_experimental\activation_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-17T08:09:38.9738906Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-17T08:09:38.9739797Z copying torch\ao\pruning\_experimental\data_scheduler\base_data_scheduler.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-17T08:09:38.9749169Z copying torch\ao\pruning\_experimental\data_scheduler\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_scheduler 2025-07-17T08:09:38.9756468Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-17T08:09:38.9764217Z copying torch\ao\pruning\_experimental\data_sparsifier\base_data_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-17T08:09:38.9775059Z copying torch\ao\pruning\_experimental\data_sparsifier\data_norm_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-17T08:09:39.0550550Z copying torch\ao\pruning\_experimental\data_sparsifier\quantization_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-17T08:09:39.0568240Z copying torch\ao\pruning\_experimental\data_sparsifier\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier 2025-07-17T08:09:39.0578098Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0580410Z copying torch\ao\pruning\_experimental\pruner\base_structured_sparsifier.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0593412Z copying torch\ao\pruning\_experimental\pruner\FPGM_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0604371Z copying torch\ao\pruning\_experimental\pruner\lstm_saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0619080Z copying torch\ao\pruning\_experimental\pruner\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0628053Z copying torch\ao\pruning\_experimental\pruner\parametrization.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0638064Z copying torch\ao\pruning\_experimental\pruner\prune_functions.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0653073Z copying torch\ao\pruning\_experimental\pruner\saliency_pruner.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0662346Z copying torch\ao\pruning\_experimental\pruner\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\pruner 2025-07-17T08:09:39.0668985Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-17T08:09:39.0672077Z copying torch\ao\pruning\_experimental\data_sparsifier\lightning\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-17T08:09:39.0678285Z creating build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-17T08:09:39.0681784Z 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-07-17T08:09:39.0697027Z 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-07-17T08:09:39.0707850Z 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-07-17T08:09:39.0719802Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0723014Z copying torch\ao\quantization\backend_config\backend_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0743312Z copying torch\ao\quantization\backend_config\executorch.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0758923Z copying torch\ao\quantization\backend_config\fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0768936Z copying torch\ao\quantization\backend_config\native.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0785095Z copying torch\ao\quantization\backend_config\observation_type.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0789866Z copying torch\ao\quantization\backend_config\onednn.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0805442Z copying torch\ao\quantization\backend_config\qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0816798Z copying torch\ao\quantization\backend_config\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0825650Z copying torch\ao\quantization\backend_config\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0836999Z copying torch\ao\quantization\backend_config\x86.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0847402Z copying torch\ao\quantization\backend_config\_common_operator_config_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0862642Z copying torch\ao\quantization\backend_config\_qnnpack_pt2e.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0874614Z copying torch\ao\quantization\backend_config\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\backend_config 2025-07-17T08:09:39.0891668Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.0894158Z copying torch\ao\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1042525Z copying torch\ao\quantization\fx\custom_config.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1058054Z copying torch\ao\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1071323Z copying torch\ao\quantization\fx\fuse_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1082211Z copying torch\ao\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1100564Z copying torch\ao\quantization\fx\lower_to_fbgemm.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1110999Z copying torch\ao\quantization\fx\lower_to_qnnpack.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1116790Z copying torch\ao\quantization\fx\lstm_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1131813Z copying torch\ao\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1142384Z copying torch\ao\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1151905Z copying torch\ao\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1236149Z copying torch\ao\quantization\fx\qconfig_mapping_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1248206Z copying torch\ao\quantization\fx\quantize_handler.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1258301Z copying torch\ao\quantization\fx\tracer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1271368Z copying torch\ao\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1291887Z copying torch\ao\quantization\fx\_decomposed.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1312355Z copying torch\ao\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1332566Z copying torch\ao\quantization\fx\_lower_to_native_backend.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1360436Z copying torch\ao\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx 2025-07-17T08:09:39.1368708Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1371894Z copying torch\ao\quantization\pt2e\duplicate_dq_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1385935Z copying torch\ao\quantization\pt2e\export_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1396479Z copying torch\ao\quantization\pt2e\graph_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1407033Z copying torch\ao\quantization\pt2e\lowering.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1424543Z copying torch\ao\quantization\pt2e\port_metadata_pass.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1437110Z copying torch\ao\quantization\pt2e\prepare.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1456514Z copying torch\ao\quantization\pt2e\qat_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1476696Z copying torch\ao\quantization\pt2e\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1492748Z copying torch\ao\quantization\pt2e\_affine_quantization.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1516957Z copying torch\ao\quantization\pt2e\_numeric_debugger.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1527665Z copying torch\ao\quantization\pt2e\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e 2025-07-17T08:09:39.1536224Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1538503Z copying torch\ao\quantization\quantizer\composable_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1549319Z copying torch\ao\quantization\quantizer\embedding_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1578970Z copying torch\ao\quantization\quantizer\quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1592259Z copying torch\ao\quantization\quantizer\utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1624558Z copying torch\ao\quantization\quantizer\x86_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1655257Z copying torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1668592Z copying torch\ao\quantization\quantizer\xnnpack_quantizer_utils.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1694095Z copying torch\ao\quantization\quantizer\xpu_inductor_quantizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1703090Z copying torch\ao\quantization\quantizer\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer 2025-07-17T08:09:39.1710680Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-17T08:09:39.1714183Z copying torch\ao\quantization\fx\_model_report\detector.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-17T08:09:39.1749478Z copying torch\ao\quantization\fx\_model_report\model_report.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-17T08:09:39.1764853Z copying torch\ao\quantization\fx\_model_report\model_report_observer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-17T08:09:39.1779539Z copying torch\ao\quantization\fx\_model_report\model_report_visualizer.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-17T08:09:39.1799013Z copying torch\ao\quantization\fx\_model_report\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_model_report 2025-07-17T08:09:39.1805253Z creating build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-17T08:09:39.1808613Z copying torch\ao\quantization\pt2e\representation\rewrite.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-17T08:09:39.1826289Z copying torch\ao\quantization\pt2e\representation\__init__.py -> build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\representation 2025-07-17T08:09:39.1838806Z creating build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-17T08:09:39.1841825Z copying torch\autograd\_functions\tensor.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-17T08:09:39.1852031Z copying torch\autograd\_functions\utils.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-17T08:09:39.1861355Z copying torch\autograd\_functions\__init__.py -> build\lib.win-amd64-cpython-39\torch\autograd\_functions 2025-07-17T08:09:39.1872573Z creating build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-07-17T08:09:39.1875348Z copying torch\backends\cpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cpu 2025-07-17T08:09:39.1881783Z creating build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-07-17T08:09:39.1884589Z copying torch\backends\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cuda 2025-07-17T08:09:39.1902230Z creating build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-17T08:09:39.1905689Z copying torch\backends\cudnn\rnn.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-17T08:09:39.1914721Z copying torch\backends\cudnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cudnn 2025-07-17T08:09:39.1925006Z creating build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-07-17T08:09:39.1927945Z copying torch\backends\cusparselt\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\cusparselt 2025-07-17T08:09:39.1938338Z creating build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-07-17T08:09:39.1949419Z copying torch\backends\kleidiai\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\kleidiai 2025-07-17T08:09:39.1956012Z creating build\lib.win-amd64-cpython-39\torch\backends\mha 2025-07-17T08:09:39.1959287Z copying torch\backends\mha\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mha 2025-07-17T08:09:39.1970645Z creating build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-07-17T08:09:39.1973540Z copying torch\backends\mkl\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkl 2025-07-17T08:09:39.1989925Z creating build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-07-17T08:09:39.1992875Z copying torch\backends\mkldnn\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mkldnn 2025-07-17T08:09:39.2009566Z creating build\lib.win-amd64-cpython-39\torch\backends\mps 2025-07-17T08:09:39.2012439Z copying torch\backends\mps\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\mps 2025-07-17T08:09:39.2023465Z creating build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-07-17T08:09:39.2026293Z copying torch\backends\nnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\nnpack 2025-07-17T08:09:39.2041508Z creating build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-07-17T08:09:39.2044508Z copying torch\backends\openmp\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\openmp 2025-07-17T08:09:39.2051132Z creating build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-07-17T08:09:39.2054085Z copying torch\backends\opt_einsum\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\opt_einsum 2025-07-17T08:09:39.2064187Z creating build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-07-17T08:09:39.2067155Z copying torch\backends\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\quantized 2025-07-17T08:09:39.2083088Z creating build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-17T08:09:39.2086121Z copying torch\backends\xeon\run_cpu.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-17T08:09:39.2105179Z copying torch\backends\xeon\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xeon 2025-07-17T08:09:39.2110968Z creating build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-07-17T08:09:39.2113976Z copying torch\backends\xnnpack\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\xnnpack 2025-07-17T08:09:39.2125101Z creating build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-17T08:09:39.2127955Z copying torch\backends\_coreml\preprocess.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-17T08:09:39.2141480Z copying torch\backends\_coreml\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_coreml 2025-07-17T08:09:39.2147345Z creating build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-17T08:09:39.2150296Z copying torch\backends\_nnapi\prepare.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-17T08:09:39.2162403Z copying torch\backends\_nnapi\serializer.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-17T08:09:39.2196219Z copying torch\backends\_nnapi\__init__.py -> build\lib.win-amd64-cpython-39\torch\backends\_nnapi 2025-07-17T08:09:39.2202003Z creating build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-17T08:09:39.2205223Z copying torch\cpu\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-17T08:09:39.2215054Z copying torch\cpu\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-17T08:09:39.2224462Z copying torch\cpu\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cpu\amp 2025-07-17T08:09:39.2235200Z creating build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-17T08:09:39.2242845Z copying torch\cuda\amp\autocast_mode.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-17T08:09:39.2257337Z copying torch\cuda\amp\common.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-17T08:09:39.2263977Z copying torch\cuda\amp\grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-17T08:09:39.2277258Z copying torch\cuda\amp\__init__.py -> build\lib.win-amd64-cpython-39\torch\cuda\amp 2025-07-17T08:09:39.2287856Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-17T08:09:39.2294809Z copying torch\distributed\algorithms\join.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-17T08:09:39.2305937Z copying torch\distributed\algorithms\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms 2025-07-17T08:09:39.2312560Z creating build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-07-17T08:09:39.2315455Z copying torch\distributed\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\autograd 2025-07-17T08:09:39.2333294Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2336609Z copying torch\distributed\checkpoint\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2346220Z copying torch\distributed\checkpoint\default_planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2363219Z copying torch\distributed\checkpoint\filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2388993Z copying torch\distributed\checkpoint\format_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2404269Z copying torch\distributed\checkpoint\hf_storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2418963Z copying torch\distributed\checkpoint\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2428091Z copying torch\distributed\checkpoint\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2434837Z copying torch\distributed\checkpoint\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2449885Z copying torch\distributed\checkpoint\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2460503Z copying torch\distributed\checkpoint\planner.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2475482Z copying torch\distributed\checkpoint\planner_helpers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2494628Z copying torch\distributed\checkpoint\resharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2504643Z copying torch\distributed\checkpoint\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2514714Z copying torch\distributed\checkpoint\stateful.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2524257Z copying torch\distributed\checkpoint\state_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2577367Z copying torch\distributed\checkpoint\state_dict_loader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2588681Z copying torch\distributed\checkpoint\state_dict_saver.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2603155Z copying torch\distributed\checkpoint\storage.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2613211Z copying torch\distributed\checkpoint\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2627329Z copying torch\distributed\checkpoint\_async_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2641947Z copying torch\distributed\checkpoint\_async_process_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2652996Z copying torch\distributed\checkpoint\_async_thread_executor.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2662034Z copying torch\distributed\checkpoint\_checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2680160Z copying torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2699937Z copying torch\distributed\checkpoint\_dedup_save_plans.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2712875Z copying torch\distributed\checkpoint\_dedup_tensors.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2723930Z copying torch\distributed\checkpoint\_extension.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2734298Z copying torch\distributed\checkpoint\_fsspec_filesystem.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2744671Z copying torch\distributed\checkpoint\_hf_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2755219Z copying torch\distributed\checkpoint\_nested_dict.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2764841Z copying torch\distributed\checkpoint\_pg_transport.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2774967Z copying torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2790733Z copying torch\distributed\checkpoint\_state_dict_stager.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2801956Z copying torch\distributed\checkpoint\_storage_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2811949Z copying torch\distributed\checkpoint\_traverse.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2822444Z copying torch\distributed\checkpoint\_version.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2827882Z copying torch\distributed\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint 2025-07-17T08:09:39.2834953Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-17T08:09:39.2837991Z copying torch\distributed\elastic\control_plane.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-17T08:09:39.2847991Z copying torch\distributed\elastic\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic 2025-07-17T08:09:39.2862170Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.2865069Z copying torch\distributed\fsdp\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.2880992Z copying torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.2933004Z copying torch\distributed\fsdp\sharded_grad_scaler.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.2948276Z copying torch\distributed\fsdp\wrap.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.2963892Z copying torch\distributed\fsdp\_common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3667836Z copying torch\distributed\fsdp\_debug_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3677360Z copying torch\distributed\fsdp\_dynamo_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3687973Z copying torch\distributed\fsdp\_exec_order_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3703247Z copying torch\distributed\fsdp\_flat_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3749452Z copying torch\distributed\fsdp\_fsdp_extensions.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3765032Z copying torch\distributed\fsdp\_init_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3785147Z copying torch\distributed\fsdp\_limiter_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3794128Z copying torch\distributed\fsdp\_optim_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3827706Z copying torch\distributed\fsdp\_runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3856956Z copying torch\distributed\fsdp\_shard_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3866781Z copying torch\distributed\fsdp\_state_dict_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3888446Z copying torch\distributed\fsdp\_trace_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3904363Z copying torch\distributed\fsdp\_traversal_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3917299Z copying torch\distributed\fsdp\_unshard_param_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3934725Z copying torch\distributed\fsdp\_wrap_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3951133Z copying torch\distributed\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp 2025-07-17T08:09:39.3963043Z creating build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-17T08:09:39.3966154Z copying torch\distributed\launcher\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-17T08:09:39.3981055Z copying torch\distributed\launcher\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\launcher 2025-07-17T08:09:39.3988978Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-17T08:09:39.3991668Z copying torch\distributed\nn\functional.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-17T08:09:39.4776094Z copying torch\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn 2025-07-17T08:09:39.4790418Z creating build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4793568Z copying torch\distributed\optim\apply_optimizer_in_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4804969Z copying torch\distributed\optim\functional_adadelta.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4814516Z copying torch\distributed\optim\functional_adagrad.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4829150Z copying torch\distributed\optim\functional_adam.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4839924Z copying torch\distributed\optim\functional_adamax.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4849866Z copying torch\distributed\optim\functional_adamw.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4860562Z copying torch\distributed\optim\functional_rmsprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4871867Z copying torch\distributed\optim\functional_rprop.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4881174Z copying torch\distributed\optim\functional_sgd.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4892112Z copying torch\distributed\optim\named_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4902869Z copying torch\distributed\optim\optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4913231Z copying torch\distributed\optim\post_localSGD_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4924806Z copying torch\distributed\optim\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4932819Z copying torch\distributed\optim\zero_redundancy_optimizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4963421Z copying torch\distributed\optim\_deprecation_warning.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4969249Z copying torch\distributed\optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:39.4982603Z creating build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.4985123Z copying torch\distributed\pipelining\microbatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5000261Z copying torch\distributed\pipelining\schedules.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5046447Z copying torch\distributed\pipelining\stage.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5077633Z copying torch\distributed\pipelining\_backward.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5092684Z copying torch\distributed\pipelining\_debug.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5097946Z copying torch\distributed\pipelining\_IR.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5143971Z copying torch\distributed\pipelining\_schedule_visualizer.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5144937Z copying torch\distributed\pipelining\_unflatten.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5149801Z copying torch\distributed\pipelining\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5159337Z copying torch\distributed\pipelining\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\pipelining 2025-07-17T08:09:39.5167954Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5171213Z copying torch\distributed\rpc\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5190732Z copying torch\distributed\rpc\backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5204834Z copying torch\distributed\rpc\constants.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5215124Z copying torch\distributed\rpc\functions.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5229089Z copying torch\distributed\rpc\internal.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5239528Z copying torch\distributed\rpc\options.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5249473Z copying torch\distributed\rpc\rref_proxy.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5262875Z copying torch\distributed\rpc\server_process_global_profiler.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5273602Z copying torch\distributed\rpc\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5283033Z copying torch\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc 2025-07-17T08:09:39.5296805Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5299990Z copying torch\distributed\tensor\device_mesh.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5305857Z copying torch\distributed\tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5322983Z copying torch\distributed\tensor\_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5347439Z copying torch\distributed\tensor\_collective_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5362273Z copying torch\distributed\tensor\_dispatch.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5377324Z copying torch\distributed\tensor\_dtensor_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5387727Z copying torch\distributed\tensor\_op_schema.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.5403127Z copying torch\distributed\tensor\_random.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.6652629Z copying torch\distributed\tensor\_redistribute.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.6672556Z copying torch\distributed\tensor\_sharding_prop.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.6688332Z copying torch\distributed\tensor\_shards_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.6700559Z copying torch\distributed\tensor\_tp_conv.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.6711335Z copying torch\distributed\tensor\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.6726168Z copying torch\distributed\tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor 2025-07-17T08:09:39.6738484Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-17T08:09:39.6741657Z copying torch\distributed\_composable\checkpoint_activation.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-17T08:09:39.6752359Z copying torch\distributed\_composable\contract.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-17T08:09:39.6764573Z copying torch\distributed\_composable\replicate.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-17T08:09:39.6774969Z copying torch\distributed\_composable\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable 2025-07-17T08:09:39.6786166Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6789252Z copying torch\distributed\_shard\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6802071Z copying torch\distributed\_shard\common_op_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6812433Z copying torch\distributed\_shard\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6822754Z copying torch\distributed\_shard\op_registry_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6831407Z copying torch\distributed\_shard\sharder.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6845058Z copying torch\distributed\_shard\_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6857925Z copying torch\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard 2025-07-17T08:09:39.6864923Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-07-17T08:09:39.6867815Z copying torch\distributed\_sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor 2025-07-17T08:09:39.6875141Z creating build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-07-17T08:09:39.6877575Z copying torch\distributed\_sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec 2025-07-17T08:09:39.6884198Z creating build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-17T08:09:39.6887486Z copying torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-17T08:09:39.6898350Z copying torch\distributed\_symmetric_memory\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory 2025-07-17T08:09:39.6927556Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-17T08:09:39.6930448Z copying torch\distributed\_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-17T08:09:39.6941805Z copying torch\distributed\_tensor\placement_types.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-17T08:09:39.6947015Z copying torch\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tensor 2025-07-17T08:09:39.6961173Z creating build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.6963319Z copying torch\distributed\_tools\common_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.6978565Z copying torch\distributed\_tools\fake_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.6988483Z copying torch\distributed\_tools\fsdp2_mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7007357Z copying torch\distributed\_tools\ilp_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7025780Z copying torch\distributed\_tools\memory_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7037386Z copying torch\distributed\_tools\mem_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7060472Z copying torch\distributed\_tools\mod_tracker.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7071277Z copying torch\distributed\_tools\runtime_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7087739Z copying torch\distributed\_tools\sac_estimator.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7106111Z copying torch\distributed\_tools\sac_ilp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7116578Z copying torch\distributed\_tools\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_tools 2025-07-17T08:09:39.7124649Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7132390Z copying torch\distributed\algorithms\ddp_comm_hooks\ddp_zero_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7142473Z copying torch\distributed\algorithms\ddp_comm_hooks\debugging_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7152131Z copying torch\distributed\algorithms\ddp_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7168191Z copying torch\distributed\algorithms\ddp_comm_hooks\mixed_precision_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7178035Z copying torch\distributed\algorithms\ddp_comm_hooks\optimizer_overlap_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7188045Z copying torch\distributed\algorithms\ddp_comm_hooks\post_localSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7198486Z copying torch\distributed\algorithms\ddp_comm_hooks\powerSGD_hook.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7219436Z copying torch\distributed\algorithms\ddp_comm_hooks\quantization_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7229924Z copying torch\distributed\algorithms\ddp_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:09:39.7240455Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-17T08:09:39.7247417Z copying torch\distributed\algorithms\model_averaging\averagers.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-17T08:09:39.7257775Z copying torch\distributed\algorithms\model_averaging\hierarchical_model_averager.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-17T08:09:39.7270179Z copying torch\distributed\algorithms\model_averaging\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-17T08:09:39.7281841Z copying torch\distributed\algorithms\model_averaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\model_averaging 2025-07-17T08:09:39.7287455Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-17T08:09:39.7290852Z copying torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-17T08:09:39.7301122Z copying torch\distributed\algorithms\_checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint 2025-07-17T08:09:39.7306973Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-17T08:09:39.7310068Z copying torch\distributed\algorithms\_comm_hooks\default_hooks.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-17T08:09:39.7320294Z copying torch\distributed\algorithms\_comm_hooks\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_comm_hooks 2025-07-17T08:09:39.7327049Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-17T08:09:39.7330192Z copying torch\distributed\algorithms\_optimizer_overlap\optimizer_overlap.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-17T08:09:39.7339672Z copying torch\distributed\algorithms\_optimizer_overlap\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_optimizer_overlap 2025-07-17T08:09:39.7362086Z creating build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-17T08:09:39.7365938Z copying torch\distributed\algorithms\_quantization\quantization.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-17T08:09:39.7375888Z copying torch\distributed\algorithms\_quantization\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization 2025-07-17T08:09:39.7383565Z creating build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7386607Z copying torch\distributed\checkpoint\_experimental\barriers.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7398271Z copying torch\distributed\checkpoint\_experimental\builder.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7408347Z copying torch\distributed\checkpoint\_experimental\checkpointer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7419227Z copying torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7438268Z copying torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7449363Z copying torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7460309Z copying torch\distributed\checkpoint\_experimental\config.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7470204Z copying torch\distributed\checkpoint\_experimental\staging.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7480594Z copying torch\distributed\checkpoint\_experimental\types.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7489458Z copying torch\distributed\checkpoint\_experimental\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7498969Z copying torch\distributed\checkpoint\_experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental 2025-07-17T08:09:39.7511227Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-07-17T08:09:39.7514029Z copying torch\distributed\elastic\agent\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent 2025-07-17T08:09:39.7519893Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-17T08:09:39.7529711Z copying torch\distributed\elastic\events\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-17T08:09:39.7539194Z copying torch\distributed\elastic\events\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-17T08:09:39.7544875Z copying torch\distributed\elastic\events\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\events 2025-07-17T08:09:39.7556252Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-17T08:09:39.7558636Z copying torch\distributed\elastic\metrics\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-17T08:09:39.7573451Z copying torch\distributed\elastic\metrics\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics 2025-07-17T08:09:39.7586166Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-17T08:09:39.7594727Z copying torch\distributed\elastic\multiprocessing\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-17T08:09:39.7614710Z copying torch\distributed\elastic\multiprocessing\redirects.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-17T08:09:39.7625290Z copying torch\distributed\elastic\multiprocessing\tail_log.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-17T08:09:39.7636219Z copying torch\distributed\elastic\multiprocessing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing 2025-07-17T08:09:39.7648478Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7651475Z copying torch\distributed\elastic\rendezvous\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7663652Z copying torch\distributed\elastic\rendezvous\c10d_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7674076Z copying torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7740529Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7760430Z copying torch\distributed\elastic\rendezvous\etcd_rendezvous_backend.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7775956Z copying torch\distributed\elastic\rendezvous\etcd_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7788257Z copying torch\distributed\elastic\rendezvous\etcd_store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7797723Z copying torch\distributed\elastic\rendezvous\registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7807063Z copying torch\distributed\elastic\rendezvous\static_tcp_rendezvous.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7817985Z copying torch\distributed\elastic\rendezvous\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7827697Z copying torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7837809Z copying torch\distributed\elastic\rendezvous\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous 2025-07-17T08:09:39.7848261Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-17T08:09:39.7851340Z copying torch\distributed\elastic\timer\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-17T08:09:39.7862978Z copying torch\distributed\elastic\timer\debug_info_logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-17T08:09:39.7873911Z copying torch\distributed\elastic\timer\file_based_local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-17T08:09:39.7890833Z copying torch\distributed\elastic\timer\local_timer.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-17T08:09:39.7909578Z copying torch\distributed\elastic\timer\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer 2025-07-17T08:09:39.7921349Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-17T08:09:39.7924276Z copying torch\distributed\elastic\utils\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-17T08:09:39.7934971Z copying torch\distributed\elastic\utils\distributed.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-17T08:09:39.7945760Z copying torch\distributed\elastic\utils\logging.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-17T08:09:39.7956273Z copying torch\distributed\elastic\utils\log_level.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-17T08:09:39.7961813Z copying torch\distributed\elastic\utils\store.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-17T08:09:39.7977030Z copying torch\distributed\elastic\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils 2025-07-17T08:09:39.7984351Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-17T08:09:39.7987764Z copying torch\distributed\elastic\agent\server\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-17T08:09:39.8010544Z copying torch\distributed\elastic\agent\server\health_check_server.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-17T08:09:39.8020788Z copying torch\distributed\elastic\agent\server\local_elastic_agent.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-17T08:09:39.8035827Z copying torch\distributed\elastic\agent\server\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\server 2025-07-17T08:09:39.8047521Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-17T08:09:39.8054510Z copying torch\distributed\elastic\multiprocessing\errors\error_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-17T08:09:39.8064522Z copying torch\distributed\elastic\multiprocessing\errors\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-17T08:09:39.8069815Z copying torch\distributed\elastic\multiprocessing\errors\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\errors 2025-07-17T08:09:39.8081929Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-17T08:09:39.8085332Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-17T08:09:39.8096159Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\subprocess_handler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-17T08:09:39.8104519Z copying torch\distributed\elastic\multiprocessing\subprocess_handler\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-17T08:09:39.8111306Z creating build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-17T08:09:39.8114220Z copying torch\distributed\elastic\utils\data\cycling_iterator.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-17T08:09:39.8156009Z copying torch\distributed\elastic\utils\data\elastic_distributed_sampler.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-17T08:09:39.8157502Z copying torch\distributed\elastic\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\data 2025-07-17T08:09:39.8166370Z creating build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8169451Z copying torch\distributed\fsdp\_fully_shard\_fsdp_api.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8180130Z copying torch\distributed\fsdp\_fully_shard\_fsdp_collectives.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8196985Z copying torch\distributed\fsdp\_fully_shard\_fsdp_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8212794Z copying torch\distributed\fsdp\_fully_shard\_fsdp_init.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8223758Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8247348Z copying torch\distributed\fsdp\_fully_shard\_fsdp_param_group.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8271188Z copying torch\distributed\fsdp\_fully_shard\_fsdp_state.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8285603Z copying torch\distributed\fsdp\_fully_shard\_fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8301264Z copying torch\distributed\fsdp\_fully_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fully_shard 2025-07-17T08:09:39.8311869Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-17T08:09:39.8314833Z copying torch\distributed\nn\api\remote_module.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-17T08:09:39.8331926Z copying torch\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\api 2025-07-17T08:09:39.8337616Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-17T08:09:39.8340590Z copying torch\distributed\nn\jit\instantiator.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-17T08:09:39.8350557Z copying torch\distributed\nn\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit 2025-07-17T08:09:39.8356210Z creating build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-17T08:09:39.8360080Z copying torch\distributed\nn\jit\templates\remote_module_template.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-17T08:09:39.8452403Z copying torch\distributed\nn\jit\templates\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\templates 2025-07-17T08:09:39.8458376Z creating build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-17T08:09:39.8461926Z copying torch\distributed\rpc\_testing\faulty_agent_backend_registry.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-17T08:09:39.8480863Z copying torch\distributed\rpc\_testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing 2025-07-17T08:09:39.8487876Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-17T08:09:39.8491008Z copying torch\distributed\tensor\debug\_comm_mode.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-17T08:09:39.8520614Z copying torch\distributed\tensor\debug\_op_coverage.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-17T08:09:39.8526520Z copying torch\distributed\tensor\debug\_visualize_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-17T08:09:39.8662150Z copying torch\distributed\tensor\debug\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug 2025-07-17T08:09:39.8677679Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-17T08:09:39.8681005Z copying torch\distributed\tensor\experimental\_attention.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-17T08:09:39.8707656Z copying torch\distributed\tensor\experimental\_func_map.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-17T08:09:39.8723117Z copying torch\distributed\tensor\experimental\_register_sharding.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-17T08:09:39.8738410Z copying torch\distributed\tensor\experimental\_tp_transform.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-17T08:09:39.8752908Z copying torch\distributed\tensor\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental 2025-07-17T08:09:39.8767742Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.8770790Z copying torch\distributed\tensor\parallel\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.8780911Z copying torch\distributed\tensor\parallel\ddp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.8789980Z copying torch\distributed\tensor\parallel\fsdp.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.8956624Z copying torch\distributed\tensor\parallel\input_reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.8974695Z copying torch\distributed\tensor\parallel\loss.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.8992434Z copying torch\distributed\tensor\parallel\style.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.9018286Z copying torch\distributed\tensor\parallel\_data_parallel_utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.9032096Z copying torch\distributed\tensor\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel 2025-07-17T08:09:39.9040173Z creating build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9043615Z copying torch\distributed\tensor\_ops\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9055418Z copying torch\distributed\tensor\_ops\_common_rules.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9066298Z copying torch\distributed\tensor\_ops\_conv_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9076109Z copying torch\distributed\tensor\_ops\_einsum_strategy.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9089240Z copying torch\distributed\tensor\_ops\_embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9100741Z copying torch\distributed\tensor\_ops\_math_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9124067Z copying torch\distributed\tensor\_ops\_matrix_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9143981Z copying torch\distributed\tensor\_ops\_pointwise_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9162673Z copying torch\distributed\tensor\_ops\_random_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9173282Z copying torch\distributed\tensor\_ops\_tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9192853Z copying torch\distributed\tensor\_ops\_view_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9210215Z copying torch\distributed\tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops 2025-07-17T08:09:39.9217173Z creating build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-17T08:09:39.9220185Z copying torch\distributed\_composable\fsdp\fully_shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-17T08:09:39.9225537Z copying torch\distributed\_composable\fsdp\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp 2025-07-17T08:09:39.9237487Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-07-17T08:09:39.9240673Z copying torch\distributed\_shard\checkpoint\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint 2025-07-17T08:09:39.9247955Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-17T08:09:39.9251092Z copying torch\distributed\_shard\sharded_optim\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-17T08:09:39.9261078Z copying torch\distributed\_shard\sharded_optim\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_optim 2025-07-17T08:09:39.9272587Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9276075Z copying torch\distributed\_shard\sharded_tensor\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9304524Z copying torch\distributed\_shard\sharded_tensor\logger.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9313117Z copying torch\distributed\_shard\sharded_tensor\logging_handlers.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9318730Z copying torch\distributed\_shard\sharded_tensor\metadata.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9365486Z copying torch\distributed\_shard\sharded_tensor\reshard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9366568Z copying torch\distributed\_shard\sharded_tensor\shard.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9367497Z copying torch\distributed\_shard\sharded_tensor\utils.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9368437Z copying torch\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor 2025-07-17T08:09:39.9383711Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-17T08:09:39.9386487Z copying torch\distributed\_shard\sharding_plan\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-17T08:09:39.9397290Z copying torch\distributed\_shard\sharding_plan\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_plan 2025-07-17T08:09:39.9404508Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-17T08:09:39.9407581Z copying torch\distributed\_shard\sharding_spec\api.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-17T08:09:39.9418212Z copying torch\distributed\_shard\sharding_spec\chunk_sharding_spec.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-17T08:09:39.9432791Z copying torch\distributed\_shard\sharding_spec\_internals.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-17T08:09:39.9442258Z copying torch\distributed\_shard\sharding_spec\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec 2025-07-17T08:09:39.9454512Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:09:39.9457385Z copying torch\distributed\_shard\sharded_tensor\_ops\binary_cmp.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:09:39.9471316Z copying torch\distributed\_shard\sharded_tensor\_ops\init.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:09:39.9480933Z copying torch\distributed\_shard\sharded_tensor\_ops\misc_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:09:39.9486319Z copying torch\distributed\_shard\sharded_tensor\_ops\tensor_ops.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:09:39.9497170Z copying torch\distributed\_shard\sharded_tensor\_ops\_common.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:09:39.9514572Z copying torch\distributed\_shard\sharded_tensor\_ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:09:39.9521327Z creating build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-17T08:09:39.9524560Z 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-07-17T08:09:39.9535179Z 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-07-17T08:09:39.9552977Z 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-07-17T08:09:39.9569150Z 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-07-17T08:09:39.9575221Z creating build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-17T08:09:39.9578369Z copying torch\export\experimental\_utils.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-17T08:09:39.9588381Z copying torch\export\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\experimental 2025-07-17T08:09:39.9614895Z creating build\lib.win-amd64-cpython-39\torch\export\passes 2025-07-17T08:09:39.9617659Z copying torch\export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\passes 2025-07-17T08:09:39.9630481Z creating build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-17T08:09:39.9633446Z copying torch\export\pt2_archive\constants.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-17T08:09:39.9643952Z copying torch\export\pt2_archive\_package.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-17T08:09:39.9659707Z copying torch\export\pt2_archive\_package_weights.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-17T08:09:39.9672496Z copying torch\export\pt2_archive\__init__.py -> build\lib.win-amd64-cpython-39\torch\export\pt2_archive 2025-07-17T08:09:39.9687187Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9690467Z copying torch\fx\experimental\accelerator_partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9712310Z copying torch\fx\experimental\const_fold.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9725721Z copying torch\fx\experimental\debug.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9739585Z copying torch\fx\experimental\graph_gradual_typechecker.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9760621Z copying torch\fx\experimental\merge_matmul.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9776243Z copying torch\fx\experimental\meta_tracer.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9787542Z copying torch\fx\experimental\normalize.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9797979Z copying torch\fx\experimental\optimization.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9812124Z copying torch\fx\experimental\partitioner_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9822683Z copying torch\fx\experimental\proxy_tensor.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9857254Z copying torch\fx\experimental\recording.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9871987Z copying torch\fx\experimental\refinement_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:39.9877786Z copying torch\fx\experimental\rewriter.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.0932920Z copying torch\fx\experimental\schema_type_annotation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.0943586Z copying torch\fx\experimental\symbolic_shapes.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1063412Z copying torch\fx\experimental\sym_node.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1092162Z copying torch\fx\experimental\unify_refinements.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1106328Z copying torch\fx\experimental\validator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1135038Z copying torch\fx\experimental\_backward_state.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1145330Z copying torch\fx\experimental\_config.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1155833Z copying torch\fx\experimental\_constant_symnode.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1170655Z copying torch\fx\experimental\_dynamism.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1180694Z copying torch\fx\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental 2025-07-17T08:09:40.1190093Z creating build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1192924Z copying torch\fx\passes\annotate_getitem_nodes.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1204756Z copying torch\fx\passes\fake_tensor_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1215583Z copying torch\fx\passes\graph_drawer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1229913Z copying torch\fx\passes\graph_manipulation.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1244328Z copying torch\fx\passes\graph_transform_observer.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1255423Z copying torch\fx\passes\net_min_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1277031Z copying torch\fx\passes\operator_support.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1287964Z copying torch\fx\passes\param_fetch.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1297191Z copying torch\fx\passes\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1307145Z copying torch\fx\passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1329887Z copying torch\fx\passes\runtime_assert.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1347683Z copying torch\fx\passes\shape_prop.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1359862Z copying torch\fx\passes\splitter_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1380224Z copying torch\fx\passes\split_module.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1402394Z copying torch\fx\passes\split_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1413253Z copying torch\fx\passes\tools_common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1423755Z copying torch\fx\passes\_tensorify_python_scalars.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1474552Z copying torch\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes 2025-07-17T08:09:40.1484079Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1486434Z copying torch\fx\experimental\migrate_gradual_types\constraint.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1506991Z copying torch\fx\experimental\migrate_gradual_types\constraint_generator.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1532004Z copying torch\fx\experimental\migrate_gradual_types\constraint_transformation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1556608Z copying torch\fx\experimental\migrate_gradual_types\operation.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1562678Z copying torch\fx\experimental\migrate_gradual_types\transform_to_z3.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1578258Z copying torch\fx\experimental\migrate_gradual_types\util.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1587815Z copying torch\fx\experimental\migrate_gradual_types\z3_types.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1600486Z copying torch\fx\experimental\migrate_gradual_types\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:09:40.1607205Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1610666Z copying torch\fx\experimental\unification\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1620785Z copying torch\fx\experimental\unification\dispatch.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1626182Z copying torch\fx\experimental\unification\match.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1635611Z copying torch\fx\experimental\unification\more.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1645543Z copying torch\fx\experimental\unification\unification_tools.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1659213Z copying torch\fx\experimental\unification\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1668381Z copying torch\fx\experimental\unification\variable.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1685479Z copying torch\fx\experimental\unification\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification 2025-07-17T08:09:40.1693555Z creating build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:09:40.1696613Z copying torch\fx\experimental\unification\multipledispatch\conflict.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:09:40.1706647Z copying torch\fx\experimental\unification\multipledispatch\core.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:09:40.1715665Z copying torch\fx\experimental\unification\multipledispatch\dispatcher.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:09:40.1730641Z copying torch\fx\experimental\unification\multipledispatch\utils.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:09:40.1739497Z copying torch\fx\experimental\unification\multipledispatch\variadic.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:09:40.1751810Z copying torch\fx\experimental\unification\multipledispatch\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:09:40.1758283Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-17T08:09:40.1761212Z copying torch\fx\passes\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-17T08:09:40.1772325Z copying torch\fx\passes\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\backends 2025-07-17T08:09:40.1777878Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-07-17T08:09:40.1784316Z copying torch\fx\passes\dialect\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect 2025-07-17T08:09:40.1790443Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-17T08:09:40.1793425Z copying torch\fx\passes\infra\partitioner.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-17T08:09:40.1809112Z copying torch\fx\passes\infra\pass_base.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-17T08:09:40.1818986Z copying torch\fx\passes\infra\pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-17T08:09:40.1832651Z copying torch\fx\passes\infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\infra 2025-07-17T08:09:40.1843106Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-17T08:09:40.1846002Z copying torch\fx\passes\tests\test_pass_manager.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-17T08:09:40.1856172Z copying torch\fx\passes\tests\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\tests 2025-07-17T08:09:40.1862550Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-17T08:09:40.1880581Z copying torch\fx\passes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-17T08:09:40.1892074Z copying torch\fx\passes\utils\fuser_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-17T08:09:40.1903201Z copying torch\fx\passes\utils\matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-17T08:09:40.2040577Z copying torch\fx\passes\utils\matcher_with_name_node_map_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-17T08:09:40.2055149Z copying torch\fx\passes\utils\source_matcher_utils.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-17T08:09:40.2065888Z copying torch\fx\passes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\utils 2025-07-17T08:09:40.2072377Z creating build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-17T08:09:40.2075563Z copying torch\fx\passes\dialect\common\cse_pass.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-17T08:09:40.2088951Z copying torch\fx\passes\dialect\common\__init__.py -> build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\common 2025-07-17T08:09:40.2095509Z creating build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-07-17T08:09:40.2098274Z copying torch\jit\mobile\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\mobile 2025-07-17T08:09:40.2114988Z creating build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-17T08:09:40.2118168Z copying torch\jit\_passes\_property_propagation.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-17T08:09:40.2128678Z copying torch\jit\_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\jit\_passes 2025-07-17T08:09:40.2134870Z creating build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2138958Z copying torch\masked\maskedtensor\binary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2149422Z copying torch\masked\maskedtensor\core.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2161361Z copying torch\masked\maskedtensor\creation.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2168878Z copying torch\masked\maskedtensor\passthrough.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2178711Z copying torch\masked\maskedtensor\reductions.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2192907Z copying torch\masked\maskedtensor\unary.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2204951Z copying torch\masked\maskedtensor\_ops_refs.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2219564Z copying torch\masked\maskedtensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\masked\maskedtensor 2025-07-17T08:09:40.2226505Z creating build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-17T08:09:40.2229597Z copying torch\nested\_internal\nested_int.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-17T08:09:40.2240386Z copying torch\nested\_internal\nested_tensor.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-17T08:09:40.2255852Z copying torch\nested\_internal\ops.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-17T08:09:40.2292441Z copying torch\nested\_internal\sdpa.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-17T08:09:40.2315293Z copying torch\nested\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\nested\_internal 2025-07-17T08:09:40.2321255Z creating build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-17T08:09:40.2324451Z copying torch\nn\attention\bias.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-17T08:09:40.2338786Z copying torch\nn\attention\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-17T08:09:40.2366041Z copying torch\nn\attention\_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-17T08:09:40.2375366Z copying torch\nn\attention\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention 2025-07-17T08:09:40.2386820Z creating build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-17T08:09:40.2389664Z copying torch\nn\backends\thnn.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-17T08:09:40.2394945Z copying torch\nn\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\backends 2025-07-17T08:09:40.2400399Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-07-17T08:09:40.2403199Z copying torch\nn\intrinsic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic 2025-07-17T08:09:40.2417362Z creating build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2420518Z copying torch\nn\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2445516Z copying torch\nn\modules\adaptive.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2457884Z copying torch\nn\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2481401Z copying torch\nn\modules\channelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2548325Z copying torch\nn\modules\container.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2567505Z copying torch\nn\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2603325Z copying torch\nn\modules\distance.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2614194Z copying torch\nn\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2624650Z copying torch\nn\modules\flatten.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2634801Z copying torch\nn\modules\fold.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.2649071Z copying torch\nn\modules\instancenorm.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3649498Z copying torch\nn\modules\lazy.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3666952Z copying torch\nn\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3671003Z copying torch\nn\modules\loss.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3708993Z copying torch\nn\modules\module.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3761559Z copying torch\nn\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3774815Z copying torch\nn\modules\padding.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3792797Z copying torch\nn\modules\pixelshuffle.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3806473Z copying torch\nn\modules\pooling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3834031Z copying torch\nn\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3868757Z copying torch\nn\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3884656Z copying torch\nn\modules\transformer.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3919091Z copying torch\nn\modules\upsampling.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3930560Z copying torch\nn\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3941368Z copying torch\nn\modules\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3952802Z copying torch\nn\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\modules 2025-07-17T08:09:40.3969354Z creating build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.3972419Z copying torch\nn\parallel\comm.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.3983427Z copying torch\nn\parallel\data_parallel.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.3994185Z copying torch\nn\parallel\distributed.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.4037370Z copying torch\nn\parallel\parallel_apply.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.4059181Z copying torch\nn\parallel\replicate.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.4071476Z copying torch\nn\parallel\scatter_gather.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.4082966Z copying torch\nn\parallel\_functions.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.4102994Z copying torch\nn\parallel\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\parallel 2025-07-17T08:09:40.4115681Z creating build\lib.win-amd64-cpython-39\torch\nn\qat 2025-07-17T08:09:40.4119781Z copying torch\nn\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat 2025-07-17T08:09:40.4129108Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-07-17T08:09:40.4132146Z copying torch\nn\quantizable\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable 2025-07-17T08:09:40.4141307Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-17T08:09:40.4144596Z copying torch\nn\quantized\functional.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-17T08:09:40.4151277Z copying torch\nn\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized 2025-07-17T08:09:40.4173420Z creating build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4176289Z copying torch\nn\utils\clip_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4189957Z copying torch\nn\utils\convert_parameters.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4201899Z copying torch\nn\utils\fusion.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4216816Z copying torch\nn\utils\init.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4226251Z copying torch\nn\utils\memory_format.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4241060Z copying torch\nn\utils\parametrizations.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4262976Z copying torch\nn\utils\parametrize.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4283717Z copying torch\nn\utils\prune.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4309852Z copying torch\nn\utils\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4328184Z copying torch\nn\utils\spectral_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4341890Z copying torch\nn\utils\stateless.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4352920Z copying torch\nn\utils\weight_norm.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4362432Z copying torch\nn\utils\_deprecation_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4373311Z copying torch\nn\utils\_named_member_accessor.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4384030Z copying torch\nn\utils\_per_sample_grad.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4394420Z copying torch\nn\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils 2025-07-17T08:09:40.4405285Z creating build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-17T08:09:40.4412730Z copying torch\nn\attention\experimental\_paged_attention.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-17T08:09:40.4429193Z copying torch\nn\attention\experimental\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\attention\experimental 2025-07-17T08:09:40.4435391Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-17T08:09:40.4438198Z copying torch\nn\intrinsic\modules\fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-17T08:09:40.4444156Z copying torch\nn\intrinsic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules 2025-07-17T08:09:40.4452036Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-07-17T08:09:40.4454110Z copying torch\nn\intrinsic\qat\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat 2025-07-17T08:09:40.4466029Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-07-17T08:09:40.4469393Z copying torch\nn\intrinsic\quantized\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized 2025-07-17T08:09:40.4476017Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-17T08:09:40.4480731Z copying torch\nn\intrinsic\qat\modules\conv_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-17T08:09:40.4489994Z copying torch\nn\intrinsic\qat\modules\linear_fused.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-17T08:09:40.4495798Z copying torch\nn\intrinsic\qat\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-17T08:09:40.4506024Z copying torch\nn\intrinsic\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\modules 2025-07-17T08:09:40.4516570Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-07-17T08:09:40.4519483Z copying torch\nn\intrinsic\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic 2025-07-17T08:09:40.4526891Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-17T08:09:40.4529630Z copying torch\nn\intrinsic\quantized\modules\bn_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-17T08:09:40.4535675Z copying torch\nn\intrinsic\quantized\modules\conv_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-17T08:09:40.4816154Z copying torch\nn\intrinsic\quantized\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-17T08:09:40.4817112Z copying torch\nn\intrinsic\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\modules 2025-07-17T08:09:40.4817888Z creating build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-17T08:09:40.4818750Z copying torch\nn\intrinsic\quantized\dynamic\modules\linear_relu.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-17T08:09:40.4819828Z copying torch\nn\intrinsic\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-17T08:09:40.4820610Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-07-17T08:09:40.4821159Z copying torch\nn\qat\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic 2025-07-17T08:09:40.4821706Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-17T08:09:40.4822232Z copying torch\nn\qat\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-17T08:09:40.4822895Z copying torch\nn\qat\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-17T08:09:40.4823565Z copying torch\nn\qat\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-17T08:09:40.4824196Z copying torch\nn\qat\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\modules 2025-07-17T08:09:40.4824772Z creating build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-17T08:09:40.4825401Z copying torch\nn\qat\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-17T08:09:40.4826233Z copying torch\nn\qat\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\modules 2025-07-17T08:09:40.4826983Z creating build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-17T08:09:40.4827638Z copying torch\nn\quantizable\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-17T08:09:40.4828426Z copying torch\nn\quantizable\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-17T08:09:40.4829241Z copying torch\nn\quantizable\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules 2025-07-17T08:09:40.4829880Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-07-17T08:09:40.4830492Z copying torch\nn\quantized\dynamic\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic 2025-07-17T08:09:40.4831093Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4831740Z copying torch\nn\quantized\modules\activation.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4832511Z copying torch\nn\quantized\modules\batchnorm.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4833258Z copying torch\nn\quantized\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4833981Z copying torch\nn\quantized\modules\dropout.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4834751Z copying torch\nn\quantized\modules\embedding_ops.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4835564Z copying torch\nn\quantized\modules\functional_modules.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4836353Z copying torch\nn\quantized\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4837127Z copying torch\nn\quantized\modules\normalization.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4837974Z copying torch\nn\quantized\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4838695Z copying torch\nn\quantized\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4841880Z copying torch\nn\quantized\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\modules 2025-07-17T08:09:40.4852651Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-07-17T08:09:40.4859851Z copying torch\nn\quantized\_reference\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference 2025-07-17T08:09:40.4866664Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-17T08:09:40.4869591Z copying torch\nn\quantized\dynamic\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-17T08:09:40.4875022Z copying torch\nn\quantized\dynamic\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-17T08:09:40.4880560Z copying torch\nn\quantized\dynamic\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-17T08:09:40.4891212Z copying torch\nn\quantized\dynamic\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\modules 2025-07-17T08:09:40.4902089Z creating build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-17T08:09:40.4905019Z copying torch\nn\quantized\_reference\modules\conv.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-17T08:09:40.4910890Z copying torch\nn\quantized\_reference\modules\linear.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-17T08:09:40.4916344Z copying torch\nn\quantized\_reference\modules\rnn.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-17T08:09:40.4921679Z copying torch\nn\quantized\_reference\modules\sparse.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-17T08:09:40.4927036Z copying torch\nn\quantized\_reference\modules\utils.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-17T08:09:40.4932338Z copying torch\nn\quantized\_reference\modules\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\modules 2025-07-17T08:09:40.4947971Z creating build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.4951170Z copying torch\nn\utils\_expanded_weights\conv_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.4961754Z copying torch\nn\utils\_expanded_weights\conv_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.4972443Z copying torch\nn\utils\_expanded_weights\embedding_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.4986563Z copying torch\nn\utils\_expanded_weights\expanded_weights_impl.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.5002343Z copying torch\nn\utils\_expanded_weights\expanded_weights_utils.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.5014077Z copying torch\nn\utils\_expanded_weights\group_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.5026199Z copying torch\nn\utils\_expanded_weights\instance_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.5041473Z copying torch\nn\utils\_expanded_weights\layer_norm_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.5052759Z copying torch\nn\utils\_expanded_weights\linear_expanded_weights.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.5063856Z copying torch\nn\utils\_expanded_weights\__init__.py -> build\lib.win-amd64-cpython-39\torch\nn\utils\_expanded_weights 2025-07-17T08:09:40.5069773Z creating build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-17T08:09:40.5072731Z copying torch\onnx\ops\_dtype_mappings.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-17T08:09:40.5082581Z copying torch\onnx\ops\_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-17T08:09:40.5093645Z copying torch\onnx\ops\_symbolic_impl.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-17T08:09:40.5104244Z copying torch\onnx\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\ops 2025-07-17T08:09:40.5124205Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-17T08:09:40.5127327Z copying torch\onnx\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-17T08:09:40.5142529Z copying torch\onnx\_internal\onnx_proto_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-17T08:09:40.5153123Z copying torch\onnx\_internal\registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-17T08:09:40.5167610Z copying torch\onnx\_internal\_exporter_legacy.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-17T08:09:40.5185120Z copying torch\onnx\_internal\_lazy_import.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-17T08:09:40.5194358Z copying torch\onnx\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal 2025-07-17T08:09:40.5203481Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5206658Z copying torch\onnx\_internal\exporter\_analysis.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5218353Z copying torch\onnx\_internal\exporter\_building.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5235615Z copying torch\onnx\_internal\exporter\_capture_strategies.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5308417Z copying torch\onnx\_internal\exporter\_compat.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5322957Z copying torch\onnx\_internal\exporter\_constants.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5328635Z copying torch\onnx\_internal\exporter\_core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5366135Z copying torch\onnx\_internal\exporter\_decomp.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5374791Z copying torch\onnx\_internal\exporter\_dispatching.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5385864Z copying torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5396758Z copying torch\onnx\_internal\exporter\_errors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5402262Z copying torch\onnx\_internal\exporter\_flags.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5407916Z copying torch\onnx\_internal\exporter\_fx_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5417854Z copying torch\onnx\_internal\exporter\_ir_passes.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5427495Z copying torch\onnx\_internal\exporter\_isolated.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5441174Z copying torch\onnx\_internal\exporter\_onnx_program.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5456450Z copying torch\onnx\_internal\exporter\_registration.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5469221Z copying torch\onnx\_internal\exporter\_reporting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5478010Z copying torch\onnx\_internal\exporter\_schemas.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5494769Z copying torch\onnx\_internal\exporter\_tensors.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5504750Z copying torch\onnx\_internal\exporter\_testing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5513973Z copying torch\onnx\_internal\exporter\_type_casting.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5523997Z copying torch\onnx\_internal\exporter\_verification.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5535991Z copying torch\onnx\_internal\exporter\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter 2025-07-17T08:09:40.5542766Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-17T08:09:40.5545844Z copying torch\onnx\_internal\fx\patcher.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-17T08:09:40.5558691Z copying torch\onnx\_internal\fx\serialization.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-17T08:09:40.5569025Z copying torch\onnx\_internal\fx\type_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-17T08:09:40.5579647Z copying torch\onnx\_internal\fx\_pass.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-17T08:09:40.5590235Z copying torch\onnx\_internal\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx 2025-07-17T08:09:40.5601665Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-17T08:09:40.5608203Z copying torch\onnx\_internal\exporter\_torchlib\_tensor_typing.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-17T08:09:40.5618480Z copying torch\onnx\_internal\exporter\_torchlib\_torchlib_registry.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-17T08:09:40.5632605Z copying torch\onnx\_internal\exporter\_torchlib\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib 2025-07-17T08:09:40.5639726Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:09:40.5648030Z copying torch\onnx\_internal\exporter\_torchlib\ops\core.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:09:40.5659094Z copying torch\onnx\_internal\exporter\_torchlib\ops\hop.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:09:40.5667663Z copying torch\onnx\_internal\exporter\_torchlib\ops\nn.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:09:40.5682052Z copying torch\onnx\_internal\exporter\_torchlib\ops\symbolic.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:09:40.5693478Z copying torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:09:40.5707354Z copying torch\onnx\_internal\exporter\_torchlib\ops\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:09:40.5714011Z creating build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-17T08:09:40.5717009Z copying torch\onnx\_internal\fx\passes\type_promotion.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-17T08:09:40.5752369Z copying torch\onnx\_internal\fx\passes\_utils.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-17T08:09:40.5763476Z copying torch\onnx\_internal\fx\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\passes 2025-07-17T08:09:40.5769810Z creating build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-17T08:09:40.5772817Z copying torch\optim\_multi_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-17T08:09:40.5785191Z creating build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-17T08:09:40.5788180Z copying torch\package\analyze\find_first_use_of_broken_modules.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-17T08:09:40.5802717Z copying torch\package\analyze\is_from_package.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-17T08:09:40.5808542Z copying torch\package\analyze\trace_dependencies.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-17T08:09:40.5822944Z copying torch\package\analyze\__init__.py -> build\lib.win-amd64-cpython-39\torch\package\analyze 2025-07-17T08:09:40.5831064Z creating build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5834772Z copying torch\quantization\fx\convert.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5839893Z copying torch\quantization\fx\fuse.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5845360Z copying torch\quantization\fx\fusion_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5852209Z copying torch\quantization\fx\graph_module.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5861988Z copying torch\quantization\fx\match_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5872195Z copying torch\quantization\fx\pattern_utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5882282Z copying torch\quantization\fx\prepare.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5887743Z copying torch\quantization\fx\quantization_patterns.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5898550Z copying torch\quantization\fx\quantization_types.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5904240Z copying torch\quantization\fx\utils.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5914199Z copying torch\quantization\fx\_equalize.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5927969Z copying torch\quantization\fx\__init__.py -> build\lib.win-amd64-cpython-39\torch\quantization\fx 2025-07-17T08:09:40.5934999Z creating build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-17T08:09:40.5937919Z copying torch\signal\windows\windows.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-17T08:09:40.5972492Z copying torch\signal\windows\__init__.py -> build\lib.win-amd64-cpython-39\torch\signal\windows 2025-07-17T08:09:40.5986432Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.5998440Z copying torch\testing\_internal\autocast_test_lists.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.6013866Z copying torch\testing\_internal\autograd_function_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.6028292Z copying torch\testing\_internal\check_kernel_launches.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.6050478Z copying torch\testing\_internal\common_cuda.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.6088476Z copying torch\testing\_internal\common_device_type.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.6117364Z copying torch\testing\_internal\common_distributed.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.7323524Z copying torch\testing\_internal\common_dist_composable.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.7338093Z copying torch\testing\_internal\common_dtype.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.7348015Z copying torch\testing\_internal\common_fsdp.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.7373661Z copying torch\testing\_internal\common_jit.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.7384666Z copying torch\testing\_internal\common_methods_invocations.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.9573324Z copying torch\testing\_internal\common_mkldnn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:40.9584704Z copying torch\testing\_internal\common_modules.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0324061Z copying torch\testing\_internal\common_mps.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0347823Z copying torch\testing\_internal\common_nn.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0411740Z copying torch\testing\_internal\common_optimizers.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0447144Z copying torch\testing\_internal\common_pruning.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0458480Z copying torch\testing\_internal\common_quantization.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0513861Z copying torch\testing\_internal\common_quantized.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0529835Z copying torch\testing\_internal\common_subclass.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.0541086Z copying torch\testing\_internal\common_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.1357788Z copying torch\testing\_internal\composite_compliance.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.1377643Z copying torch\testing\_internal\custom_op_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.1394153Z copying torch\testing\_internal\custom_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.1405243Z copying torch\testing\_internal\dist_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.1416345Z copying torch\testing\_internal\dynamo_test_failures.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2240890Z copying torch\testing\_internal\fake_config_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2251807Z copying torch\testing\_internal\fake_config_module2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2257628Z copying torch\testing\_internal\fake_config_module3.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2268060Z copying torch\testing\_internal\hop_db.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2280174Z copying torch\testing\_internal\hypothesis_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2292364Z copying torch\testing\_internal\inductor_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2303812Z copying torch\testing\_internal\jit_metaprogramming_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2324858Z copying torch\testing\_internal\jit_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2348200Z copying torch\testing\_internal\logging_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2359377Z copying torch\testing\_internal\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.2370376Z copying torch\testing\_internal\quantization_torch_package_models.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.3008922Z copying torch\testing\_internal\static_module.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.3023315Z copying torch\testing\_internal\subclasses.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.3037972Z copying torch\testing\_internal\torchbind_impls.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.3049208Z copying torch\testing\_internal\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.3066248Z copying torch\testing\_internal\two_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.3080159Z copying torch\testing\_internal\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal 2025-07-17T08:09:41.3086303Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-07-17T08:09:41.3089363Z copying torch\testing\_internal\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen 2025-07-17T08:09:41.3096667Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-17T08:09:41.3099657Z copying torch\testing\_internal\data\network1.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-17T08:09:41.3106274Z copying torch\testing\_internal\data\network2.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-17T08:09:41.3110514Z copying torch\testing\_internal\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\data 2025-07-17T08:09:41.3118881Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.3123308Z copying torch\testing\_internal\distributed\checkpoint_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.3135220Z copying torch\testing\_internal\distributed\common_state_dict.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.3146726Z copying torch\testing\_internal\distributed\ddp_under_dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.3175031Z copying torch\testing\_internal\distributed\distributed_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.4019606Z copying torch\testing\_internal\distributed\distributed_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.4031100Z copying torch\testing\_internal\distributed\fake_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.4042212Z copying torch\testing\_internal\distributed\multi_threaded_pg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.4057517Z copying torch\testing\_internal\distributed\rpc_utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.4069428Z copying torch\testing\_internal\distributed\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed 2025-07-17T08:09:41.4075691Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-17T08:09:41.4079015Z copying torch\testing\_internal\generated\annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-17T08:09:41.4252785Z copying torch\testing\_internal\generated\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\generated 2025-07-17T08:09:41.4294395Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-17T08:09:41.4295095Z copying torch\testing\_internal\opinfo\core.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-17T08:09:41.4314351Z copying torch\testing\_internal\opinfo\refs.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-17T08:09:41.4324962Z copying torch\testing\_internal\opinfo\utils.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-17T08:09:41.4335199Z copying torch\testing\_internal\opinfo\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo 2025-07-17T08:09:41.4342723Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-17T08:09:41.4346259Z copying torch\testing\_internal\optests\aot_autograd.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-17T08:09:41.4357251Z copying torch\testing\_internal\optests\autograd_registration.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-17T08:09:41.4374956Z copying torch\testing\_internal\optests\fake_tensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-17T08:09:41.4380731Z copying torch\testing\_internal\optests\generate_tests.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-17T08:09:41.4401464Z copying torch\testing\_internal\optests\make_fx.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-17T08:09:41.4414212Z copying torch\testing\_internal\optests\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\optests 2025-07-17T08:09:41.4421192Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-17T08:09:41.4424303Z copying torch\testing\_internal\test_module\future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-17T08:09:41.4429902Z copying torch\testing\_internal\test_module\no_future_div.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-17T08:09:41.4435396Z copying torch\testing\_internal\test_module\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\test_module 2025-07-17T08:09:41.4441495Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-07-17T08:09:41.4444341Z copying torch\testing\_internal\distributed\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn 2025-07-17T08:09:41.4451246Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4454439Z copying torch\testing\_internal\distributed\rpc\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4497887Z copying torch\testing\_internal\distributed\rpc\dist_optimizer_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4507851Z copying torch\testing\_internal\distributed\rpc\faulty_agent_rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4522453Z copying torch\testing\_internal\distributed\rpc\faulty_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4537414Z copying torch\testing\_internal\distributed\rpc\rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4547351Z copying torch\testing\_internal\distributed\rpc\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4624146Z copying torch\testing\_internal\distributed\rpc\tensorpipe_rpc_agent_test_fixture.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4633708Z copying torch\testing\_internal\distributed\rpc\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc 2025-07-17T08:09:41.4640373Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-17T08:09:41.4644069Z copying torch\testing\_internal\distributed\_shard\test_common.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-17T08:09:41.4659597Z copying torch\testing\_internal\distributed\_shard\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard 2025-07-17T08:09:41.4666932Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-17T08:09:41.4669851Z copying torch\testing\_internal\distributed\_tensor\common_dtensor.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-17T08:09:41.4686227Z copying torch\testing\_internal\distributed\_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_tensor 2025-07-17T08:09:41.4692530Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-17T08:09:41.4696316Z copying torch\testing\_internal\distributed\nn\api\remote_module_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-17T08:09:41.4712840Z copying torch\testing\_internal\distributed\nn\api\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\nn\api 2025-07-17T08:09:41.4718937Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-17T08:09:41.4721691Z copying torch\testing\_internal\distributed\rpc\examples\parameter_server_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-17T08:09:41.4732837Z 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-07-17T08:09:41.4755124Z copying torch\testing\_internal\distributed\rpc\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\examples 2025-07-17T08:09:41.4756009Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-17T08:09:41.4756894Z copying torch\testing\_internal\distributed\rpc\jit\dist_autograd_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-17T08:09:41.4764576Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-17T08:09:41.4786762Z copying torch\testing\_internal\distributed\rpc\jit\rpc_test_faulty.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-17T08:09:41.4796416Z copying torch\testing\_internal\distributed\rpc\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc\jit 2025-07-17T08:09:41.4802409Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-17T08:09:41.4806767Z 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-07-17T08:09:41.4817923Z 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-07-17T08:09:41.4827188Z copying torch\testing\_internal\distributed\_shard\sharded_tensor\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-17T08:09:41.4838581Z creating build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4841689Z copying torch\testing\_internal\opinfo\definitions\fft.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4857210Z copying torch\testing\_internal\opinfo\definitions\linalg.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4891094Z copying torch\testing\_internal\opinfo\definitions\nested.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4916940Z copying torch\testing\_internal\opinfo\definitions\signal.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4928181Z copying torch\testing\_internal\opinfo\definitions\sparse.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4950059Z copying torch\testing\_internal\opinfo\definitions\special.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4971779Z copying torch\testing\_internal\opinfo\definitions\_masked.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.4991065Z copying torch\testing\_internal\opinfo\definitions\__init__.py -> build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\definitions 2025-07-17T08:09:41.5004101Z creating build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-07-17T08:09:41.5008444Z copying torch\utils\backcompat\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\backcompat 2025-07-17T08:09:41.5018072Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-07-17T08:09:41.5020995Z copying torch\utils\benchmark\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark 2025-07-17T08:09:41.5030130Z creating build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-17T08:09:41.5033197Z copying torch\utils\bottleneck\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-17T08:09:41.5039162Z copying torch\utils\bottleneck\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\bottleneck 2025-07-17T08:09:41.5055447Z creating build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5059753Z copying torch\utils\data\backward_compatibility.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5073332Z copying torch\utils\data\dataloader.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5105469Z copying torch\utils\data\dataset.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5118965Z copying torch\utils\data\distributed.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5137451Z copying torch\utils\data\graph.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5147891Z copying torch\utils\data\graph_settings.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5158473Z copying torch\utils\data\sampler.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5168918Z copying torch\utils\data\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data 2025-07-17T08:09:41.5185885Z creating build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-17T08:09:41.5218587Z copying torch\utils\hipify\constants.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-17T08:09:41.5229928Z copying torch\utils\hipify\cuda_to_hip_mappings.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-17T08:09:41.5370678Z copying torch\utils\hipify\hipify_python.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-17T08:09:41.5390946Z copying torch\utils\hipify\version.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-17T08:09:41.5402113Z copying torch\utils\hipify\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\hipify 2025-07-17T08:09:41.5408737Z creating build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-17T08:09:41.5411757Z copying torch\utils\jit\log_extract.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-17T08:09:41.5421191Z copying torch\utils\jit\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\jit 2025-07-17T08:09:41.5427037Z creating build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-17T08:09:41.5430122Z copying torch\utils\model_dump\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-17T08:09:41.5444966Z copying torch\utils\model_dump\__main__.py -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-17T08:09:41.5451510Z creating build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-17T08:09:41.5454529Z copying torch\utils\serialization\config.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-17T08:09:41.5459894Z copying torch\utils\serialization\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\serialization 2025-07-17T08:09:41.5467471Z creating build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5470503Z copying torch\utils\tensorboard\summary.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5497462Z copying torch\utils\tensorboard\writer.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5516084Z copying torch\utils\tensorboard\_convert_np.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5526563Z copying torch\utils\tensorboard\_embedding.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5541005Z copying torch\utils\tensorboard\_onnx_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5550076Z copying torch\utils\tensorboard\_proto_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5560795Z copying torch\utils\tensorboard\_pytorch_graph.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5571924Z copying torch\utils\tensorboard\_utils.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5580640Z copying torch\utils\tensorboard\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\tensorboard 2025-07-17T08:09:41.5587680Z creating build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-17T08:09:41.5590725Z copying torch\utils\viz\_cycles.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-17T08:09:41.5606695Z copying torch\utils\viz\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\viz 2025-07-17T08:09:41.5612415Z creating build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-17T08:09:41.5614958Z copying torch\utils\_strobelight\cli_function_profiler.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-17T08:09:41.5626178Z copying torch\utils\_strobelight\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_strobelight 2025-07-17T08:09:41.5633108Z creating build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5636201Z copying torch\utils\_sympy\functions.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5662734Z copying torch\utils\_sympy\interp.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5673965Z copying torch\utils\_sympy\numbers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5683779Z copying torch\utils\_sympy\printers.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5699119Z copying torch\utils\_sympy\reference.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5718121Z copying torch\utils\_sympy\singleton_int.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5727756Z copying torch\utils\_sympy\solve.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5737726Z copying torch\utils\_sympy\symbol.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5760440Z copying torch\utils\_sympy\value_ranges.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5772652Z copying torch\utils\_sympy\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\_sympy 2025-07-17T08:09:41.5779646Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-17T08:09:41.5782651Z copying torch\utils\benchmark\examples\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-17T08:09:41.5793011Z copying torch\utils\benchmark\examples\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-17T08:09:41.5802478Z copying torch\utils\benchmark\examples\op_benchmark.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-17T08:09:41.5816342Z copying torch\utils\benchmark\examples\simple_timeit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-17T08:09:41.5822728Z copying torch\utils\benchmark\examples\spectral_ops_fuzz_test.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-17T08:09:41.5836562Z copying torch\utils\benchmark\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples 2025-07-17T08:09:41.5843374Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-17T08:09:41.5846682Z copying torch\utils\benchmark\op_fuzzers\binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-17T08:09:41.5856811Z copying torch\utils\benchmark\op_fuzzers\sparse_binary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-17T08:09:41.5866134Z copying torch\utils\benchmark\op_fuzzers\sparse_unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-17T08:09:41.5875955Z copying torch\utils\benchmark\op_fuzzers\spectral.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-17T08:09:41.5894676Z copying torch\utils\benchmark\op_fuzzers\unary.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-17T08:09:41.5904428Z copying torch\utils\benchmark\op_fuzzers\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\op_fuzzers 2025-07-17T08:09:41.5911405Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.5914470Z copying torch\utils\benchmark\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.5925164Z copying torch\utils\benchmark\utils\compare.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.5936025Z copying torch\utils\benchmark\utils\compile.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.5949860Z copying torch\utils\benchmark\utils\cpp_jit.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.5959305Z copying torch\utils\benchmark\utils\fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.5973701Z copying torch\utils\benchmark\utils\sparse_fuzzer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.5992046Z copying torch\utils\benchmark\utils\timer.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.6006559Z copying torch\utils\benchmark\utils\_stubs.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.6016459Z copying torch\utils\benchmark\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:41.6022593Z creating build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:09:41.6026010Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_interface.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:09:41.6050320Z copying torch\utils\benchmark\utils\valgrind_wrapper\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:09:41.6056869Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:41.6061487Z copying torch\utils\data\datapipes\datapipe.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:41.6079444Z copying torch\utils\data\datapipes\gen_pyi.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:41.6090582Z copying torch\utils\data\datapipes\_decorator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:41.6100249Z copying torch\utils\data\datapipes\_hook_iterator.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:41.6119322Z copying torch\utils\data\datapipes\_typing.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:41.6133187Z copying torch\utils\data\datapipes\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:41.6142138Z creating build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-17T08:09:41.6144323Z copying torch\utils\data\_utils\collate.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-17T08:09:41.6155392Z copying torch\utils\data\_utils\fetch.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-17T08:09:41.6171242Z copying torch\utils\data\_utils\pin_memory.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-17T08:09:41.6179412Z copying torch\utils\data\_utils\signal_handling.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-17T08:09:41.6190696Z copying torch\utils\data\_utils\worker.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-17T08:09:41.6209413Z copying torch\utils\data\_utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\_utils 2025-07-17T08:09:41.6222337Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-17T08:09:41.6225532Z copying torch\utils\data\datapipes\dataframe\dataframes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-17T08:09:41.6237240Z copying torch\utils\data\datapipes\dataframe\dataframe_wrapper.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-17T08:09:41.6246360Z copying torch\utils\data\datapipes\dataframe\datapipes.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-17T08:09:41.6264040Z copying torch\utils\data\datapipes\dataframe\structures.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-17T08:09:41.6273951Z copying torch\utils\data\datapipes\dataframe\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\dataframe 2025-07-17T08:09:41.6282433Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6285451Z copying torch\utils\data\datapipes\iter\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6302899Z copying torch\utils\data\datapipes\iter\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6312243Z copying torch\utils\data\datapipes\iter\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6329970Z copying torch\utils\data\datapipes\iter\filelister.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6523658Z copying torch\utils\data\datapipes\iter\fileopener.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6536041Z copying torch\utils\data\datapipes\iter\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6547641Z copying torch\utils\data\datapipes\iter\routeddecoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6557674Z copying torch\utils\data\datapipes\iter\selecting.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6573182Z copying torch\utils\data\datapipes\iter\sharding.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6583976Z copying torch\utils\data\datapipes\iter\streamreader.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6593465Z copying torch\utils\data\datapipes\iter\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6603308Z copying torch\utils\data\datapipes\iter\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\iter 2025-07-17T08:09:41.6644896Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-17T08:09:41.6645640Z copying torch\utils\data\datapipes\map\callable.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-17T08:09:41.6646494Z copying torch\utils\data\datapipes\map\combinatorics.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-17T08:09:41.6647345Z copying torch\utils\data\datapipes\map\combining.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-17T08:09:41.6651071Z copying torch\utils\data\datapipes\map\grouping.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-17T08:09:41.6665097Z copying torch\utils\data\datapipes\map\utils.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-17T08:09:41.6681131Z copying torch\utils\data\datapipes\map\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\map 2025-07-17T08:09:41.6686425Z creating build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-17T08:09:41.6689397Z copying torch\utils\data\datapipes\utils\common.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-17T08:09:41.6700960Z copying torch\utils\data\datapipes\utils\decoder.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-17T08:09:41.6711618Z copying torch\utils\data\datapipes\utils\snapshot.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-17T08:09:41.6720868Z copying torch\utils\data\datapipes\utils\__init__.py -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\utils 2025-07-17T08:09:41.6728133Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6731045Z copying torch\_dynamo\backends\common.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6741517Z copying torch\_dynamo\backends\cudagraphs.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6755657Z copying torch\_dynamo\backends\debugging.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6781790Z copying torch\_dynamo\backends\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6924727Z copying torch\_dynamo\backends\inductor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6938899Z copying torch\_dynamo\backends\onnxrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6948670Z copying torch\_dynamo\backends\registry.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6957680Z copying torch\_dynamo\backends\tensorrt.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6963006Z copying torch\_dynamo\backends\torchxla.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6979302Z copying torch\_dynamo\backends\tvm.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6989932Z copying torch\_dynamo\backends\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\backends 2025-07-17T08:09:41.6997762Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7000895Z copying torch\_dynamo\polyfills\builtins.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7010511Z copying torch\_dynamo\polyfills\functools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7019819Z copying torch\_dynamo\polyfills\fx.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7033620Z copying torch\_dynamo\polyfills\itertools.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7048976Z copying torch\_dynamo\polyfills\loader.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7058426Z copying torch\_dynamo\polyfills\operator.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7071567Z copying torch\_dynamo\polyfills\os.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7081571Z copying torch\_dynamo\polyfills\pytree.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7092930Z copying torch\_dynamo\polyfills\sys.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7101994Z copying torch\_dynamo\polyfills\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7114314Z copying torch\_dynamo\polyfills\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills 2025-07-17T08:09:41.7126277Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-17T08:09:41.7129255Z copying torch\_dynamo\repro\after_aot.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-17T08:09:41.7151659Z copying torch\_dynamo\repro\after_dynamo.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-17T08:09:41.7166816Z copying torch\_dynamo\repro\aoti.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-17T08:09:41.7187034Z copying torch\_dynamo\repro\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\repro 2025-07-17T08:09:41.7196847Z creating build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.7199044Z copying torch\_dynamo\variables\base.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.7215412Z copying torch\_dynamo\variables\builder.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.8112659Z copying torch\_dynamo\variables\builtin.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.8153475Z copying torch\_dynamo\variables\constant.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.8169157Z copying torch\_dynamo\variables\ctx_manager.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.8200387Z copying torch\_dynamo\variables\dicts.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.8230469Z copying torch\_dynamo\variables\distributed.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.8250700Z copying torch\_dynamo\variables\functions.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.8288612Z copying torch\_dynamo\variables\higher_order_ops.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9114396Z copying torch\_dynamo\variables\iter.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9130931Z copying torch\_dynamo\variables\lazy.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9142841Z copying torch\_dynamo\variables\lists.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9164025Z copying torch\_dynamo\variables\misc.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9193348Z copying torch\_dynamo\variables\nn_module.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9219653Z copying torch\_dynamo\variables\optimizer.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9236275Z copying torch\_dynamo\variables\script_object.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9246255Z copying torch\_dynamo\variables\sdpa.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9257903Z copying torch\_dynamo\variables\tensor.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9298683Z copying torch\_dynamo\variables\torch.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9333040Z copying torch\_dynamo\variables\torch_function.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9349488Z copying torch\_dynamo\variables\user_defined.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9380910Z copying torch\_dynamo\variables\__init__.py -> build\lib.win-amd64-cpython-39\torch\_dynamo\variables 2025-07-17T08:09:41.9393461Z creating build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-17T08:09:41.9396385Z copying torch\_export\db\case.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-17T08:09:41.9410887Z copying torch\_export\db\gen_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-17T08:09:41.9416749Z copying torch\_export\db\logging.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-17T08:09:41.9426277Z copying torch\_export\db\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db 2025-07-17T08:09:41.9435105Z creating build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9438940Z copying torch\_export\passes\add_runtime_assertions_for_constraints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9454001Z copying torch\_export\passes\collect_tracepoints_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9465202Z copying torch\_export\passes\constant_folding.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9480034Z copying torch\_export\passes\functionalize_side_effectful_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9494463Z copying torch\_export\passes\insert_custom_op_guards.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9504156Z copying torch\_export\passes\lift_constants_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9608687Z copying torch\_export\passes\remove_runtime_assertions.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9619326Z copying torch\_export\passes\replace_autocast_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9630575Z copying torch\_export\passes\replace_quantized_ops_with_standard_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9647693Z copying torch\_export\passes\replace_set_grad_with_hop_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9658985Z copying torch\_export\passes\replace_view_ops_with_view_copy_ops_pass.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9668110Z copying torch\_export\passes\replace_with_hop_pass_util.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9678513Z copying torch\_export\passes\_node_metadata_hook.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9689373Z copying torch\_export\passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\passes 2025-07-17T08:09:41.9697438Z creating build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-17T08:09:41.9700636Z copying torch\_export\pass_infra\node_metadata.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-17T08:09:41.9711071Z copying torch\_export\pass_infra\proxy_value.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-17T08:09:41.9724641Z copying torch\_export\pass_infra\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\pass_infra 2025-07-17T08:09:41.9731318Z creating build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:41.9734441Z copying torch\_export\serde\dynamic_shapes.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:41.9745673Z copying torch\_export\serde\schema.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:41.9756968Z copying torch\_export\serde\schema_check.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:41.9785371Z copying torch\_export\serde\serialize.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:41.9839603Z copying torch\_export\serde\union.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:41.9848999Z copying torch\_export\serde\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:41.9861173Z creating build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9864369Z copying torch\_export\db\examples\assume_constant_result.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9870331Z copying torch\_export\db\examples\autograd_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9880852Z copying torch\_export\db\examples\class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9891236Z copying torch\_export\db\examples\cond_branch_class_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9901798Z copying torch\_export\db\examples\cond_branch_nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9911277Z copying torch\_export\db\examples\cond_branch_nonlocal_variables.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9920391Z copying torch\_export\db\examples\cond_closed_over_variable.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9926669Z copying torch\_export\db\examples\cond_operands.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9937557Z copying torch\_export\db\examples\cond_predicate.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9951064Z copying torch\_export\db\examples\constrain_as_size_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9961281Z copying torch\_export\db\examples\constrain_as_value_example.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9971935Z copying torch\_export\db\examples\decorator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9977733Z copying torch\_export\db\examples\dictionary.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9988217Z copying torch\_export\db\examples\dynamic_shape_assert.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:41.9994631Z copying torch\_export\db\examples\dynamic_shape_constructor.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0000536Z copying torch\_export\db\examples\dynamic_shape_if_guard.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0006489Z copying torch\_export\db\examples\dynamic_shape_map.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0012464Z copying torch\_export\db\examples\dynamic_shape_round.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0023185Z copying torch\_export\db\examples\dynamic_shape_slicing.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0028945Z copying torch\_export\db\examples\dynamic_shape_view.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0034812Z copying torch\_export\db\examples\fn_with_kwargs.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0048956Z copying torch\_export\db\examples\list_contains.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0054883Z copying torch\_export\db\examples\list_unpack.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0060786Z copying torch\_export\db\examples\model_attr_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0070571Z copying torch\_export\db\examples\nested_function.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0081302Z copying torch\_export\db\examples\null_context_manager.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0090708Z copying torch\_export\db\examples\optional_input.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0096501Z copying torch\_export\db\examples\pytree_flatten.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0102234Z copying torch\_export\db\examples\scalar_output.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0113886Z copying torch\_export\db\examples\specialized_attribute.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0119287Z copying torch\_export\db\examples\static_for_loop.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0125091Z copying torch\_export\db\examples\static_if.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0131115Z copying torch\_export\db\examples\tensor_setattr.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0137606Z copying torch\_export\db\examples\type_reflection_method.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0142944Z copying torch\_export\db\examples\unsupported_operator.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0154696Z copying torch\_export\db\examples\user_input_mutation.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0160025Z copying torch\_export\db\examples\__init__.py -> build\lib.win-amd64-cpython-39\torch\_export\db\examples 2025-07-17T08:09:42.0173716Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-17T08:09:42.0176886Z copying torch\_functorch\_activation_checkpointing\ac_logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-17T08:09:42.0187443Z copying torch\_functorch\_activation_checkpointing\graph_info_provider.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-17T08:09:42.0198102Z copying torch\_functorch\_activation_checkpointing\knapsack.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-17T08:09:42.0216728Z copying torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-17T08:09:42.0226638Z copying torch\_functorch\_activation_checkpointing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing 2025-07-17T08:09:42.0235522Z creating build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0238668Z copying torch\_functorch\_aot_autograd\autograd_cache.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0269377Z copying torch\_functorch\_aot_autograd\collect_metadata_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0294069Z copying torch\_functorch\_aot_autograd\dispatch_and_compile_graph.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0308195Z copying torch\_functorch\_aot_autograd\frontend_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0319240Z copying torch\_functorch\_aot_autograd\functional_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0337424Z copying torch\_functorch\_aot_autograd\input_output_analysis.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0351620Z copying torch\_functorch\_aot_autograd\jit_compile_runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0381639Z copying torch\_functorch\_aot_autograd\logging_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0391414Z copying torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0439024Z copying torch\_functorch\_aot_autograd\schemas.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0463905Z copying torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0473091Z copying torch\_functorch\_aot_autograd\subclass_utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0488054Z copying torch\_functorch\_aot_autograd\traced_function_transforms.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0516724Z copying torch\_functorch\_aot_autograd\utils.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0531270Z copying torch\_functorch\_aot_autograd\__init__.py -> build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd 2025-07-17T08:09:42.0561532Z creating build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-17T08:09:42.0564577Z copying torch\_inductor\analysis\device_info.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-17T08:09:42.0574703Z copying torch\_inductor\analysis\profile_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-17T08:09:42.0594247Z copying torch\_inductor\analysis\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\analysis 2025-07-17T08:09:42.0601070Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-17T08:09:42.0604363Z copying torch\_inductor\autoheuristic\autoheuristic.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-17T08:09:42.0616503Z copying torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-17T08:09:42.0627288Z copying torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-17T08:09:42.0642062Z copying torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-17T08:09:42.0650903Z copying torch\_inductor\autoheuristic\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic 2025-07-17T08:09:42.0662035Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.0665121Z copying torch\_inductor\codegen\aoti_hipify_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.0674951Z copying torch\_inductor\codegen\block_analysis.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.0685187Z copying torch\_inductor\codegen\common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.0727821Z copying torch\_inductor\codegen\cpp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1337086Z copying torch\_inductor\codegen\cpp_bmm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1353414Z copying torch\_inductor\codegen\cpp_flex_attention_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1378336Z copying torch\_inductor\codegen\cpp_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1414182Z copying torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1428410Z copying torch\_inductor\codegen\cpp_micro_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1459181Z copying torch\_inductor\codegen\cpp_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1473023Z copying torch\_inductor\codegen\cpp_template_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1497005Z copying torch\_inductor\codegen\cpp_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.1512445Z copying torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.2940172Z copying torch\_inductor\codegen\cpp_wrapper_cpu_array_ref.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.2965210Z copying torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.2980482Z copying torch\_inductor\codegen\cpp_wrapper_mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.2990151Z copying torch\_inductor\codegen\cpu_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3000662Z copying torch\_inductor\codegen\cuda_combined_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3015089Z copying torch\_inductor\codegen\debug_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3029891Z copying torch\_inductor\codegen\halide.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3055380Z copying torch\_inductor\codegen\memory_planning.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3070179Z copying torch\_inductor\codegen\mps.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3092559Z copying torch\_inductor\codegen\mps_device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3102413Z copying torch\_inductor\codegen\multi_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3757934Z copying torch\_inductor\codegen\simd.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3801410Z copying torch\_inductor\codegen\simd_kernel_features.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3823310Z copying torch\_inductor\codegen\subgraph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3834246Z copying torch\_inductor\codegen\triton.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3903132Z copying torch\_inductor\codegen\triton_combo_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3924190Z copying torch\_inductor\codegen\triton_split_scan.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3938524Z copying torch\_inductor\codegen\triton_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.3953032Z copying torch\_inductor\codegen\wrapper.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.4001485Z copying torch\_inductor\codegen\wrapper_fxir.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.4017066Z copying torch\_inductor\codegen\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen 2025-07-17T08:09:42.4023855Z creating build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-17T08:09:42.4027008Z copying torch\_inductor\compile_worker\subproc_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-17T08:09:42.4038016Z copying torch\_inductor\compile_worker\tracked_process_pool.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-17T08:09:42.4048313Z copying torch\_inductor\compile_worker\utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-17T08:09:42.4057041Z copying torch\_inductor\compile_worker\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-17T08:09:42.4065982Z copying torch\_inductor\compile_worker\__main__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker 2025-07-17T08:09:42.4084129Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4088064Z copying torch\_inductor\fx_passes\b2b_gemm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4103077Z copying torch\_inductor\fx_passes\binary_folding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4120620Z copying torch\_inductor\fx_passes\bucketing.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4141278Z copying torch\_inductor\fx_passes\ddp_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4164264Z copying torch\_inductor\fx_passes\decompose_mem_bound_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4175732Z copying torch\_inductor\fx_passes\dedupe_symint_uses.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4186299Z copying torch\_inductor\fx_passes\efficient_conv_bn_eval.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4197754Z copying torch\_inductor\fx_passes\freezing_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4208357Z copying torch\_inductor\fx_passes\fsdp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4217003Z copying torch\_inductor\fx_passes\fuse_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4237905Z copying torch\_inductor\fx_passes\group_batch_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4949435Z copying torch\_inductor\fx_passes\joint_graph.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4972042Z copying torch\_inductor\fx_passes\micro_pipeline_tp.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.4993318Z copying torch\_inductor\fx_passes\misc_patterns.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5005313Z copying torch\_inductor\fx_passes\mkldnn_fusion.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5033736Z copying torch\_inductor\fx_passes\numeric_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5045290Z copying torch\_inductor\fx_passes\pad_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5061385Z copying torch\_inductor\fx_passes\post_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5095970Z copying torch\_inductor\fx_passes\pre_grad.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5117352Z copying torch\_inductor\fx_passes\quantization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5168068Z copying torch\_inductor\fx_passes\reinplace.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5189772Z copying torch\_inductor\fx_passes\replace_random.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.5199570Z copying torch\_inductor\fx_passes\split_cat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.6123664Z copying torch\_inductor\fx_passes\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes 2025-07-17T08:09:42.6132339Z creating build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6135691Z copying torch\_inductor\kernel\bmm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6146599Z copying torch\_inductor\kernel\conv.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6165428Z copying torch\_inductor\kernel\flex_attention.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6206327Z copying torch\_inductor\kernel\flex_decoding.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6227453Z copying torch\_inductor\kernel\mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6250705Z copying torch\_inductor\kernel\mm_common.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6261280Z copying torch\_inductor\kernel\mm_grouped.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6278436Z copying torch\_inductor\kernel\mm_plus_mm.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6289491Z copying torch\_inductor\kernel\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\kernel 2025-07-17T08:09:42.6296898Z creating build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-17T08:09:42.6300177Z copying torch\_inductor\package\build_package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-17T08:09:42.6309850Z copying torch\_inductor\package\package.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-17T08:09:42.6320729Z copying torch\_inductor\package\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\package 2025-07-17T08:09:42.6346844Z creating build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6348466Z copying torch\_inductor\runtime\autotune_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6355912Z copying torch\_inductor\runtime\benchmarking.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6364092Z copying torch\_inductor\runtime\cache_dir_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6378447Z copying torch\_inductor\runtime\compile_tasks.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6392075Z copying torch\_inductor\runtime\coordinate_descent_tuner.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6403137Z copying torch\_inductor\runtime\halide_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6411791Z copying torch\_inductor\runtime\hints.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6426105Z copying torch\_inductor\runtime\runtime_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6436300Z copying torch\_inductor\runtime\static_cuda_launcher.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6447353Z copying torch\_inductor\runtime\triton_compat.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6457034Z copying torch\_inductor\runtime\triton_helpers.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6476150Z copying torch\_inductor\runtime\triton_heuristics.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6526484Z copying torch\_inductor\runtime\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\runtime 2025-07-17T08:09:42.6533253Z creating build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:09:42.6536436Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:09:42.6548465Z copying torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:09:42.6561560Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:09:42.6582104Z copying torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:09:42.6597953Z copying torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:09:42.6612175Z copying torch\_inductor\autoheuristic\artifacts\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:09:42.6621871Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6623568Z copying torch\_inductor\codegen\cuda\cuda_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6635092Z copying torch\_inductor\codegen\cuda\cuda_env.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6645149Z copying torch\_inductor\codegen\cuda\cuda_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6660321Z copying torch\_inductor\codegen\cuda\cuda_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6678034Z copying torch\_inductor\codegen\cuda\cutlass_cache.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6704160Z copying torch\_inductor\codegen\cuda\cutlass_presets.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6715011Z copying torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6731804Z copying torch\_inductor\codegen\cuda\cutlass_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6746169Z copying torch\_inductor\codegen\cuda\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6758224Z copying torch\_inductor\codegen\cuda\gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6788441Z copying torch\_inductor\codegen\cuda\serialization.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6805343Z copying torch\_inductor\codegen\cuda\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda 2025-07-17T08:09:42.6813299Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6816436Z copying torch\_inductor\codegen\rocm\ck_conv_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6833019Z copying torch\_inductor\codegen\rocm\ck_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6842640Z copying torch\_inductor\codegen\rocm\ck_tile_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6852628Z copying torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6881583Z copying torch\_inductor\codegen\rocm\ck_universal_gemm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6902711Z copying torch\_inductor\codegen\rocm\compile_command.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6913374Z copying torch\_inductor\codegen\rocm\rocm_benchmark_request.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6951059Z copying torch\_inductor\codegen\rocm\rocm_cpp_scheduling.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6951970Z copying torch\_inductor\codegen\rocm\rocm_kernel.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6952955Z copying torch\_inductor\codegen\rocm\rocm_template.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6957791Z copying torch\_inductor\codegen\rocm\rocm_template_buffer.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6967139Z copying torch\_inductor\codegen\rocm\rocm_utils.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6972997Z copying torch\_inductor\codegen\rocm\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm 2025-07-17T08:09:42.6979379Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-17T08:09:42.6982404Z copying torch\_inductor\codegen\xpu\device_op_overrides.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-17T08:09:42.6992815Z copying torch\_inductor\codegen\xpu\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu 2025-07-17T08:09:42.6998969Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-17T08:09:42.7002372Z 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-07-17T08:09:42.7036066Z 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-07-17T08:09:42.7055572Z copying torch\_inductor\codegen\cuda\cutlass_lib_extensions\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-17T08:09:42.7071307Z creating build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7074742Z copying torch\_inductor\fx_passes\serialized_patterns\addmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7085311Z copying torch\_inductor\fx_passes\serialized_patterns\bmm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7094795Z copying torch\_inductor\fx_passes\serialized_patterns\mm_pattern.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7111883Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_1.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7122642Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_10.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7133345Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_11.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7147946Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_12.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7158979Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_13.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7170255Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_14.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7181215Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_15.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7203499Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_16.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7223495Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_17.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7238599Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_18.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7258315Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_19.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7273605Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_2.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7284501Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7299303Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7311006Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7322631Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7338542Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7350004Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_3.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7361760Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_4.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7377833Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_5.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7389044Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_6.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7399751Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_7.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7410559Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_8.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7421957Z copying torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_9.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7433257Z copying torch\_inductor\fx_passes\serialized_patterns\__init__.py -> build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:09:42.7439661Z creating build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-17T08:09:42.7442571Z copying torch\_numpy\testing\utils.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-17T08:09:42.7476419Z copying torch\_numpy\testing\__init__.py -> build\lib.win-amd64-cpython-39\torch\_numpy\testing 2025-07-17T08:09:42.7482753Z creating build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-07-17T08:09:42.7485851Z copying torch\_refs\linalg\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\linalg 2025-07-17T08:09:42.7505395Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-07-17T08:09:42.7508027Z copying torch\_refs\nn\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn 2025-07-17T08:09:42.7514236Z creating build\lib.win-amd64-cpython-39\torch\_refs\special 2025-07-17T08:09:42.7650107Z copying torch\_refs\special\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\special 2025-07-17T08:09:42.7661575Z creating build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-07-17T08:09:42.7664441Z copying torch\_refs\nn\functional\__init__.py -> build\lib.win-amd64-cpython-39\torch\_refs\nn\functional 2025-07-17T08:09:42.7690818Z creating build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-17T08:09:42.7694908Z copying torch\_vendor\packaging\version.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-17T08:09:42.7710308Z copying torch\_vendor\packaging\_structures.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-17T08:09:42.7719694Z copying torch\_vendor\packaging\__init__.py -> build\lib.win-amd64-cpython-39\torch\_vendor\packaging 2025-07-17T08:09:42.7726425Z creating build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-17T08:09:42.7729449Z copying torchgen\aoti\fallback_ops.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-17T08:09:42.7741480Z copying torchgen\aoti\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\aoti 2025-07-17T08:09:42.7748753Z creating build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.7752261Z copying torchgen\api\autograd.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.7934831Z copying torchgen\api\cpp.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.7950320Z copying torchgen\api\dispatcher.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.7960725Z copying torchgen\api\functionalization.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.7976797Z copying torchgen\api\lazy.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.7999520Z copying torchgen\api\meta.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8005530Z copying torchgen\api\native.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8016663Z copying torchgen\api\python.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8044036Z copying torchgen\api\structured.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8054401Z copying torchgen\api\translate.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8069808Z copying torchgen\api\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8083903Z copying torchgen\api\unboxing.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8093642Z copying torchgen\api\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api 2025-07-17T08:09:42.8100502Z creating build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-17T08:09:42.8104057Z copying torchgen\dest\lazy_ir.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-17T08:09:42.8119477Z copying torchgen\dest\lazy_ts_lowering.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-17T08:09:42.8129054Z copying torchgen\dest\native_functions.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-17T08:09:42.8142110Z copying torchgen\dest\register_dispatch_key.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-17T08:09:42.8181433Z copying torchgen\dest\ufunc.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-17T08:09:42.8196187Z copying torchgen\dest\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\dest 2025-07-17T08:09:42.8211059Z creating build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-17T08:09:42.8214431Z copying torchgen\operator_versions\gen_mobile_upgraders.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-17T08:09:42.8227568Z copying torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-17T08:09:42.8233334Z copying torchgen\operator_versions\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\operator_versions 2025-07-17T08:09:42.8243401Z creating build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-17T08:09:42.8247676Z copying torchgen\selective_build\operator.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-17T08:09:42.8257473Z copying torchgen\selective_build\selector.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-17T08:09:42.8267796Z copying torchgen\selective_build\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\selective_build 2025-07-17T08:09:42.8274111Z creating build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-17T08:09:42.8277199Z copying torchgen\static_runtime\config.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-17T08:09:42.8288900Z copying torchgen\static_runtime\generator.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-17T08:09:42.8306684Z copying torchgen\static_runtime\gen_static_runtime_ops.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-17T08:09:42.8324371Z copying torchgen\static_runtime\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\static_runtime 2025-07-17T08:09:42.8330434Z creating build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-17T08:09:42.8334256Z copying torchgen\api\types\signatures.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-17T08:09:42.8345735Z copying torchgen\api\types\types.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-17T08:09:42.8355101Z copying torchgen\api\types\types_base.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-17T08:09:42.8364427Z copying torchgen\api\types\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\api\types 2025-07-17T08:09:43.6887701Z copying torch\return_types.pyi -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:43.6913884Z copying torch\_VF.pyi -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:43.8076067Z copying torch\py.typed -> build\lib.win-amd64-cpython-39\torch 2025-07-17T08:09:43.8081823Z creating build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8085008Z copying torch\bin\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8095739Z copying torch\bin\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8152047Z copying torch\bin\FileStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8162507Z copying torch\bin\ProcessGroupGlooAsyncTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8181143Z copying torch\bin\ProcessGroupGlooTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8191805Z copying torch\bin\protoc.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8222703Z copying torch\bin\TCPStoreTest.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8238309Z copying torch\bin\test_api.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8320894Z copying torch\bin\test_jit.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8375728Z copying torch\bin\test_lazy.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8404970Z copying torch\bin\test_nativert.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8427504Z copying torch\bin\test_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8485529Z copying torch\bin\tutorial_tensorexpr.exe -> build\lib.win-amd64-cpython-39\torch\bin 2025-07-17T08:09:43.8493314Z creating build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8496188Z copying torch\test\apply_utils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8506715Z copying torch\test\atest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8522014Z copying torch\test\backend_fallback_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8531995Z copying torch\test\basic.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8546788Z copying torch\test\broadcast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8560629Z copying torch\test\c10_accumulate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8570529Z copying torch\test\c10_ArrayRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8580633Z copying torch\test\c10_bfloat16_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8590734Z copying torch\test\c10_Bitset_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8605352Z copying torch\test\c10_bit_cast_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8614935Z copying torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8624219Z copying torch\test\c10_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8634508Z copying torch\test\c10_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8644256Z copying torch\test\c10_ConstexprCrc_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8653551Z copying torch\test\c10_cow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8664035Z copying torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8673906Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8692940Z copying torch\test\c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8707632Z copying torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8716877Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8727170Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8737619Z copying torch\test\c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8747916Z copying torch\test\c10_cuda_CUDATest.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8757030Z copying torch\test\c10_DeadlockDetection_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8770941Z copying torch\test\c10_DeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8786125Z copying torch\test\c10_Device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8795970Z copying torch\test\c10_DispatchKeySet_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8806571Z copying torch\test\c10_Enumerate_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8816813Z copying torch\test\c10_error_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8838388Z copying torch\test\c10_exception_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8840618Z copying torch\test\c10_flags_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8850359Z copying torch\test\c10_generic_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8860436Z copying torch\test\c10_Half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8870536Z copying torch\test\c10_InlineDeviceGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8902018Z copying torch\test\c10_InlineStreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8912553Z copying torch\test\c10_IntrusiveList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8922602Z copying torch\test\c10_intrusive_ptr_benchmark.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8937403Z copying torch\test\c10_intrusive_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8954148Z copying torch\test\c10_irange_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8963972Z copying torch\test\c10_lazy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8973925Z copying torch\test\c10_LeftRight_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.8988436Z copying torch\test\c10_logging_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9007117Z copying torch\test\c10_Metaprogramming_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9017092Z copying torch\test\c10_NetworkFlow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9026599Z copying torch\test\c10_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9042231Z copying torch\test\c10_ordered_preserving_dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9052600Z copying torch\test\c10_registry_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9062359Z copying torch\test\c10_Scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9071614Z copying torch\test\c10_Semaphore_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9085037Z copying torch\test\c10_SizesAndStrides_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9099261Z copying torch\test\c10_small_vector_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9113760Z copying torch\test\c10_ssize_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9123072Z copying torch\test\c10_StreamGuard_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9137278Z copying torch\test\c10_string_util_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9147155Z copying torch\test\c10_string_view_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9156203Z copying torch\test\c10_SymInt_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9165522Z copying torch\test\c10_Synchronized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9175455Z copying torch\test\c10_tempfile_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9184933Z copying torch\test\c10_ThreadLocal_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9199658Z copying torch\test\c10_typeid_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9209011Z copying torch\test\c10_TypeIndex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9227857Z copying torch\test\c10_TypeList_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9237687Z copying torch\test\c10_TypeTraits_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9246943Z copying torch\test\CppSignature_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9256612Z copying torch\test\cpu_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9266489Z copying torch\test\cpu_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9277003Z copying torch\test\cpu_profiling_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9291456Z copying torch\test\cpu_rng_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9304335Z copying torch\test\cuda_allocatorTraceTracker_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9314505Z copying torch\test\cuda_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9324400Z copying torch\test\cuda_apply_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9364815Z copying torch\test\cuda_atomic_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9365519Z copying torch\test\cuda_caching_host_allocator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9366199Z copying torch\test\cuda_complex_math_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9370661Z copying torch\test\cuda_complex_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9380866Z copying torch\test\cuda_cub_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9392033Z copying torch\test\cuda_cudnn_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9408472Z copying torch\test\cuda_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9418713Z copying torch\test\cuda_distributions_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9429775Z copying torch\test\cuda_dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9439965Z copying torch\test\cuda_exchange_device_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9449836Z copying torch\test\cuda_generator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9459893Z copying torch\test\cuda_half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9469659Z copying torch\test\cuda_integer_divider_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9483922Z copying torch\test\cuda_optional_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9499044Z copying torch\test\cuda_packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9511668Z copying torch\test\cuda_reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9520576Z copying torch\test\cuda_stream_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9531017Z copying torch\test\cuda_vectorized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9546312Z copying torch\test\Dict_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9557560Z copying torch\test\Dimname_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9567387Z copying torch\test\dlconvertor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9577270Z copying torch\test\extension_backend_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9594157Z copying torch\test\half_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9604099Z copying torch\test\IListRef_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9614404Z copying torch\test\inline_container_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9624570Z copying torch\test\ivalue_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9641235Z copying torch\test\KernelFunction_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9651981Z copying torch\test\kernel_function_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9665612Z copying torch\test\kernel_function_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9677667Z copying torch\test\kernel_lambda_legacy_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9691292Z copying torch\test\kernel_lambda_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9709681Z copying torch\test\kernel_stackbased_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9720720Z copying torch\test\lazy_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9730627Z copying torch\test\legacy_vmap_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9743439Z copying torch\test\List_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9756571Z copying torch\test\make_boxed_from_unboxed_functor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9769555Z copying torch\test\math_kernel_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9780378Z copying torch\test\MaybeOwned_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9796638Z copying torch\test\memory_format_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9806950Z copying torch\test\memory_overlapping_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9818182Z copying torch\test\mobile_memory_cleanup.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9827826Z copying torch\test\NamedTensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9838407Z copying torch\test\native_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9875951Z copying torch\test\operators_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9885675Z copying torch\test\operator_name_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9896238Z copying torch\test\op_allowlist_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9910923Z copying torch\test\op_registration_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9938995Z copying torch\test\packedtensoraccessor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9948931Z copying torch\test\pow_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9960088Z copying torch\test\quantized_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9975640Z copying torch\test\reduce_ops_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9985842Z copying torch\test\reportMemoryUsage_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:43.9995769Z copying torch\test\scalar_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0021741Z copying torch\test\scalar_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0036524Z copying torch\test\StorageUtils_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0046296Z copying torch\test\stride_properties_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0056438Z copying torch\test\tensor_iterator_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0068088Z copying torch\test\test_parallel.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0081949Z copying torch\test\thread_init_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0089635Z copying torch\test\type_ptr_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0099081Z copying torch\test\type_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0109229Z copying torch\test\undefined_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0119132Z copying torch\test\verify_api_visibility.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0126876Z copying torch\test\weakref_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0136771Z copying torch\test\wrapdim_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0151830Z copying torch\test\xla_tensor_test.exe -> build\lib.win-amd64-cpython-39\torch\test 2025-07-17T08:09:44.0166023Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:09:44.0177221Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:09:44.0188758Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:44.0206738Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:09:44.0218535Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-17T08:09:44.0225883Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:09:44.0237484Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:09:44.0257091Z creating build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.0260252Z copying torch\_C\_aoti.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1538204Z copying torch\_C\_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1550311Z copying torch\_C\_cpu.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1557406Z copying torch\_C\_cudnn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1563997Z copying torch\_C\_cusparselt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1579231Z copying torch\_C\_distributed_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1590037Z copying torch\_C\_distributed_c10d.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1606393Z copying torch\_C\_distributed_rpc.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1617959Z copying torch\_C\_distributed_rpc_testing.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1628494Z copying torch\_C\_functions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1639739Z copying torch\_C\_functorch.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1651015Z copying torch\_C\_instruction_counter.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1661129Z copying torch\_C\_itt.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1667533Z copying torch\_C\_jit_tree_views.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1678320Z copying torch\_C\_lazy.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1689522Z copying torch\_C\_lazy_ts_backend.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1695641Z copying torch\_C\_monitor.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1707415Z copying torch\_C\_nn.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1718963Z copying torch\_C\_nvtx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1724929Z copying torch\_C\_onnx.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1740843Z copying torch\_C\_profiler.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.1751527Z copying torch\_C\_VariableFunctions.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.3143971Z copying torch\_C\_verbose.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.3158709Z copying torch\_C\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C 2025-07-17T08:09:44.3302751Z creating build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-17T08:09:44.3305823Z copying torch\_C\_dynamo\compiled_autograd.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-17T08:09:44.3313067Z copying torch\_C\_dynamo\eval_frame.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-17T08:09:44.3325134Z copying torch\_C\_dynamo\guards.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-17T08:09:44.3341886Z copying torch\_C\_dynamo\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_dynamo 2025-07-17T08:09:44.3347864Z creating build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-17T08:09:44.3351102Z copying torch\_C\_export\pt2_archive_constants.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-17T08:09:44.3361363Z copying torch\_C\_export\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C\_export 2025-07-17T08:09:44.3366796Z creating build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-07-17T08:09:44.3370007Z copying torch\_C_flatbuffer\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\_C_flatbuffer 2025-07-17T08:09:44.3384598Z creating build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:44.3387345Z copying torch\lib\shm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:44.3393657Z copying torch\lib\shm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:44.3399248Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-17T08:09:44.3402389Z copying torch\lib\libshm\alloc_info.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-17T08:09:44.3408671Z copying torch\lib\libshm\err.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-17T08:09:44.3428027Z copying torch\lib\libshm\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-17T08:09:44.3440042Z copying torch\lib\libshm\socket.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm 2025-07-17T08:09:44.3450358Z creating build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-07-17T08:09:44.3453390Z copying torch\lib\libshm_windows\libshm.h -> build\lib.win-amd64-cpython-39\torch\lib\libshm_windows 2025-07-17T08:09:44.3458747Z creating build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3461872Z copying torch\include\advisor-annotate.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3473532Z copying torch\include\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3480731Z copying torch\include\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3487063Z copying torch\include\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3493290Z copying torch\include\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3507533Z copying torch\include\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3514241Z copying torch\include\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3520658Z copying torch\include\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3531699Z copying torch\include\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3538744Z copying torch\include\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3544769Z copying torch\include\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3550939Z copying torch\include\experiments-config.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3563000Z copying torch\include\fp16.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3569231Z copying torch\include\fxdiv.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3575662Z copying torch\include\ittnotify-zca.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3581911Z copying torch\include\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3590797Z copying torch\include\jitprofiling.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3597502Z copying torch\include\libittnotify.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3603487Z copying torch\include\libshm.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3609573Z copying torch\include\psimd.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3621035Z copying torch\include\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3628696Z copying torch\include\sleef.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3637867Z copying torch\include\xnnpack.h -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:44.3645243Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3652195Z copying torch\include\asmjit\a64.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3662599Z copying torch\include\asmjit\arm.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3668957Z copying torch\include\asmjit\asmjit-scope-begin.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3675158Z copying torch\include\asmjit\asmjit-scope-end.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3680963Z copying torch\include\asmjit\asmjit.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3695257Z copying torch\include\asmjit\core.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3702369Z copying torch\include\asmjit\x86.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit 2025-07-17T08:09:44.3707798Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3710590Z copying torch\include\asmjit\arm\a64assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3722955Z copying torch\include\asmjit\arm\a64builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3729345Z copying torch\include\asmjit\arm\a64compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3735763Z copying torch\include\asmjit\arm\a64emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3751076Z copying torch\include\asmjit\arm\a64globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3759468Z copying torch\include\asmjit\arm\a64instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3765897Z copying torch\include\asmjit\arm\a64operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3772879Z copying torch\include\asmjit\arm\armglobals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3783696Z copying torch\include\asmjit\arm\armoperand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3790406Z copying torch\include\asmjit\arm\armutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\arm 2025-07-17T08:09:44.3796166Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3798749Z copying torch\include\asmjit\core\api-config.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3805959Z copying torch\include\asmjit\core\archcommons.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3812286Z copying torch\include\asmjit\core\archtraits.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3818907Z copying torch\include\asmjit\core\assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3830874Z copying torch\include\asmjit\core\builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3842452Z copying torch\include\asmjit\core\codebuffer.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3849225Z copying torch\include\asmjit\core\codeholder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3857285Z copying torch\include\asmjit\core\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3863288Z copying torch\include\asmjit\core\compilerdefs.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3875620Z copying torch\include\asmjit\core\constpool.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3882000Z copying torch\include\asmjit\core\cpuinfo.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3889124Z copying torch\include\asmjit\core\emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3897261Z copying torch\include\asmjit\core\environment.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3903378Z copying torch\include\asmjit\core\errorhandler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3909867Z copying torch\include\asmjit\core\formatter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3916323Z copying torch\include\asmjit\core\func.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3924383Z copying torch\include\asmjit\core\globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3939591Z copying torch\include\asmjit\core\inst.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3946912Z copying torch\include\asmjit\core\jitallocator.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3954144Z copying torch\include\asmjit\core\jitruntime.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3960389Z copying torch\include\asmjit\core\logger.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3966806Z copying torch\include\asmjit\core\operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3974443Z copying torch\include\asmjit\core\osutils.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3980661Z copying torch\include\asmjit\core\string.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.3988002Z copying torch\include\asmjit\core\support.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4004065Z copying torch\include\asmjit\core\target.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4014583Z copying torch\include\asmjit\core\type.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4052644Z copying torch\include\asmjit\core\virtmem.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4059121Z copying torch\include\asmjit\core\zone.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4065824Z copying torch\include\asmjit\core\zonehash.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4072463Z copying torch\include\asmjit\core\zonelist.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4078738Z copying torch\include\asmjit\core\zonestack.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4085173Z copying torch\include\asmjit\core\zonestring.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4092040Z copying torch\include\asmjit\core\zonetree.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4098559Z copying torch\include\asmjit\core\zonevector.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\core 2025-07-17T08:09:44.4105012Z creating build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4108286Z copying torch\include\asmjit\x86\x86assembler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4115109Z copying torch\include\asmjit\x86\x86builder.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4126854Z copying torch\include\asmjit\x86\x86compiler.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4133849Z copying torch\include\asmjit\x86\x86emitter.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4148469Z copying torch\include\asmjit\x86\x86globals.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4156178Z copying torch\include\asmjit\x86\x86instdb.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4163528Z copying torch\include\asmjit\x86\x86operand.h -> build\lib.win-amd64-cpython-39\torch\include\asmjit\x86 2025-07-17T08:09:44.4171101Z creating build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4173405Z copying torch\include\ATen\AccumulateType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4179613Z copying torch\include\ATen\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4194405Z copying torch\include\ATen\ATen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4200099Z copying torch\include\ATen\autocast_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4206753Z copying torch\include\ATen\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4217395Z copying torch\include\ATen\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4223344Z copying torch\include\ATen\BlasBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4229361Z copying torch\include\ATen\CachedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4235640Z copying torch\include\ATen\ceil_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4247217Z copying torch\include\ATen\code_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4253944Z copying torch\include\ATen\CollapseDims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4260500Z copying torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4267387Z copying torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4279298Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4286848Z copying torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4293599Z copying torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4300702Z copying torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4309382Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4315609Z copying torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4325868Z copying torch\include\ATen\Config.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4332112Z copying torch\include\ATen\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4339393Z copying torch\include\ATen\cpp_custom_type_hack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4345593Z copying torch\include\ATen\CPUApplyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4352087Z copying torch\include\ATen\CPUFixedAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4358403Z copying torch\include\ATen\CPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4369560Z copying torch\include\ATen\CPUFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4376639Z copying torch\include\ATen\CPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4383076Z copying torch\include\ATen\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4389483Z copying torch\include\ATen\CUDAFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4401506Z copying torch\include\ATen\Device.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4407473Z copying torch\include\ATen\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4414702Z copying torch\include\ATen\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4421116Z copying torch\include\ATen\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4427659Z copying torch\include\ATen\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4433405Z copying torch\include\ATen\Dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4440904Z copying torch\include\ATen\Dispatch_v2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4448003Z copying torch\include\ATen\div_rtn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4458887Z copying torch\include\ATen\DLConvertor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4465118Z copying torch\include\ATen\dlpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4471598Z copying torch\include\ATen\DynamicLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4478132Z copying torch\include\ATen\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4495184Z copying torch\include\ATen\ExpandBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4501739Z copying torch\include\ATen\ExpandUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4508730Z copying torch\include\ATen\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4514911Z copying torch\include\ATen\FunctionalStorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4521379Z copying torch\include\ATen\FunctionalTensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4528348Z copying torch\include\ATen\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4535746Z copying torch\include\ATen\FuncTorchTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4541951Z copying torch\include\ATen\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4552771Z copying torch\include\ATen\InferSize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4559077Z copying torch\include\ATen\InitialTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4569937Z copying torch\include\ATen\jiterator_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4576161Z copying torch\include\ATen\jit_macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4582388Z copying torch\include\ATen\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4588232Z copying torch\include\ATen\LegacyBatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4594774Z copying torch\include\ATen\LegacyBatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4600983Z copying torch\include\ATen\LegacyVmapMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4607540Z copying torch\include\ATen\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4614715Z copying torch\include\ATen\LinalgBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4621080Z copying torch\include\ATen\MapAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4627392Z copying torch\include\ATen\MatrixRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4646165Z copying torch\include\ATen\MemoryOverlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4652879Z copying torch\include\ATen\MetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4659990Z copying torch\include\ATen\MetaFunctions_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4666326Z copying torch\include\ATen\MethodOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4677248Z copying torch\include\ATen\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4683411Z copying torch\include\ATen\NamedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4689933Z copying torch\include\ATen\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4697601Z copying torch\include\ATen\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4705450Z copying torch\include\ATen\NestedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4716861Z copying torch\include\ATen\NumericUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4723138Z copying torch\include\ATen\OpaqueTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4729464Z copying torch\include\ATen\Operators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4741178Z copying torch\include\ATen\OpMathType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4747702Z copying torch\include\ATen\PadNd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4753769Z copying torch\include\ATen\Parallel-inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4760396Z copying torch\include\ATen\Parallel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4771102Z copying torch\include\ATen\ParallelFuture.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4777497Z copying torch\include\ATen\ParallelNative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4783690Z copying torch\include\ATen\ParallelOpenMP.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4794586Z copying torch\include\ATen\PTThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4805504Z copying torch\include\ATen\PythonTorchFunctionTLS.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4812190Z copying torch\include\ATen\record_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4820242Z copying torch\include\ATen\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4845345Z copying torch\include\ATen\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4860437Z copying torch\include\ATen\ROCmFABackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4866278Z copying torch\include\ATen\SavedTensorHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4872708Z copying torch\include\ATen\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4879017Z copying torch\include\ATen\ScalarOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4893053Z copying torch\include\ATen\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4900297Z copying torch\include\ATen\SDPBackend.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4906387Z copying torch\include\ATen\SequenceNumber.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4912159Z copying torch\include\ATen\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4918417Z copying torch\include\ATen\SparseCsrTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4924542Z copying torch\include\ATen\SparseCsrTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4931597Z copying torch\include\ATen\SparseTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4938016Z copying torch\include\ATen\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4948170Z copying torch\include\ATen\StorageUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4954695Z copying torch\include\ATen\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4960778Z copying torch\include\ATen\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4972779Z copying torch\include\ATen\TensorGeometry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4980997Z copying torch\include\ATen\TensorIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.4986270Z copying torch\include\ATen\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5012332Z copying torch\include\ATen\TensorIteratorInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5018543Z copying torch\include\ATen\TensorMeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5032460Z copying torch\include\ATen\TensorNames.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5038972Z copying torch\include\ATen\TensorOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5045358Z copying torch\include\ATen\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5051899Z copying torch\include\ATen\TensorSubclassLikeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5063617Z copying torch\include\ATen\TensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5070042Z copying torch\include\ATen\ThreadLocalPythonObjects.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5076377Z copying torch\include\ATen\ThreadLocalState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5082599Z copying torch\include\ATen\TracerMode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5088972Z copying torch\include\ATen\TypeDefault.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5095467Z copying torch\include\ATen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5101438Z copying torch\include\ATen\Version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5108352Z copying torch\include\ATen\VmapGeneratedPlumbing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5134971Z copying torch\include\ATen\WrapDimUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5141274Z copying torch\include\ATen\WrapDimUtilsMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen 2025-07-17T08:09:44.5146953Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5149777Z copying torch\include\ATen\core\alias_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5155873Z copying torch\include\ATen\core\Array.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5161994Z copying torch\include\ATen\core\ATenGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5168161Z copying torch\include\ATen\core\ATenOpList.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5178661Z copying torch\include\ATen\core\ATen_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5191217Z copying torch\include\ATen\core\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5198538Z copying torch\include\ATen\core\ATen_pch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5204891Z copying torch\include\ATen\core\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5210851Z copying torch\include\ATen\core\blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5217332Z copying torch\include\ATen\core\builtin_function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5223508Z copying torch\include\ATen\core\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5230255Z copying torch\include\ATen\core\CheckMemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5236458Z copying torch\include\ATen\core\class_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5247155Z copying torch\include\ATen\core\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5253672Z copying torch\include\ATen\core\DeprecatedTypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5260132Z copying torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5266395Z copying torch\include\ATen\core\Dict.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5276414Z copying torch\include\ATen\core\Dict_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5282520Z copying torch\include\ATen\core\Dimname.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5289123Z copying torch\include\ATen\core\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5295353Z copying torch\include\ATen\core\DistributionsHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5303038Z copying torch\include\ATen\core\dynamic_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5335033Z copying torch\include\ATen\core\enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5342042Z copying torch\include\ATen\core\enum_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5348018Z copying torch\include\ATen\core\Formatting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5359165Z copying torch\include\ATen\core\function.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5365169Z copying torch\include\ATen\core\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5371178Z copying torch\include\ATen\core\function_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5378387Z copying torch\include\ATen\core\function_schema_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5389453Z copying torch\include\ATen\core\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5396167Z copying torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5402488Z copying torch\include\ATen\core\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5408569Z copying torch\include\ATen\core\IListRef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5425227Z copying torch\include\ATen\core\IListRef_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5431926Z copying torch\include\ATen\core\interned_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5439587Z copying torch\include\ATen\core\interned_strings_class.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5446010Z copying torch\include\ATen\core\ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5474793Z copying torch\include\ATen\core\ivalue_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5475529Z copying torch\include\ATen\core\ivalue_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5476236Z copying torch\include\ATen\core\jit_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5476938Z copying torch\include\ATen\core\jit_type_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5483010Z copying torch\include\ATen\core\LegacyTypeDispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5489544Z copying torch\include\ATen\core\List.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5496508Z copying torch\include\ATen\core\List_inl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5502925Z copying torch\include\ATen\core\MT19937RNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5515541Z copying torch\include\ATen\core\NamedTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5521850Z copying torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5528374Z copying torch\include\ATen\core\operator_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5534768Z copying torch\include\ATen\core\PhiloxRNGEngine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5545830Z copying torch\include\ATen\core\PythonFallbackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5552363Z copying torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5559261Z copying torch\include\ATen\core\qualified_name.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5565386Z copying torch\include\ATen\core\QuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5575905Z copying torch\include\ATen\core\Range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5582051Z copying torch\include\ATen\core\Reduction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5593430Z copying torch\include\ATen\core\rref_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5599509Z copying torch\include\ATen\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5609268Z copying torch\include\ATen\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5615801Z copying torch\include\ATen\core\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5622130Z copying torch\include\ATen\core\symbol.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5628237Z copying torch\include\ATen\core\Tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5634448Z copying torch\include\ATen\core\TensorAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5640733Z copying torch\include\ATen\core\TensorBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5648054Z copying torch\include\ATen\core\TensorBody.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5657636Z copying torch\include\ATen\core\TorchDispatchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5668362Z copying torch\include\ATen\core\TransformationHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5754351Z copying torch\include\ATen\core\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5761663Z copying torch\include\ATen\core\type_factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5769920Z copying torch\include\ATen\core\type_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5776887Z copying torch\include\ATen\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5783073Z copying torch\include\ATen\core\UnsafeFromTH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5789718Z copying torch\include\ATen\core\VariableHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5796001Z copying torch\include\ATen\core\Variadic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5802309Z copying torch\include\ATen\core\Vitals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core 2025-07-17T08:09:44.5807908Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-17T08:09:44.5810964Z copying torch\include\ATen\core\boxing\BoxedKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-17T08:09:44.5817526Z copying torch\include\ATen\core\boxing\BoxedKernel_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-17T08:09:44.5823784Z copying torch\include\ATen\core\boxing\KernelFunction.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-17T08:09:44.5835886Z copying torch\include\ATen\core\boxing\KernelFunction_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-17T08:09:44.5849674Z copying torch\include\ATen\core\boxing\OperatorKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing 2025-07-17T08:09:44.5855294Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-17T08:09:44.5858328Z copying torch\include\ATen\core\boxing\impl\boxing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-17T08:09:44.5864956Z 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-07-17T08:09:44.5871841Z copying torch\include\ATen\core\boxing\impl\test_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-17T08:09:44.5878376Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-17T08:09:44.5894638Z copying torch\include\ATen\core\boxing\impl\WrapFunctionIntoRuntimeFunctor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\boxing\impl 2025-07-17T08:09:44.5900176Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5903744Z copying torch\include\ATen\core\dispatch\CppSignature.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5909815Z copying torch\include\ATen\core\dispatch\Dispatcher.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5917182Z copying torch\include\ATen\core\dispatch\DispatchKeyExtractor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5923641Z copying torch\include\ATen\core\dispatch\ObservedOperators.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5934819Z copying torch\include\ATen\core\dispatch\OperatorEntry.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5941188Z copying torch\include\ATen\core\dispatch\OperatorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5952684Z copying torch\include\ATen\core\dispatch\RegistrationHandleRAII.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\dispatch 2025-07-17T08:09:44.5959422Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-17T08:09:44.5961142Z copying torch\include\ATen\core\op_registration\adaption.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-17T08:09:44.5967722Z copying torch\include\ATen\core\op_registration\infer_schema.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-17T08:09:44.5974141Z copying torch\include\ATen\core\op_registration\op_allowlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-17T08:09:44.5985704Z copying torch\include\ATen\core\op_registration\op_registration.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\core\op_registration 2025-07-17T08:09:44.5996451Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-17T08:09:44.5999731Z copying torch\include\ATen\cpu\FlushDenormal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-17T08:09:44.6006079Z copying torch\include\ATen\cpu\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-17T08:09:44.6016609Z copying torch\include\ATen\cpu\vml.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu 2025-07-17T08:09:44.6021986Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6024887Z copying torch\include\ATen\cpu\vec\functional.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6031112Z copying torch\include\ATen\cpu\vec\functional_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6037617Z copying torch\include\ATen\cpu\vec\functional_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6048997Z copying torch\include\ATen\cpu\vec\intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6060346Z copying torch\include\ATen\cpu\vec\vec.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6066480Z copying torch\include\ATen\cpu\vec\vec_base.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6077885Z copying torch\include\ATen\cpu\vec\vec_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6084154Z copying torch\include\ATen\cpu\vec\vec_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6090393Z copying torch\include\ATen\cpu\vec\vec_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6096892Z copying torch\include\ATen\cpu\vec\vec_n.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6108840Z copying torch\include\ATen\cpu\vec\vec_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec 2025-07-17T08:09:44.6114686Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6116794Z copying torch\include\ATen\cpu\vec\sve\sve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6123191Z copying torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6130043Z copying torch\include\ATen\cpu\vec\sve\vec_common_sve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6140308Z copying torch\include\ATen\cpu\vec\sve\vec_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6151447Z copying torch\include\ATen\cpu\vec\sve\vec_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6158210Z copying torch\include\ATen\cpu\vec\sve\vec_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6165309Z copying torch\include\ATen\cpu\vec\sve\vec_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve 2025-07-17T08:09:44.6171884Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-17T08:09:44.6174361Z copying torch\include\ATen\cpu\vec\vec128\vec128.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-17T08:09:44.6180485Z copying torch\include\ATen\cpu\vec\vec128\vec128_bfloat16_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-17T08:09:44.6187781Z copying torch\include\ATen\cpu\vec\vec128\vec128_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-17T08:09:44.6199152Z copying torch\include\ATen\cpu\vec\vec128\vec128_float_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-17T08:09:44.6210648Z copying torch\include\ATen\cpu\vec\vec128\vec128_half_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec128 2025-07-17T08:09:44.6218892Z 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-07-17T08:09:44.6227553Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6230560Z copying torch\include\ATen\cpu\vec\vec256\missing_vld1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6237090Z copying torch\include\ATen\cpu\vec\vec256\missing_vst1_neon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6244050Z copying torch\include\ATen\cpu\vec\vec256\vec256.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6250507Z copying torch\include\ATen\cpu\vec\vec256\vec256_16bit_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6265957Z copying torch\include\ATen\cpu\vec\vec256\vec256_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6272827Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6279708Z copying torch\include\ATen\cpu\vec\vec256\vec256_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6287718Z copying torch\include\ATen\cpu\vec\vec256\vec256_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6293905Z copying torch\include\ATen\cpu\vec\vec256\vec256_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6300220Z copying torch\include\ATen\cpu\vec\vec256\vec256_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6307471Z copying torch\include\ATen\cpu\vec\vec256\vec256_half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6318448Z copying torch\include\ATen\cpu\vec\vec256\vec256_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6326338Z copying torch\include\ATen\cpu\vec\vec256\vec256_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6334008Z copying torch\include\ATen\cpu\vec\vec256\vec256_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:09:44.6339688Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-17T08:09:44.6342664Z 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-07-17T08:09:44.6353278Z 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-07-17T08:09:44.6359806Z 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-07-17T08:09:44.6381862Z 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-07-17T08:09:44.6392690Z 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-07-17T08:09:44.6399758Z 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-07-17T08:09:44.6406817Z 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-07-17T08:09:44.6414725Z 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-07-17T08:09:44.6427898Z 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-07-17T08:09:44.6434429Z 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-07-17T08:09:44.6441280Z 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-07-17T08:09:44.6448385Z 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-07-17T08:09:44.6455764Z 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-07-17T08:09:44.6462841Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-17T08:09:44.6465918Z 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-07-17T08:09:44.6472977Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6475818Z copying torch\include\ATen\cpu\vec\vec512\vec512.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6482470Z copying torch\include\ATen\cpu\vec\vec512\vec512_bfloat16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6494675Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6502069Z copying torch\include\ATen\cpu\vec\vec512\vec512_complex_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6513639Z copying torch\include\ATen\cpu\vec\vec512\vec512_convert.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6520247Z copying torch\include\ATen\cpu\vec\vec512\vec512_double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6527111Z copying torch\include\ATen\cpu\vec\vec512\vec512_float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6534363Z copying torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6541185Z copying torch\include\ATen\cpu\vec\vec512\vec512_int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6553245Z copying torch\include\ATen\cpu\vec\vec512\vec512_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6559931Z copying torch\include\ATen\cpu\vec\vec512\vec512_qint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:09:44.6566377Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6569320Z copying torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6575489Z copying torch\include\ATen\cuda\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6587730Z copying torch\include\ATen\cuda\cub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6593864Z copying torch\include\ATen\cuda\CUDABlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6600701Z copying torch\include\ATen\cuda\CUDAConfig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6611176Z copying torch\include\ATen\cuda\CUDAContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6617610Z copying torch\include\ATen\cuda\CUDAContextLight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6624294Z copying torch\include\ATen\cuda\CUDADataType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6631380Z copying torch\include\ATen\cuda\CUDADevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6642629Z copying torch\include\ATen\cuda\CUDAEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6649146Z copying torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6655979Z copying torch\include\ATen\cuda\CUDAGraph.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6662241Z copying torch\include\ATen\cuda\CUDASparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6668571Z copying torch\include\ATen\cuda\CUDASparseBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6675071Z copying torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6681398Z copying torch\include\ATen\cuda\CUDAUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6687722Z copying torch\include\ATen\cuda\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6694169Z copying torch\include\ATen\cuda\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6700634Z copying torch\include\ATen\cuda\jiterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6707040Z copying torch\include\ATen\cuda\jiterator_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6718024Z copying torch\include\ATen\cuda\llvm_jit_strings.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6725125Z copying torch\include\ATen\cuda\PeerToPeerAccess.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6730901Z copying torch\include\ATen\cuda\PhiloxCudaState.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6737190Z copying torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6743322Z copying torch\include\ATen\cuda\Sleep.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6754000Z copying torch\include\ATen\cuda\ThrustAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:44.6760493Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:44.6762804Z copying torch\include\ATen\cuda\detail\CUDAHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:44.6768882Z copying torch\include\ATen\cuda\detail\DeviceThreadHandles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:44.6781104Z copying torch\include\ATen\cuda\detail\KernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:44.6786555Z copying torch\include\ATen\cuda\detail\LazyNVRTC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:44.6796679Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6799597Z copying torch\include\ATen\cuda\tunable\GemmCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6806590Z copying torch\include\ATen\cuda\tunable\GemmHipblaslt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6821502Z copying torch\include\ATen\cuda\tunable\GemmRocblas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6827990Z copying torch\include\ATen\cuda\tunable\StreamTimer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6839912Z copying torch\include\ATen\cuda\tunable\Tunable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6846015Z copying torch\include\ATen\cuda\tunable\TunableGemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6852470Z copying torch\include\ATen\cuda\tunable\TunableOp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\tunable 2025-07-17T08:09:44.6858123Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-17T08:09:44.6861082Z copying torch\include\ATen\cudnn\cudnn-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-17T08:09:44.6867166Z copying torch\include\ATen\cudnn\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-17T08:09:44.6883037Z copying torch\include\ATen\cudnn\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-17T08:09:44.6889010Z copying torch\include\ATen\cudnn\Handles.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-17T08:09:44.6896581Z copying torch\include\ATen\cudnn\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-17T08:09:44.6906273Z copying torch\include\ATen\cudnn\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn 2025-07-17T08:09:44.6911831Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6914879Z copying torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6921741Z copying torch\include\ATen\detail\CUDAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6928686Z copying torch\include\ATen\detail\FunctionTraits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6948506Z copying torch\include\ATen\detail\HIPHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6955208Z copying torch\include\ATen\detail\HPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6961395Z copying torch\include\ATen\detail\IPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6968131Z copying torch\include\ATen\detail\MAIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6974673Z copying torch\include\ATen\detail\MPSHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6981464Z copying torch\include\ATen\detail\MTIAHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6987960Z copying torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6994250Z copying torch\include\ATen\detail\XPUHooksInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\detail 2025-07-17T08:09:44.6999887Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7003017Z copying torch\include\ATen\functorch\ADInterpreters.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7009302Z copying torch\include\ATen\functorch\BatchedFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7015457Z copying torch\include\ATen\functorch\BatchedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7026561Z copying torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7032929Z copying torch\include\ATen\functorch\BatchRulesHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7039479Z copying torch\include\ATen\functorch\DynamicLayer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7064727Z copying torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7071546Z copying torch\include\ATen\functorch\Interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7077752Z copying torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7083957Z copying torch\include\ATen\functorch\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7094518Z copying torch\include\ATen\functorch\PlumbingHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7101008Z copying torch\include\ATen\functorch\TensorWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7107293Z copying torch\include\ATen\functorch\VmapInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\functorch 2025-07-17T08:09:44.7112899Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-17T08:09:44.7117043Z copying torch\include\ATen\hip\impl\HIPAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-17T08:09:44.7123945Z copying torch\include\ATen\hip\impl\HIPCachingAllocatorMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-17T08:09:44.7129993Z copying torch\include\ATen\hip\impl\HIPGuardImplMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-17T08:09:44.7140886Z copying torch\include\ATen\hip\impl\HIPStreamMasqueradingAsCUDA.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\hip\impl 2025-07-17T08:09:44.7146530Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-07-17T08:09:44.7149408Z copying torch\include\ATen\metal\Context.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\metal 2025-07-17T08:09:44.7154567Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-17T08:09:44.7157486Z copying torch\include\ATen\miopen\Descriptors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-17T08:09:44.7163901Z copying torch\include\ATen\miopen\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-17T08:09:44.7170060Z copying torch\include\ATen\miopen\Handle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-17T08:09:44.7180613Z copying torch\include\ATen\miopen\miopen-wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-17T08:09:44.7190779Z copying torch\include\ATen\miopen\Types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-17T08:09:44.7196425Z copying torch\include\ATen\miopen\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\miopen 2025-07-17T08:09:44.7201515Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7204636Z copying torch\include\ATen\mps\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7211020Z copying torch\include\ATen\mps\IndexKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7217557Z copying torch\include\ATen\mps\MPSAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7224195Z copying torch\include\ATen\mps\MPSAllocatorInterface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7235125Z copying torch\include\ATen\mps\MPSDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7241321Z copying torch\include\ATen\mps\MPSEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7247753Z copying torch\include\ATen\mps\MPSGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7254124Z copying torch\include\ATen\mps\MPSGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7264693Z copying torch\include\ATen\mps\MPSHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7270948Z copying torch\include\ATen\mps\MPSProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7277681Z copying torch\include\ATen\mps\MPSStream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\mps 2025-07-17T08:09:44.7289874Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7292905Z copying torch\include\ATen\native\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7299316Z copying torch\include\ATen\native\AdaptivePooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7305709Z copying torch\include\ATen\native\AmpKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7312034Z copying torch\include\ATen\native\BatchLinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7327192Z copying torch\include\ATen\native\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7333187Z copying torch\include\ATen\native\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7339150Z copying torch\include\ATen\native\BucketizationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7350430Z copying torch\include\ATen\native\CanUse32BitIndexMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7357044Z copying torch\include\ATen\native\ComplexHelper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7363598Z copying torch\include\ATen\native\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7370044Z copying torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7376626Z copying torch\include\ATen\native\ConvolutionMM3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7382846Z copying torch\include\ATen\native\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7390575Z copying torch\include\ATen\native\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7396337Z copying torch\include\ATen\native\CPUBlas.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7407871Z copying torch\include\ATen\native\CPUFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7413788Z copying torch\include\ATen\native\Cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7420039Z copying torch\include\ATen\native\DilatedConvolutionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7426454Z copying torch\include\ATen\native\DispatchStub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7440837Z copying torch\include\ATen\native\Distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7448164Z copying torch\include\ATen\native\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7478803Z copying torch\include\ATen\native\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7479652Z copying torch\include\ATen\native\EmbeddingBag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7480403Z copying torch\include\ATen\native\Fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7484985Z copying torch\include\ATen\native\ForeachUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7491826Z copying torch\include\ATen\native\FractionalMaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7498584Z copying torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7504790Z copying torch\include\ATen\native\FusedAdagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7510791Z copying torch\include\ATen\native\FusedAdam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7517284Z copying torch\include\ATen\native\FusedSGD.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7523036Z copying torch\include\ATen\native\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7530098Z copying torch\include\ATen\native\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7539937Z copying torch\include\ATen\native\GridSamplerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7546227Z copying torch\include\ATen\native\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7552387Z copying torch\include\ATen\native\Histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7563519Z copying torch\include\ATen\native\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7569965Z copying torch\include\ATen\native\im2col_shape_check.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7576111Z copying torch\include\ATen\native\IndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7582338Z copying torch\include\ATen\native\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7593675Z copying torch\include\ATen\native\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7600034Z copying torch\include\ATen\native\Lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7606320Z copying torch\include\ATen\native\LinearAlgebra.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7612494Z copying torch\include\ATen\native\LinearAlgebraUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7631236Z copying torch\include\ATen\native\LossMulti.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7637434Z copying torch\include\ATen\native\Math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7645953Z copying torch\include\ATen\native\MathBitFallThroughLists.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7652605Z copying torch\include\ATen\native\MathBitsFallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7666336Z copying torch\include\ATen\native\MaxPooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7672666Z copying torch\include\ATen\native\NonEmptyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7679040Z copying torch\include\ATen\native\NonSymbolicBC.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7685323Z copying torch\include\ATen\native\Normalization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7691495Z copying torch\include\ATen\native\Padding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7697985Z copying torch\include\ATen\native\PixelShuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7708373Z copying torch\include\ATen\native\PointwiseOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7714580Z copying torch\include\ATen\native\Pool.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7725767Z copying torch\include\ATen\native\Pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7732055Z copying torch\include\ATen\native\RangeFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7738120Z copying torch\include\ATen\native\RangeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7744394Z copying torch\include\ATen\native\ReduceAllOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7754993Z copying torch\include\ATen\native\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7761453Z copying torch\include\ATen\native\ReduceOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7768918Z copying torch\include\ATen\native\ReductionType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7775762Z copying torch\include\ATen\native\Repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7782415Z copying torch\include\ATen\native\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7788569Z copying torch\include\ATen\native\ResizeCommon.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7803288Z copying torch\include\ATen\native\RNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7810207Z copying torch\include\ATen\native\ScatterGatherChecks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7816755Z copying torch\include\ATen\native\SegmentReduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7824390Z copying torch\include\ATen\native\SharedReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7830673Z copying torch\include\ATen\native\SobolEngineOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7836877Z copying torch\include\ATen\native\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7853590Z copying torch\include\ATen\native\SortingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7859551Z copying torch\include\ATen\native\SparseTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7866084Z copying torch\include\ATen\native\SpectralOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7872958Z copying torch\include\ATen\native\StridedRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7884644Z copying torch\include\ATen\native\TensorAdvancedIndexing.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7890942Z copying torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7897518Z copying torch\include\ATen\native\TensorCompare.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7905429Z copying torch\include\ATen\native\TensorConversions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7911467Z copying torch\include\ATen\native\TensorDimApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7918092Z copying torch\include\ATen\native\TensorFactories.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7924725Z copying torch\include\ATen\native\TensorIterator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7931451Z copying torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7940234Z copying torch\include\ATen\native\TensorProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7950174Z copying torch\include\ATen\native\TensorShape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7957455Z copying torch\include\ATen\native\TensorTransformations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7963474Z copying torch\include\ATen\native\TopKImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7977300Z copying torch\include\ATen\native\TransposeType.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7983898Z copying torch\include\ATen\native\TriangularOpsUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7990768Z copying torch\include\ATen\native\TypeProperties.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.7997606Z copying torch\include\ATen\native\UnaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.8003490Z copying torch\include\ATen\native\Unfold2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.8010164Z copying torch\include\ATen\native\Unfold3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.8016703Z copying torch\include\ATen\native\UnfoldBackward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.8022908Z copying torch\include\ATen\native\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.8029910Z copying torch\include\ATen\native\verbose_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.8064077Z copying torch\include\ATen\native\vol2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native 2025-07-17T08:09:44.8069701Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-17T08:09:44.8075217Z 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-07-17T08:09:44.8081548Z 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-07-17T08:09:44.8092880Z 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-07-17T08:09:44.8098332Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8101562Z copying torch\include\ATen\native\cpu\AtomicAddFloat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8108094Z copying torch\include\ATen\native\cpu\avx_mathfun.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8114660Z copying torch\include\ATen\native\cpu\CatKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8124334Z copying torch\include\ATen\native\cpu\ChannelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8134494Z copying torch\include\ATen\native\cpu\CopyKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8140580Z copying torch\include\ATen\native\cpu\DepthwiseConvKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8147238Z copying torch\include\ATen\native\cpu\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8153924Z copying torch\include\ATen\native\cpu\Elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8160088Z copying torch\include\ATen\native\cpu\Gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8166792Z copying torch\include\ATen\native\cpu\GridSamplerKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.8173260Z copying torch\include\ATen\native\cpu\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9722984Z copying torch\include\ATen\native\cpu\Intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9724343Z copying torch\include\ATen\native\cpu\int_mm_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9725171Z copying torch\include\ATen\native\cpu\IsContiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9725990Z copying torch\include\ATen\native\cpu\LogAddExp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9726869Z copying torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9727837Z copying torch\include\ATen\native\cpu\Loops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9728659Z copying torch\include\ATen\native\cpu\MaxUnpoolKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9729628Z copying torch\include\ATen\native\cpu\mixed_data_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9730463Z copying torch\include\ATen\native\cpu\moments_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9731407Z copying torch\include\ATen\native\cpu\PixelShuffleKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9732262Z copying torch\include\ATen\native\cpu\Reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9733219Z copying torch\include\ATen\native\cpu\ReducedPrecisionFloatGemvFastPathKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9734213Z copying torch\include\ATen\native\cpu\ReduceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9735076Z copying torch\include\ATen\native\cpu\SampledAddmmKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9735954Z copying torch\include\ATen\native\cpu\SerialStackImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9736810Z copying torch\include\ATen\native\cpu\SoftmaxKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9737656Z copying torch\include\ATen\native\cpu\SpmmReduceKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9738502Z copying torch\include\ATen\native\cpu\StackKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9739475Z copying torch\include\ATen\native\cpu\UpSampleKernelAVXAntialias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9740351Z copying torch\include\ATen\native\cpu\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9741181Z copying torch\include\ATen\native\cpu\WeightNormKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9742003Z copying torch\include\ATen\native\cpu\zmath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu 2025-07-17T08:09:44.9742650Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9743333Z copying torch\include\ATen\native\cuda\Activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9744178Z copying torch\include\ATen\native\cuda\BinaryInternal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9745095Z copying torch\include\ATen\native\cuda\CompositeRandomAccessor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9745964Z copying torch\include\ATen\native\cuda\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9746790Z copying torch\include\ATen\native\cuda\CuFFTPlanCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9748657Z copying torch\include\ATen\native\cuda\CuFFTUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9749553Z copying torch\include\ATen\native\cuda\Distributions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9750463Z copying torch\include\ATen\native\cuda\DistributionTemplates.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9751344Z copying torch\include\ATen\native\cuda\GridSampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9752249Z copying torch\include\ATen\native\cuda\GroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9753084Z copying torch\include\ATen\native\cuda\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9753941Z copying torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9754845Z copying torch\include\ATen\native\cuda\jit_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9755670Z copying torch\include\ATen\native\cuda\LaunchUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9756490Z copying torch\include\ATen\native\cuda\MiscUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9757308Z copying torch\include\ATen\native\cuda\ReduceOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9758105Z copying torch\include\ATen\native\cuda\Resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9758945Z copying torch\include\ATen\native\cuda\RowwiseScaledMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9759809Z copying torch\include\ATen\native\cuda\ScaledGroupMM.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9760652Z copying torch\include\ATen\native\cuda\ScanKernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9761461Z copying torch\include\ATen\native\cuda\Sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9762233Z copying torch\include\ATen\native\cuda\Sorting.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9763040Z copying torch\include\ATen\native\cuda\SortStable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9763962Z copying torch\include\ATen\native\cuda\TensorModeKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9764828Z copying torch\include\ATen\native\cuda\TensorTopK.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9765675Z copying torch\include\ATen\native\cuda\thread_constants.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:44.9766364Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-17T08:09:44.9767010Z copying torch\include\ATen\native\hip\ck_bgemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-17T08:09:44.9767787Z copying torch\include\ATen\native\hip\ck_gemm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-17T08:09:44.9768589Z copying torch\include\ATen\native\hip\ck_gemm_template.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-17T08:09:44.9769401Z copying torch\include\ATen\native\hip\ck_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip 2025-07-17T08:09:44.9770088Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\hip\bgemm_kernels 2025-07-17T08:09:44.9770964Z 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-07-17T08:09:44.9772475Z 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-07-17T08:09:44.9773308Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-17T08:09:44.9774034Z copying torch\include\ATen\native\kleidiai\kai_kernels.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-17T08:09:44.9774918Z copying torch\include\ATen\native\kleidiai\kai_pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-17T08:09:44.9775898Z copying torch\include\ATen\native\kleidiai\kai_ukernel_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\kleidiai 2025-07-17T08:09:44.9776665Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-17T08:09:44.9777380Z copying torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-17T08:09:44.9778338Z copying torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu 2025-07-17T08:09:44.9779120Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:09:44.9779904Z copying torch\include\ATen\native\mkldnn\xpu\detail\Attr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:09:44.9780896Z copying torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:09:44.9781893Z copying torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:09:44.9782886Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNN.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:09:44.9783904Z copying torch\include\ATen\native\mkldnn\xpu\detail\oneDNNContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:09:44.9785044Z copying torch\include\ATen\native\mkldnn\xpu\detail\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:09:44.9785797Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9786431Z copying torch\include\ATen\native\mps\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9787324Z copying torch\include\ATen\native\mps\MetalShaderLibrary.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9788232Z copying torch\include\ATen\native\mps\MPSGraphSequoiaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9789124Z copying torch\include\ATen\native\mps\MPSGraphSonomaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9790058Z copying torch\include\ATen\native\mps\MPSGraphVenturaOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9790989Z copying torch\include\ATen\native\mps\OperationUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9791842Z copying torch\include\ATen\native\mps\TensorFactory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps 2025-07-17T08:09:44.9817752Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-17T08:09:44.9818548Z copying torch\include\ATen\native\mps\kernels\Pooling.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-17T08:09:44.9819577Z copying torch\include\ATen\native\mps\kernels\UpSample.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels 2025-07-17T08:09:44.9820329Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-17T08:09:44.9821141Z copying torch\include\ATen\native\mps\operations\BinaryKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-17T08:09:44.9822349Z copying torch\include\ATen\native\mps\operations\FusedAdamAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-17T08:09:44.9823474Z copying torch\include\ATen\native\mps\operations\FusedAdamKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-17T08:09:44.9824651Z copying torch\include\ATen\native\mps\operations\FusedAdamWAmsgradKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-17T08:09:44.9825883Z copying torch\include\ATen\native\mps\operations\FusedAdamWKernelImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-17T08:09:44.9827065Z copying torch\include\ATen\native\mps\operations\MultiTensorApply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\operations 2025-07-17T08:09:44.9827912Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-07-17T08:09:44.9828589Z copying torch\include\ATen\native\mtia\EmptyTensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia 2025-07-17T08:09:44.9829306Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-17T08:09:44.9830065Z copying torch\include\ATen\native\nested\NestedTensorBinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-17T08:09:44.9831114Z copying torch\include\ATen\native\nested\NestedTensorMath.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-17T08:09:44.9832135Z copying torch\include\ATen\native\nested\NestedTensorTransformerFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-17T08:09:44.9833205Z copying torch\include\ATen\native\nested\NestedTensorTransformerUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-17T08:09:44.9834202Z copying torch\include\ATen\native\nested\NestedTensorUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\nested 2025-07-17T08:09:44.9834952Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9835715Z copying torch\include\ATen\native\quantized\AffineQuantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9836800Z copying torch\include\ATen\native\quantized\AffineQuantizerBase.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9837814Z copying torch\include\ATen\native\quantized\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9838716Z copying torch\include\ATen\native\quantized\Copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9839627Z copying torch\include\ATen\native\quantized\FakeQuantAffine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9840585Z copying torch\include\ATen\native\quantized\IndexKernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9849535Z copying torch\include\ATen\native\quantized\library.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9855672Z copying torch\include\ATen\native\quantized\PackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized 2025-07-17T08:09:44.9861172Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9865583Z copying torch\include\ATen\native\quantized\cpu\ACLUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9877227Z copying torch\include\ATen\native\quantized\cpu\BinaryOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9883210Z copying torch\include\ATen\native\quantized\cpu\conv_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9889826Z copying torch\include\ATen\native\quantized\cpu\EmbeddingPackedParams.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9905280Z copying torch\include\ATen\native\quantized\cpu\fbgemm_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9912040Z copying torch\include\ATen\native\quantized\cpu\init_qnnpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9918313Z copying torch\include\ATen\native\quantized\cpu\OnednnUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9925037Z copying torch\include\ATen\native\quantized\cpu\qconv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9937931Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9944748Z copying torch\include\ATen\native\quantized\cpu\qembeddingbag_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9952149Z copying torch\include\ATen\native\quantized\cpu\qlinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9958256Z copying torch\include\ATen\native\quantized\cpu\QnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:44.9969798Z copying torch\include\ATen\native\quantized\cpu\QuantizedOps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:45.0010002Z copying torch\include\ATen\native\quantized\cpu\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:45.0010980Z copying torch\include\ATen\native\quantized\cpu\RuyUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:45.0012026Z copying torch\include\ATen\native\quantized\cpu\XnnpackUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cpu 2025-07-17T08:09:45.0012818Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-07-17T08:09:45.0013598Z copying torch\include\ATen\native\quantized\cudnn\utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\quantized\cudnn 2025-07-17T08:09:45.0015763Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-17T08:09:45.0016634Z copying torch\include\ATen\native\transformers\attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-17T08:09:45.0022084Z copying torch\include\ATen\native\transformers\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-17T08:09:45.0028132Z copying torch\include\ATen\native\transformers\sdp_utils_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers 2025-07-17T08:09:45.0041467Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-07-17T08:09:45.0045264Z copying torch\include\ATen\native\transformers\cuda\sdp_utils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda 2025-07-17T08:09:45.0050411Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-17T08:09:45.0053622Z 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-07-17T08:09:45.0061512Z 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-07-17T08:09:45.0069092Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-17T08:09:45.0072541Z 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-07-17T08:09:45.0079433Z 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-07-17T08:09:45.0085908Z 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-07-17T08:09:45.0101323Z 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-07-17T08:09:45.0109262Z 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-07-17T08:09:45.0114730Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-17T08:09:45.0117965Z 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-07-17T08:09:45.0124927Z 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-07-17T08:09:45.0136221Z 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-07-17T08:09:45.0146592Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-17T08:09:45.0149633Z 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-07-17T08:09:45.0155957Z 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-07-17T08:09:45.0162480Z 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-07-17T08:09:45.0169580Z 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-07-17T08:09:45.0180174Z 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-07-17T08:09:45.0186772Z 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-07-17T08:09:45.0193646Z 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-07-17T08:09:45.0200262Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-17T08:09:45.0203667Z 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-07-17T08:09:45.0210168Z 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-07-17T08:09:45.0224987Z 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-07-17T08:09:45.0235791Z 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-07-17T08:09:45.0243450Z 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-07-17T08:09:45.0255871Z 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-07-17T08:09:45.0262378Z 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-07-17T08:09:45.0267761Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-17T08:09:45.0270807Z 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-07-17T08:09:45.0278231Z 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-07-17T08:09:45.0289687Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-17T08:09:45.0291912Z 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-07-17T08:09:45.0297208Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-07-17T08:09:45.0300199Z copying torch\include\ATen\native\transformers\hip\aotriton_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip 2025-07-17T08:09:45.0305848Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-17T08:09:45.0308829Z 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-07-17T08:09:45.0314822Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-17T08:09:45.0318033Z 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-07-17T08:09:45.0323346Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-17T08:09:45.0326251Z copying torch\include\ATen\native\utils\Factory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-17T08:09:45.0332348Z copying torch\include\ATen\native\utils\ParamsHash.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-17T08:09:45.0338952Z copying torch\include\ATen\native\utils\ParamUtils.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\utils 2025-07-17T08:09:45.0344322Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0347143Z copying torch\include\ATen\ops\abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0353483Z copying torch\include\ATen\ops\absolute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0359965Z copying torch\include\ATen\ops\absolute_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0365952Z copying torch\include\ATen\ops\absolute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0381671Z copying torch\include\ATen\ops\absolute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0388151Z copying torch\include\ATen\ops\abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0395946Z copying torch\include\ATen\ops\abs_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0402208Z copying torch\include\ATen\ops\abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0408347Z copying torch\include\ATen\ops\abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0414979Z copying torch\include\ATen\ops\abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0421159Z copying torch\include\ATen\ops\acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0427352Z copying torch\include\ATen\ops\acosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0439162Z copying torch\include\ATen\ops\acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0445658Z copying torch\include\ATen\ops\acosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0452235Z copying torch\include\ATen\ops\acosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0459586Z copying torch\include\ATen\ops\acosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0465588Z copying torch\include\ATen\ops\acosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0471554Z copying torch\include\ATen\ops\acosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0478111Z copying torch\include\ATen\ops\acosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0510562Z copying torch\include\ATen\ops\acos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0511643Z copying torch\include\ATen\ops\acos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0512410Z copying torch\include\ATen\ops\acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0513138Z copying torch\include\ATen\ops\acos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0519117Z copying torch\include\ATen\ops\acos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0529928Z copying torch\include\ATen\ops\acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0536393Z copying torch\include\ATen\ops\acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0542749Z copying torch\include\ATen\ops\adaptive_avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0549376Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0561561Z copying torch\include\ATen\ops\adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0573110Z copying torch\include\ATen\ops\adaptive_avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0580365Z copying torch\include\ATen\ops\adaptive_avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0586869Z copying torch\include\ATen\ops\adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0593571Z copying torch\include\ATen\ops\adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0600271Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0606981Z copying torch\include\ATen\ops\adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0613663Z copying torch\include\ATen\ops\adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0624374Z copying torch\include\ATen\ops\adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0635605Z copying torch\include\ATen\ops\adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0641926Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0648686Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0655771Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0662659Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0669232Z copying torch\include\ATen\ops\adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0676016Z copying torch\include\ATen\ops\adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0687328Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0694128Z copying torch\include\ATen\ops\adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0701635Z copying torch\include\ATen\ops\adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0748007Z copying torch\include\ATen\ops\adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0764945Z copying torch\include\ATen\ops\adaptive_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0771398Z copying torch\include\ATen\ops\adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0778071Z copying torch\include\ATen\ops\adaptive_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0784374Z copying torch\include\ATen\ops\adaptive_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0795483Z copying torch\include\ATen\ops\adaptive_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0802107Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0809296Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0816832Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0823067Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0830201Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0837569Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0849719Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0857196Z copying torch\include\ATen\ops\adaptive_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0863854Z copying torch\include\ATen\ops\adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0870417Z copying torch\include\ATen\ops\adaptive_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0877304Z copying torch\include\ATen\ops\adaptive_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0888319Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0895136Z copying torch\include\ATen\ops\adaptive_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0906602Z copying torch\include\ATen\ops\adaptive_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0914403Z copying torch\include\ATen\ops\adaptive_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0924861Z copying torch\include\ATen\ops\adaptive_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0932153Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0939256Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0950711Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0961975Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0968664Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0976120Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0983877Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.0993271Z copying torch\include\ATen\ops\adaptive_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1000639Z copying torch\include\ATen\ops\adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1007055Z copying torch\include\ATen\ops\adaptive_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1013889Z copying torch\include\ATen\ops\adaptive_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1024649Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1031463Z copying torch\include\ATen\ops\adaptive_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1038151Z copying torch\include\ATen\ops\adaptive_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1044910Z copying torch\include\ATen\ops\adaptive_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1051333Z copying torch\include\ATen\ops\add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1057650Z copying torch\include\ATen\ops\addbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1063878Z copying torch\include\ATen\ops\addbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1070335Z copying torch\include\ATen\ops\addbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1076796Z copying torch\include\ATen\ops\addbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1083403Z copying torch\include\ATen\ops\addbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1089763Z copying torch\include\ATen\ops\addbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1096319Z copying torch\include\ATen\ops\addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1103130Z copying torch\include\ATen\ops\addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1109384Z copying torch\include\ATen\ops\addcdiv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1115863Z copying torch\include\ATen\ops\addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1128924Z copying torch\include\ATen\ops\addcdiv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1140538Z copying torch\include\ATen\ops\addcdiv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1146920Z copying torch\include\ATen\ops\addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1153307Z copying torch\include\ATen\ops\addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1159679Z copying torch\include\ATen\ops\addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1166418Z copying torch\include\ATen\ops\addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1172873Z copying torch\include\ATen\ops\addcmul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1179437Z copying torch\include\ATen\ops\addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1185640Z copying torch\include\ATen\ops\addcmul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1196567Z copying torch\include\ATen\ops\addcmul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1203154Z copying torch\include\ATen\ops\addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1209700Z copying torch\include\ATen\ops\addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1216306Z copying torch\include\ATen\ops\addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1222996Z copying torch\include\ATen\ops\addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1229305Z copying torch\include\ATen\ops\addmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1236134Z copying torch\include\ATen\ops\addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1242656Z copying torch\include\ATen\ops\addmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1254037Z copying torch\include\ATen\ops\addmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1260533Z copying torch\include\ATen\ops\addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1266959Z copying torch\include\ATen\ops\addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1273566Z copying torch\include\ATen\ops\addmv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1280295Z copying torch\include\ATen\ops\addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1291892Z copying torch\include\ATen\ops\addmv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1298313Z copying torch\include\ATen\ops\addmv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1305611Z copying torch\include\ATen\ops\addmv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1312247Z copying torch\include\ATen\ops\addmv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1318683Z copying torch\include\ATen\ops\addmv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1325055Z copying torch\include\ATen\ops\addmv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1331654Z copying torch\include\ATen\ops\addr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1343203Z copying torch\include\ATen\ops\addr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1349539Z copying torch\include\ATen\ops\addr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1356017Z copying torch\include\ATen\ops\addr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1362564Z copying torch\include\ATen\ops\addr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1369113Z copying torch\include\ATen\ops\addr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1375862Z copying torch\include\ATen\ops\add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1382350Z copying torch\include\ATen\ops\add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1388770Z copying torch\include\ATen\ops\add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1395157Z copying torch\include\ATen\ops\add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1401844Z copying torch\include\ATen\ops\add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1408054Z copying torch\include\ATen\ops\add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1414835Z copying torch\include\ATen\ops\add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1421331Z copying torch\include\ATen\ops\add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1427753Z copying torch\include\ATen\ops\adjoint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1434237Z copying torch\include\ATen\ops\adjoint_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1441754Z copying torch\include\ATen\ops\adjoint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1453597Z copying torch\include\ATen\ops\adjoint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1459794Z copying torch\include\ATen\ops\affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1466592Z copying torch\include\ATen\ops\affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1473664Z copying torch\include\ATen\ops\affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1480293Z copying torch\include\ATen\ops\affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1488463Z copying torch\include\ATen\ops\affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1532626Z copying torch\include\ATen\ops\affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1533598Z copying torch\include\ATen\ops\affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1534522Z copying torch\include\ATen\ops\affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1535250Z copying torch\include\ATen\ops\alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1536075Z copying torch\include\ATen\ops\alias_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1538308Z copying torch\include\ATen\ops\alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1544750Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1550745Z copying torch\include\ATen\ops\alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1557652Z copying torch\include\ATen\ops\alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1564000Z copying torch\include\ATen\ops\alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1570748Z copying torch\include\ATen\ops\alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1577058Z copying torch\include\ATen\ops\alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1583768Z copying torch\include\ATen\ops\align_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1589978Z copying torch\include\ATen\ops\align_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1596158Z copying torch\include\ATen\ops\align_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1602468Z copying torch\include\ATen\ops\align_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1609186Z copying torch\include\ATen\ops\align_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1616229Z copying torch\include\ATen\ops\align_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1622888Z copying torch\include\ATen\ops\align_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1629397Z copying torch\include\ATen\ops\align_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1636148Z copying torch\include\ATen\ops\align_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1642552Z copying torch\include\ATen\ops\align_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1654155Z copying torch\include\ATen\ops\align_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1660717Z copying torch\include\ATen\ops\align_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1667230Z copying torch\include\ATen\ops\all.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1673481Z copying torch\include\ATen\ops\allclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1684657Z copying torch\include\ATen\ops\allclose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1691033Z copying torch\include\ATen\ops\allclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1697610Z copying torch\include\ATen\ops\allclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1704803Z copying torch\include\ATen\ops\all_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1716677Z copying torch\include\ATen\ops\all_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1723675Z copying torch\include\ATen\ops\all_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1730083Z copying torch\include\ATen\ops\all_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1736576Z copying torch\include\ATen\ops\all_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1747550Z copying torch\include\ATen\ops\all_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1753892Z copying torch\include\ATen\ops\all_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1760342Z copying torch\include\ATen\ops\all_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1766636Z copying torch\include\ATen\ops\all_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1792814Z copying torch\include\ATen\ops\alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1799708Z copying torch\include\ATen\ops\alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1806572Z copying torch\include\ATen\ops\alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1819037Z copying torch\include\ATen\ops\alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1829514Z copying torch\include\ATen\ops\amax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1836087Z copying torch\include\ATen\ops\amax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1842432Z copying torch\include\ATen\ops\amax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1866370Z copying torch\include\ATen\ops\amax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1873242Z copying torch\include\ATen\ops\amax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1879374Z copying torch\include\ATen\ops\amax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1885759Z copying torch\include\ATen\ops\amax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1892215Z copying torch\include\ATen\ops\amax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1904117Z copying torch\include\ATen\ops\amin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1910434Z copying torch\include\ATen\ops\aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1917207Z copying torch\include\ATen\ops\aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1923583Z copying torch\include\ATen\ops\aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1930311Z copying torch\include\ATen\ops\aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1936942Z copying torch\include\ATen\ops\aminmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1943519Z copying torch\include\ATen\ops\aminmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1950030Z copying torch\include\ATen\ops\aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1961060Z copying torch\include\ATen\ops\aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1967999Z copying torch\include\ATen\ops\amin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1974944Z copying torch\include\ATen\ops\amin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1981558Z copying torch\include\ATen\ops\amin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1988152Z copying torch\include\ATen\ops\amin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.1995168Z copying torch\include\ATen\ops\amin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2001997Z copying torch\include\ATen\ops\amin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2008743Z copying torch\include\ATen\ops\amin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2015693Z copying torch\include\ATen\ops\and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2022820Z copying torch\include\ATen\ops\and_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2029744Z copying torch\include\ATen\ops\and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2036546Z copying torch\include\ATen\ops\and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2043210Z copying torch\include\ATen\ops\angle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2049777Z copying torch\include\ATen\ops\angle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2056811Z copying torch\include\ATen\ops\angle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2063184Z copying torch\include\ATen\ops\angle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2069639Z copying torch\include\ATen\ops\angle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2076326Z copying torch\include\ATen\ops\any.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2082927Z copying torch\include\ATen\ops\any_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2089646Z copying torch\include\ATen\ops\any_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2096972Z copying torch\include\ATen\ops\any_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2103431Z copying torch\include\ATen\ops\any_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2109900Z copying torch\include\ATen\ops\any_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2124206Z copying torch\include\ATen\ops\any_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2130889Z copying torch\include\ATen\ops\any_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2137324Z copying torch\include\ATen\ops\any_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2144023Z copying torch\include\ATen\ops\any_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2149916Z copying torch\include\ATen\ops\arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2156650Z copying torch\include\ATen\ops\arange_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2163143Z copying torch\include\ATen\ops\arange_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2169572Z copying torch\include\ATen\ops\arange_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2176171Z copying torch\include\ATen\ops\arange_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2182673Z copying torch\include\ATen\ops\arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2189143Z copying torch\include\ATen\ops\arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2195820Z copying torch\include\ATen\ops\arccos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2201979Z copying torch\include\ATen\ops\arccosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2214334Z copying torch\include\ATen\ops\arccosh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2220373Z copying torch\include\ATen\ops\arccosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2226785Z copying torch\include\ATen\ops\arccosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2233435Z copying torch\include\ATen\ops\arccos_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2248707Z copying torch\include\ATen\ops\arccos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2249462Z copying torch\include\ATen\ops\arccos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2256529Z copying torch\include\ATen\ops\arcsin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2262861Z copying torch\include\ATen\ops\arcsinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2269455Z copying torch\include\ATen\ops\arcsinh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2276065Z copying torch\include\ATen\ops\arcsinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2282589Z copying torch\include\ATen\ops\arcsinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2289293Z copying torch\include\ATen\ops\arcsin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2301366Z copying torch\include\ATen\ops\arcsin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2307883Z copying torch\include\ATen\ops\arcsin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2316205Z copying torch\include\ATen\ops\arctan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2324656Z copying torch\include\ATen\ops\arctan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2350473Z copying torch\include\ATen\ops\arctan2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2356720Z copying torch\include\ATen\ops\arctan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2363797Z copying torch\include\ATen\ops\arctan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2370266Z copying torch\include\ATen\ops\arctanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2384896Z copying torch\include\ATen\ops\arctanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2391116Z copying torch\include\ATen\ops\arctanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2397782Z copying torch\include\ATen\ops\arctanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2408616Z copying torch\include\ATen\ops\arctan_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2414206Z copying torch\include\ATen\ops\arctan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2421235Z copying torch\include\ATen\ops\arctan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2428454Z copying torch\include\ATen\ops\argmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2436836Z copying torch\include\ATen\ops\argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2444458Z copying torch\include\ATen\ops\argmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2452126Z copying torch\include\ATen\ops\argmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2459820Z copying torch\include\ATen\ops\argmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2467003Z copying torch\include\ATen\ops\argmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2473319Z copying torch\include\ATen\ops\argmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2503667Z copying torch\include\ATen\ops\argmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2510069Z copying torch\include\ATen\ops\argmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2517114Z copying torch\include\ATen\ops\argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2529174Z copying torch\include\ATen\ops\argmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2536683Z copying torch\include\ATen\ops\argmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2543487Z copying torch\include\ATen\ops\argmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2549880Z copying torch\include\ATen\ops\argmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2556995Z copying torch\include\ATen\ops\argmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2563375Z copying torch\include\ATen\ops\argmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2569928Z copying torch\include\ATen\ops\argsort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2576514Z copying torch\include\ATen\ops\argsort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2588851Z copying torch\include\ATen\ops\argsort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2595192Z copying torch\include\ATen\ops\argsort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2601875Z copying torch\include\ATen\ops\argwhere.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2609108Z copying torch\include\ATen\ops\argwhere_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2615326Z copying torch\include\ATen\ops\argwhere_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2621584Z copying torch\include\ATen\ops\argwhere_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2627935Z copying torch\include\ATen\ops\asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2634672Z copying torch\include\ATen\ops\asinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2641391Z copying torch\include\ATen\ops\asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2648039Z copying torch\include\ATen\ops\asinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2655177Z copying torch\include\ATen\ops\asinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2687124Z copying torch\include\ATen\ops\asinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2699200Z copying torch\include\ATen\ops\asinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2711759Z copying torch\include\ATen\ops\asinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2718616Z copying torch\include\ATen\ops\asinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2727797Z copying torch\include\ATen\ops\asin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2734940Z copying torch\include\ATen\ops\asin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2743428Z copying torch\include\ATen\ops\asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2750934Z copying torch\include\ATen\ops\asin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2759635Z copying torch\include\ATen\ops\asin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2768922Z copying torch\include\ATen\ops\asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2775336Z copying torch\include\ATen\ops\asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2782230Z copying torch\include\ATen\ops\as_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2789049Z copying torch\include\ATen\ops\as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2795800Z copying torch\include\ATen\ops\as_strided_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2804232Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2810254Z copying torch\include\ATen\ops\as_strided_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.2863253Z copying torch\include\ATen\ops\as_strided_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3209837Z copying torch\include\ATen\ops\as_strided_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3210705Z copying torch\include\ATen\ops\as_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3211559Z copying torch\include\ATen\ops\as_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3212360Z copying torch\include\ATen\ops\as_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3213233Z copying torch\include\ATen\ops\as_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3213970Z copying torch\include\ATen\ops\as_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3214715Z copying torch\include\ATen\ops\as_strided_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3215697Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3216929Z copying torch\include\ATen\ops\as_strided_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3223189Z copying torch\include\ATen\ops\as_strided_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3229682Z copying torch\include\ATen\ops\as_strided_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3236053Z copying torch\include\ATen\ops\atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3242314Z copying torch\include\ATen\ops\atan2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3248953Z copying torch\include\ATen\ops\atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3255453Z copying torch\include\ATen\ops\atan2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3262120Z copying torch\include\ATen\ops\atan2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3268521Z copying torch\include\ATen\ops\atan2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3275234Z copying torch\include\ATen\ops\atan2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3282157Z copying torch\include\ATen\ops\atan2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3288548Z copying torch\include\ATen\ops\atan2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3295147Z copying torch\include\ATen\ops\atanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3301876Z copying torch\include\ATen\ops\atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3308246Z copying torch\include\ATen\ops\atanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3314828Z copying torch\include\ATen\ops\atanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3321413Z copying torch\include\ATen\ops\atanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3328018Z copying torch\include\ATen\ops\atanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3334529Z copying torch\include\ATen\ops\atanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3340818Z copying torch\include\ATen\ops\atanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3347704Z copying torch\include\ATen\ops\atan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3353957Z copying torch\include\ATen\ops\atan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3360398Z copying torch\include\ATen\ops\atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3366751Z copying torch\include\ATen\ops\atan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3373127Z copying torch\include\ATen\ops\atan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3380068Z copying torch\include\ATen\ops\atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3386389Z copying torch\include\ATen\ops\atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3392455Z copying torch\include\ATen\ops\atleast_1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3399243Z copying torch\include\ATen\ops\atleast_1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3405791Z copying torch\include\ATen\ops\atleast_1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3412362Z copying torch\include\ATen\ops\atleast_1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3418923Z copying torch\include\ATen\ops\atleast_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3425962Z copying torch\include\ATen\ops\atleast_2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3433128Z copying torch\include\ATen\ops\atleast_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3440561Z copying torch\include\ATen\ops\atleast_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3446319Z copying torch\include\ATen\ops\atleast_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3453492Z copying torch\include\ATen\ops\atleast_3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3460034Z copying torch\include\ATen\ops\atleast_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3466419Z copying torch\include\ATen\ops\atleast_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3473249Z copying torch\include\ATen\ops\avg_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3481407Z copying torch\include\ATen\ops\avg_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3487160Z copying torch\include\ATen\ops\avg_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3493958Z copying torch\include\ATen\ops\avg_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3533427Z copying torch\include\ATen\ops\avg_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3534157Z copying torch\include\ATen\ops\avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3534886Z copying torch\include\ATen\ops\avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3535882Z copying torch\include\ATen\ops\avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3536927Z copying torch\include\ATen\ops\avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3539383Z copying torch\include\ATen\ops\avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3546245Z copying torch\include\ATen\ops\avg_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3553046Z copying torch\include\ATen\ops\avg_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3561195Z copying torch\include\ATen\ops\avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3568801Z copying torch\include\ATen\ops\avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3575525Z copying torch\include\ATen\ops\avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3581727Z copying torch\include\ATen\ops\avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3588296Z copying torch\include\ATen\ops\avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3594935Z copying torch\include\ATen\ops\avg_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3601562Z copying torch\include\ATen\ops\avg_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3608177Z copying torch\include\ATen\ops\avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3615695Z copying torch\include\ATen\ops\avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3621659Z copying torch\include\ATen\ops\avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3628243Z copying torch\include\ATen\ops\avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3635376Z copying torch\include\ATen\ops\avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3641904Z copying torch\include\ATen\ops\avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3648815Z copying torch\include\ATen\ops\avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3656565Z copying torch\include\ATen\ops\avg_pool3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3662719Z copying torch\include\ATen\ops\avg_pool3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3669362Z copying torch\include\ATen\ops\avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3685787Z copying torch\include\ATen\ops\avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3692668Z copying torch\include\ATen\ops\avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3703675Z copying torch\include\ATen\ops\avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3710021Z copying torch\include\ATen\ops\avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3716857Z copying torch\include\ATen\ops\avg_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3723658Z copying torch\include\ATen\ops\avg_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3730208Z copying torch\include\ATen\ops\avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3736870Z copying torch\include\ATen\ops\avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3743383Z copying torch\include\ATen\ops\baddbmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3750182Z copying torch\include\ATen\ops\baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3756493Z copying torch\include\ATen\ops\baddbmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3763238Z copying torch\include\ATen\ops\baddbmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3769751Z copying torch\include\ATen\ops\baddbmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3776762Z copying torch\include\ATen\ops\baddbmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3783185Z copying torch\include\ATen\ops\baddbmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3789529Z copying torch\include\ATen\ops\baddbmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3796226Z copying torch\include\ATen\ops\bartlett_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3802863Z copying torch\include\ATen\ops\bartlett_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3809515Z copying torch\include\ATen\ops\bartlett_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3816299Z copying torch\include\ATen\ops\bartlett_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3822765Z copying torch\include\ATen\ops\batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3829388Z copying torch\include\ATen\ops\batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3836016Z copying torch\include\ATen\ops\batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3842699Z copying torch\include\ATen\ops\batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3849857Z copying torch\include\ATen\ops\batch_norm_backward_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3857353Z copying torch\include\ATen\ops\batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3864912Z copying torch\include\ATen\ops\batch_norm_backward_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3871996Z copying torch\include\ATen\ops\batch_norm_backward_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3879377Z copying torch\include\ATen\ops\batch_norm_backward_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3886461Z copying torch\include\ATen\ops\batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3893919Z copying torch\include\ATen\ops\batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3901538Z copying torch\include\ATen\ops\batch_norm_backward_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3909431Z copying torch\include\ATen\ops\batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3916864Z copying torch\include\ATen\ops\batch_norm_backward_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3924120Z copying torch\include\ATen\ops\batch_norm_backward_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3931362Z copying torch\include\ATen\ops\batch_norm_backward_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3938892Z copying torch\include\ATen\ops\batch_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3946500Z copying torch\include\ATen\ops\batch_norm_elemt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3953820Z copying torch\include\ATen\ops\batch_norm_elemt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3961118Z copying torch\include\ATen\ops\batch_norm_elemt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3967906Z copying torch\include\ATen\ops\batch_norm_elemt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3974934Z copying torch\include\ATen\ops\batch_norm_gather_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3983308Z copying torch\include\ATen\ops\batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3989962Z copying torch\include\ATen\ops\batch_norm_gather_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.3998545Z copying torch\include\ATen\ops\batch_norm_gather_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4045207Z copying torch\include\ATen\ops\batch_norm_gather_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4046220Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4047265Z 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-07-17T08:09:45.4048363Z 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-07-17T08:09:45.4049313Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4051712Z copying torch\include\ATen\ops\batch_norm_gather_stats_with_counts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4052538Z copying torch\include\ATen\ops\batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4091893Z copying torch\include\ATen\ops\batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4098873Z copying torch\include\ATen\ops\batch_norm_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4132178Z copying torch\include\ATen\ops\batch_norm_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4138959Z copying torch\include\ATen\ops\batch_norm_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4145886Z copying torch\include\ATen\ops\batch_norm_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4152576Z copying torch\include\ATen\ops\batch_norm_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4160359Z copying torch\include\ATen\ops\batch_norm_update_stats.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4167842Z copying torch\include\ATen\ops\batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4175126Z copying torch\include\ATen\ops\batch_norm_update_stats_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4183087Z copying torch\include\ATen\ops\batch_norm_update_stats_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4189043Z copying torch\include\ATen\ops\batch_norm_update_stats_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4195693Z copying torch\include\ATen\ops\batch_norm_update_stats_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4202288Z copying torch\include\ATen\ops\bernoulli.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4209304Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4216223Z copying torch\include\ATen\ops\bernoulli_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4222893Z copying torch\include\ATen\ops\bernoulli_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4229648Z copying torch\include\ATen\ops\bernoulli_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4309255Z copying torch\include\ATen\ops\bernoulli_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4315917Z copying torch\include\ATen\ops\bernoulli_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4322436Z copying torch\include\ATen\ops\bernoulli_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4329141Z copying torch\include\ATen\ops\bilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4337270Z copying torch\include\ATen\ops\bilinear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4343256Z copying torch\include\ATen\ops\bilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4349854Z copying torch\include\ATen\ops\bilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4356594Z copying torch\include\ATen\ops\binary_cross_entropy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4363292Z copying torch\include\ATen\ops\binary_cross_entropy_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4372265Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4378201Z copying torch\include\ATen\ops\binary_cross_entropy_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4385091Z copying torch\include\ATen\ops\binary_cross_entropy_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4392115Z copying torch\include\ATen\ops\binary_cross_entropy_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4398979Z copying torch\include\ATen\ops\binary_cross_entropy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4406741Z copying torch\include\ATen\ops\binary_cross_entropy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4412963Z copying torch\include\ATen\ops\binary_cross_entropy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4419618Z copying torch\include\ATen\ops\binary_cross_entropy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4430192Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4436446Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4443570Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4450193Z copying torch\include\ATen\ops\binary_cross_entropy_with_logits_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4457433Z copying torch\include\ATen\ops\bincount.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4464606Z copying torch\include\ATen\ops\bincount_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4471957Z copying torch\include\ATen\ops\bincount_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4479091Z copying torch\include\ATen\ops\bincount_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4486303Z copying torch\include\ATen\ops\bincount_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4493043Z copying torch\include\ATen\ops\bincount_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4499938Z copying torch\include\ATen\ops\binomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4506834Z copying torch\include\ATen\ops\binomial_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4513464Z copying torch\include\ATen\ops\binomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4519866Z copying torch\include\ATen\ops\binomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4526338Z copying torch\include\ATen\ops\binomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4534585Z copying torch\include\ATen\ops\binomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4541021Z copying torch\include\ATen\ops\bitwise_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4547732Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4554292Z copying torch\include\ATen\ops\bitwise_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4561233Z copying torch\include\ATen\ops\bitwise_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4567581Z copying torch\include\ATen\ops\bitwise_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4574131Z copying torch\include\ATen\ops\bitwise_and_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4580808Z copying torch\include\ATen\ops\bitwise_and_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4587196Z copying torch\include\ATen\ops\bitwise_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4594024Z copying torch\include\ATen\ops\bitwise_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4600529Z copying torch\include\ATen\ops\bitwise_left_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4607702Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4621640Z copying torch\include\ATen\ops\bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4627468Z copying torch\include\ATen\ops\bitwise_left_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4634153Z copying torch\include\ATen\ops\bitwise_left_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4640773Z copying torch\include\ATen\ops\bitwise_left_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4647505Z copying torch\include\ATen\ops\bitwise_left_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4654181Z copying torch\include\ATen\ops\bitwise_left_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4661942Z copying torch\include\ATen\ops\bitwise_left_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4667928Z copying torch\include\ATen\ops\bitwise_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4674992Z copying torch\include\ATen\ops\bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4682380Z copying torch\include\ATen\ops\bitwise_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4687983Z copying torch\include\ATen\ops\bitwise_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4694658Z copying torch\include\ATen\ops\bitwise_not_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4701120Z copying torch\include\ATen\ops\bitwise_not_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4707590Z copying torch\include\ATen\ops\bitwise_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4714357Z copying torch\include\ATen\ops\bitwise_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4721186Z copying torch\include\ATen\ops\bitwise_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4728618Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4735437Z copying torch\include\ATen\ops\bitwise_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4779432Z copying torch\include\ATen\ops\bitwise_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4780348Z copying torch\include\ATen\ops\bitwise_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4781117Z copying torch\include\ATen\ops\bitwise_or_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4781885Z copying torch\include\ATen\ops\bitwise_or_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4782666Z copying torch\include\ATen\ops\bitwise_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4783397Z copying torch\include\ATen\ops\bitwise_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4789261Z copying torch\include\ATen\ops\bitwise_right_shift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4797344Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4803873Z copying torch\include\ATen\ops\bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4810341Z copying torch\include\ATen\ops\bitwise_right_shift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4817156Z copying torch\include\ATen\ops\bitwise_right_shift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4823669Z copying torch\include\ATen\ops\bitwise_right_shift_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4830683Z copying torch\include\ATen\ops\bitwise_right_shift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4837348Z copying torch\include\ATen\ops\bitwise_right_shift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4844029Z copying torch\include\ATen\ops\bitwise_right_shift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4850543Z copying torch\include\ATen\ops\bitwise_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4858439Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4865257Z copying torch\include\ATen\ops\bitwise_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4871887Z copying torch\include\ATen\ops\bitwise_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4878275Z copying torch\include\ATen\ops\bitwise_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4885015Z copying torch\include\ATen\ops\bitwise_xor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4891710Z copying torch\include\ATen\ops\bitwise_xor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4898559Z copying torch\include\ATen\ops\bitwise_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4905117Z copying torch\include\ATen\ops\bitwise_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4912301Z copying torch\include\ATen\ops\blackman_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4918533Z copying torch\include\ATen\ops\blackman_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4924986Z copying torch\include\ATen\ops\blackman_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4931519Z copying torch\include\ATen\ops\blackman_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4938068Z copying torch\include\ATen\ops\block_diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4946213Z copying torch\include\ATen\ops\block_diag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4952452Z copying torch\include\ATen\ops\block_diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4958683Z copying torch\include\ATen\ops\block_diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4965223Z copying torch\include\ATen\ops\bmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4971878Z copying torch\include\ATen\ops\bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4978271Z copying torch\include\ATen\ops\bmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4984728Z copying torch\include\ATen\ops\bmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4991263Z copying torch\include\ATen\ops\bmm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.4997355Z copying torch\include\ATen\ops\bmm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5003894Z copying torch\include\ATen\ops\bmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5010534Z copying torch\include\ATen\ops\bmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5017886Z copying torch\include\ATen\ops\broadcast_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5033335Z copying torch\include\ATen\ops\broadcast_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5034303Z copying torch\include\ATen\ops\broadcast_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5066266Z copying torch\include\ATen\ops\broadcast_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5067049Z copying torch\include\ATen\ops\broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5067939Z copying torch\include\ATen\ops\broadcast_to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5068945Z copying torch\include\ATen\ops\broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5071994Z copying torch\include\ATen\ops\broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5087396Z copying torch\include\ATen\ops\bucketize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5088276Z copying torch\include\ATen\ops\bucketize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5094355Z copying torch\include\ATen\ops\bucketize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5101748Z copying torch\include\ATen\ops\bucketize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5108738Z copying torch\include\ATen\ops\bucketize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5116004Z copying torch\include\ATen\ops\bucketize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5157560Z copying torch\include\ATen\ops\can_cast.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5164736Z copying torch\include\ATen\ops\can_cast_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5170601Z copying torch\include\ATen\ops\can_cast_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5176905Z copying torch\include\ATen\ops\can_cast_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5183671Z copying torch\include\ATen\ops\cartesian_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5190761Z copying torch\include\ATen\ops\cartesian_prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5197099Z copying torch\include\ATen\ops\cartesian_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5203443Z copying torch\include\ATen\ops\cartesian_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5209872Z copying torch\include\ATen\ops\cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5216604Z copying torch\include\ATen\ops\cat_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5223381Z copying torch\include\ATen\ops\cat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5230123Z copying torch\include\ATen\ops\cat_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5236738Z copying torch\include\ATen\ops\cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5243089Z copying torch\include\ATen\ops\cat_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5249363Z copying torch\include\ATen\ops\cat_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5255782Z copying torch\include\ATen\ops\cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5262237Z copying torch\include\ATen\ops\cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5268404Z copying torch\include\ATen\ops\cauchy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5274843Z copying torch\include\ATen\ops\cauchy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5281241Z copying torch\include\ATen\ops\cauchy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5287921Z copying torch\include\ATen\ops\cauchy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5294721Z copying torch\include\ATen\ops\cauchy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5315816Z copying torch\include\ATen\ops\cauchy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5322665Z copying torch\include\ATen\ops\cauchy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5330470Z copying torch\include\ATen\ops\ccol_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5338495Z copying torch\include\ATen\ops\ccol_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5345691Z copying torch\include\ATen\ops\ccol_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5352790Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5386942Z copying torch\include\ATen\ops\ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5387893Z copying torch\include\ATen\ops\ccol_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5388699Z copying torch\include\ATen\ops\ccol_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5389474Z copying torch\include\ATen\ops\ccol_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5390338Z copying torch\include\ATen\ops\ccol_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5396907Z copying torch\include\ATen\ops\cdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5404985Z copying torch\include\ATen\ops\cdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5410583Z copying torch\include\ATen\ops\cdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5417443Z copying torch\include\ATen\ops\cdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5423792Z copying torch\include\ATen\ops\ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5430621Z copying torch\include\ATen\ops\ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5437214Z copying torch\include\ATen\ops\ceil_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5443708Z copying torch\include\ATen\ops\ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5450649Z copying torch\include\ATen\ops\ceil_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5457250Z copying torch\include\ATen\ops\ceil_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5463553Z copying torch\include\ATen\ops\ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5470095Z copying torch\include\ATen\ops\ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5476274Z copying torch\include\ATen\ops\celu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5482616Z copying torch\include\ATen\ops\celu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5488917Z copying torch\include\ATen\ops\celu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5495381Z copying torch\include\ATen\ops\celu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5501639Z copying torch\include\ATen\ops\chain_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5508690Z copying torch\include\ATen\ops\chain_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5515253Z copying torch\include\ATen\ops\chain_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5521434Z copying torch\include\ATen\ops\chain_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5528359Z copying torch\include\ATen\ops\chalf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5534496Z copying torch\include\ATen\ops\chalf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5540810Z copying torch\include\ATen\ops\chalf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5546983Z copying torch\include\ATen\ops\chalf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5553647Z copying torch\include\ATen\ops\channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5560336Z copying torch\include\ATen\ops\channel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5566824Z copying torch\include\ATen\ops\channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5573768Z copying torch\include\ATen\ops\channel_shuffle_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5580910Z copying torch\include\ATen\ops\channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5588466Z copying torch\include\ATen\ops\channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5595022Z copying torch\include\ATen\ops\cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5601548Z copying torch\include\ATen\ops\cholesky_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5608044Z copying torch\include\ATen\ops\cholesky_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5614643Z copying torch\include\ATen\ops\cholesky_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5621223Z copying torch\include\ATen\ops\cholesky_inverse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5628110Z copying torch\include\ATen\ops\cholesky_inverse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5635036Z copying torch\include\ATen\ops\cholesky_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5644016Z copying torch\include\ATen\ops\cholesky_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5651376Z copying torch\include\ATen\ops\cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5658693Z copying torch\include\ATen\ops\cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5665422Z copying torch\include\ATen\ops\cholesky_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5673375Z copying torch\include\ATen\ops\cholesky_solve_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5680449Z copying torch\include\ATen\ops\cholesky_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5686998Z copying torch\include\ATen\ops\cholesky_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5693928Z copying torch\include\ATen\ops\choose_qparams_optimized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5701010Z copying torch\include\ATen\ops\choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5708090Z copying torch\include\ATen\ops\choose_qparams_optimized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5714939Z copying torch\include\ATen\ops\choose_qparams_optimized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5721573Z copying torch\include\ATen\ops\chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5728046Z copying torch\include\ATen\ops\chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5734860Z copying torch\include\ATen\ops\chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5741414Z copying torch\include\ATen\ops\chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5748008Z copying torch\include\ATen\ops\clamp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5754597Z copying torch\include\ATen\ops\clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5761137Z copying torch\include\ATen\ops\clamp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5767589Z copying torch\include\ATen\ops\clamp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5774140Z copying torch\include\ATen\ops\clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5781078Z copying torch\include\ATen\ops\clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5787570Z copying torch\include\ATen\ops\clamp_max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5794466Z copying torch\include\ATen\ops\clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5800937Z copying torch\include\ATen\ops\clamp_max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5807454Z copying torch\include\ATen\ops\clamp_max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5814052Z copying torch\include\ATen\ops\clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5820735Z copying torch\include\ATen\ops\clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5827227Z copying torch\include\ATen\ops\clamp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5833532Z copying torch\include\ATen\ops\clamp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5840256Z copying torch\include\ATen\ops\clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5847354Z copying torch\include\ATen\ops\clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5854000Z copying torch\include\ATen\ops\clamp_min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5860459Z copying torch\include\ATen\ops\clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5866915Z copying torch\include\ATen\ops\clamp_min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5873735Z copying torch\include\ATen\ops\clamp_min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5880081Z copying torch\include\ATen\ops\clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5886369Z copying torch\include\ATen\ops\clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5893444Z copying torch\include\ATen\ops\clamp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5899782Z copying torch\include\ATen\ops\clamp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5906117Z copying torch\include\ATen\ops\clip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5912586Z copying torch\include\ATen\ops\clip_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5919028Z copying torch\include\ATen\ops\clip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5926087Z copying torch\include\ATen\ops\clip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5932575Z copying torch\include\ATen\ops\clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5939287Z copying torch\include\ATen\ops\clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5945932Z copying torch\include\ATen\ops\clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5953319Z copying torch\include\ATen\ops\clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5960037Z copying torch\include\ATen\ops\coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5966692Z copying torch\include\ATen\ops\coalesce_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5973516Z copying torch\include\ATen\ops\coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5980014Z copying torch\include\ATen\ops\coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5986635Z copying torch\include\ATen\ops\col2im.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.5993266Z copying torch\include\ATen\ops\col2im_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6027426Z copying torch\include\ATen\ops\col2im_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6034450Z copying torch\include\ATen\ops\col2im_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6041206Z copying torch\include\ATen\ops\col2im_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6048215Z copying torch\include\ATen\ops\column_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6055200Z copying torch\include\ATen\ops\column_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6062011Z copying torch\include\ATen\ops\column_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6068453Z copying torch\include\ATen\ops\column_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6074814Z copying torch\include\ATen\ops\col_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6081351Z copying torch\include\ATen\ops\col_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6723596Z copying torch\include\ATen\ops\col_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6724985Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6726146Z copying torch\include\ATen\ops\col_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6727081Z copying torch\include\ATen\ops\col_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6727986Z copying torch\include\ATen\ops\col_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6728756Z copying torch\include\ATen\ops\col_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6729494Z copying torch\include\ATen\ops\col_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6730228Z copying torch\include\ATen\ops\combinations.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6731131Z copying torch\include\ATen\ops\combinations_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6732216Z copying torch\include\ATen\ops\combinations_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6733009Z copying torch\include\ATen\ops\combinations_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6733810Z copying torch\include\ATen\ops\complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6734659Z copying torch\include\ATen\ops\complex_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6735567Z copying torch\include\ATen\ops\complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6736347Z copying torch\include\ATen\ops\complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6737116Z copying torch\include\ATen\ops\complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6737828Z copying torch\include\ATen\ops\complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6738522Z copying torch\include\ATen\ops\concat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6739219Z copying torch\include\ATen\ops\concatenate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6740100Z copying torch\include\ATen\ops\concatenate_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6741008Z copying torch\include\ATen\ops\concatenate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6741767Z copying torch\include\ATen\ops\concatenate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6742701Z copying torch\include\ATen\ops\concat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6743579Z copying torch\include\ATen\ops\concat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6744287Z copying torch\include\ATen\ops\concat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6744947Z copying torch\include\ATen\ops\conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6745868Z copying torch\include\ATen\ops\conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6746700Z copying torch\include\ATen\ops\conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6747390Z copying torch\include\ATen\ops\conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6748090Z copying torch\include\ATen\ops\conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6748972Z copying torch\include\ATen\ops\conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6750016Z copying torch\include\ATen\ops\conj_physical_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6750946Z copying torch\include\ATen\ops\conj_physical_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6752218Z copying torch\include\ATen\ops\conj_physical_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6753037Z copying torch\include\ATen\ops\conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6753809Z copying torch\include\ATen\ops\conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6754566Z copying torch\include\ATen\ops\constant_pad_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6755510Z copying torch\include\ATen\ops\constant_pad_nd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6756430Z copying torch\include\ATen\ops\constant_pad_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6757215Z copying torch\include\ATen\ops\constant_pad_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6758011Z copying torch\include\ATen\ops\contiguous.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6772958Z copying torch\include\ATen\ops\contiguous_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6779589Z copying torch\include\ATen\ops\contiguous_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6786515Z copying torch\include\ATen\ops\contiguous_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6793539Z copying torch\include\ATen\ops\conv1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6800101Z copying torch\include\ATen\ops\conv1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6806753Z copying torch\include\ATen\ops\conv1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6813597Z copying torch\include\ATen\ops\conv1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6820521Z copying torch\include\ATen\ops\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6828668Z copying torch\include\ATen\ops\conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6834597Z copying torch\include\ATen\ops\conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6841618Z copying torch\include\ATen\ops\conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6848130Z copying torch\include\ATen\ops\conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6854933Z copying torch\include\ATen\ops\conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6861614Z copying torch\include\ATen\ops\conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6869165Z copying torch\include\ATen\ops\conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6875739Z copying torch\include\ATen\ops\convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6882721Z copying torch\include\ATen\ops\convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6889855Z copying torch\include\ATen\ops\convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6898215Z copying torch\include\ATen\ops\convolution_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6904702Z copying torch\include\ATen\ops\convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6911657Z copying torch\include\ATen\ops\convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6918541Z copying torch\include\ATen\ops\convolution_backward_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6926773Z copying torch\include\ATen\ops\convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6933294Z copying torch\include\ATen\ops\convolution_backward_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6940104Z copying torch\include\ATen\ops\convolution_backward_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6947874Z copying torch\include\ATen\ops\convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6954593Z copying torch\include\ATen\ops\convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6961902Z copying torch\include\ATen\ops\convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6968923Z copying torch\include\ATen\ops\convolution_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6976231Z copying torch\include\ATen\ops\convolution_overrideable_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6983336Z copying torch\include\ATen\ops\convolution_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6998731Z copying torch\include\ATen\ops\convolution_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.6999804Z copying torch\include\ATen\ops\conv_depthwise3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7006452Z copying torch\include\ATen\ops\conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7013518Z copying torch\include\ATen\ops\conv_depthwise3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7020704Z copying torch\include\ATen\ops\conv_depthwise3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7027487Z copying torch\include\ATen\ops\conv_depthwise3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7034379Z copying torch\include\ATen\ops\conv_tbc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7040886Z copying torch\include\ATen\ops\conv_tbc_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7047940Z copying torch\include\ATen\ops\conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7054672Z copying torch\include\ATen\ops\conv_tbc_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7061675Z copying torch\include\ATen\ops\conv_tbc_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7068496Z copying torch\include\ATen\ops\conv_tbc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7075337Z copying torch\include\ATen\ops\conv_tbc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7081723Z copying torch\include\ATen\ops\conv_tbc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7088487Z copying torch\include\ATen\ops\conv_transpose1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7095498Z copying torch\include\ATen\ops\conv_transpose1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7102092Z copying torch\include\ATen\ops\conv_transpose1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7109228Z copying torch\include\ATen\ops\conv_transpose1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7115585Z copying torch\include\ATen\ops\conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7122580Z copying torch\include\ATen\ops\conv_transpose2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7129727Z copying torch\include\ATen\ops\conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7136546Z copying torch\include\ATen\ops\conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7143745Z copying torch\include\ATen\ops\conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7150638Z copying torch\include\ATen\ops\conv_transpose3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7157624Z copying torch\include\ATen\ops\conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7164645Z copying torch\include\ATen\ops\conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7170730Z copying torch\include\ATen\ops\copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7177288Z copying torch\include\ATen\ops\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7183906Z copying torch\include\ATen\ops\copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7190692Z copying torch\include\ATen\ops\copysign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7197102Z copying torch\include\ATen\ops\copysign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7204013Z copying torch\include\ATen\ops\copysign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7210516Z copying torch\include\ATen\ops\copysign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7217549Z copying torch\include\ATen\ops\copysign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7224081Z copying torch\include\ATen\ops\copysign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7230787Z copying torch\include\ATen\ops\copysign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7237937Z copying torch\include\ATen\ops\copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7244355Z copying torch\include\ATen\ops\copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7250944Z copying torch\include\ATen\ops\copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7257479Z copying torch\include\ATen\ops\copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7264060Z copying torch\include\ATen\ops\copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7270484Z copying torch\include\ATen\ops\copy_sparse_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7277146Z copying torch\include\ATen\ops\copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7283760Z copying torch\include\ATen\ops\copy_sparse_to_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7290435Z copying torch\include\ATen\ops\copy_sparse_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7297925Z copying torch\include\ATen\ops\copy_sparse_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7304226Z copying torch\include\ATen\ops\corrcoef.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7310699Z copying torch\include\ATen\ops\corrcoef_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7317081Z copying torch\include\ATen\ops\corrcoef_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7323621Z copying torch\include\ATen\ops\corrcoef_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7329811Z copying torch\include\ATen\ops\cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7336505Z copying torch\include\ATen\ops\cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7343124Z copying torch\include\ATen\ops\cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7349960Z copying torch\include\ATen\ops\cosh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7356736Z copying torch\include\ATen\ops\cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7363808Z copying torch\include\ATen\ops\cosh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7370811Z copying torch\include\ATen\ops\cosh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7377521Z copying torch\include\ATen\ops\cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7384492Z copying torch\include\ATen\ops\cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7391080Z copying torch\include\ATen\ops\cosine_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7398007Z copying torch\include\ATen\ops\cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7405094Z copying torch\include\ATen\ops\cosine_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7411999Z copying torch\include\ATen\ops\cosine_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7419126Z copying torch\include\ATen\ops\cosine_similarity.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7425979Z copying torch\include\ATen\ops\cosine_similarity_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7432768Z copying torch\include\ATen\ops\cosine_similarity_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7439293Z copying torch\include\ATen\ops\cosine_similarity_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7446594Z copying torch\include\ATen\ops\cos_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7453200Z copying torch\include\ATen\ops\cos_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7459860Z copying torch\include\ATen\ops\cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7466324Z copying torch\include\ATen\ops\cos_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7472642Z copying torch\include\ATen\ops\cos_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7479187Z copying torch\include\ATen\ops\cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7485924Z copying torch\include\ATen\ops\cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7492596Z copying torch\include\ATen\ops\count_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7499607Z copying torch\include\ATen\ops\count_nonzero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7506527Z copying torch\include\ATen\ops\count_nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7513190Z copying torch\include\ATen\ops\count_nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7519826Z copying torch\include\ATen\ops\count_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7564744Z copying torch\include\ATen\ops\count_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7571456Z copying torch\include\ATen\ops\cov.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7578116Z copying torch\include\ATen\ops\cov_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7584743Z copying torch\include\ATen\ops\cov_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7591325Z copying torch\include\ATen\ops\cov_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7597670Z copying torch\include\ATen\ops\cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7604175Z copying torch\include\ATen\ops\cross_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7610689Z copying torch\include\ATen\ops\cross_entropy_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7617916Z copying torch\include\ATen\ops\cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7624567Z copying torch\include\ATen\ops\cross_entropy_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7631426Z copying torch\include\ATen\ops\cross_entropy_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7637995Z copying torch\include\ATen\ops\cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7644669Z copying torch\include\ATen\ops\cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7651161Z copying torch\include\ATen\ops\crow_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7657854Z copying torch\include\ATen\ops\crow_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7664320Z copying torch\include\ATen\ops\crow_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7671983Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7679047Z copying torch\include\ATen\ops\crow_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7685720Z copying torch\include\ATen\ops\crow_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7692787Z copying torch\include\ATen\ops\crow_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7699582Z copying torch\include\ATen\ops\crow_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7707197Z copying torch\include\ATen\ops\crow_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7714107Z copying torch\include\ATen\ops\ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7721064Z copying torch\include\ATen\ops\ctc_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7727612Z copying torch\include\ATen\ops\ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7734305Z copying torch\include\ATen\ops\ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7741105Z copying torch\include\ATen\ops\cudnn_affine_grid_generator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7762929Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7770389Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7781340Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7788569Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7795609Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7802862Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7809827Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7816964Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7824122Z copying torch\include\ATen\ops\cudnn_affine_grid_generator_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7831014Z copying torch\include\ATen\ops\cudnn_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7837956Z copying torch\include\ATen\ops\cudnn_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7845096Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7852184Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7859434Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7866931Z copying torch\include\ATen\ops\cudnn_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7874323Z copying torch\include\ATen\ops\cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7881517Z copying torch\include\ATen\ops\cudnn_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7889165Z copying torch\include\ATen\ops\cudnn_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7896205Z copying torch\include\ATen\ops\cudnn_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7903109Z copying torch\include\ATen\ops\cudnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7910397Z copying torch\include\ATen\ops\cudnn_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7917644Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7924701Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7931754Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7939392Z copying torch\include\ATen\ops\cudnn_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7946428Z copying torch\include\ATen\ops\cudnn_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7953895Z copying torch\include\ATen\ops\cudnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7960759Z copying torch\include\ATen\ops\cudnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7967752Z copying torch\include\ATen\ops\cudnn_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7975219Z copying torch\include\ATen\ops\cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7982318Z copying torch\include\ATen\ops\cudnn_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7989744Z copying torch\include\ATen\ops\cudnn_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.7996851Z copying torch\include\ATen\ops\cudnn_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8003871Z copying torch\include\ATen\ops\cudnn_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8011068Z copying torch\include\ATen\ops\cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8018129Z copying torch\include\ATen\ops\cudnn_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8024969Z copying torch\include\ATen\ops\cudnn_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8031945Z copying torch\include\ATen\ops\cudnn_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8039062Z copying torch\include\ATen\ops\cudnn_grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8045834Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8053073Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8059860Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8066719Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8073647Z copying torch\include\ATen\ops\cudnn_grid_sampler_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8080587Z copying torch\include\ATen\ops\cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8087649Z copying torch\include\ATen\ops\cudnn_grid_sampler_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8094408Z copying torch\include\ATen\ops\cudnn_grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8101065Z copying torch\include\ATen\ops\cudnn_grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8107868Z copying torch\include\ATen\ops\cudnn_is_acceptable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8114821Z copying torch\include\ATen\ops\cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8121728Z copying torch\include\ATen\ops\cudnn_is_acceptable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8128287Z copying torch\include\ATen\ops\cudnn_is_acceptable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8135015Z copying torch\include\ATen\ops\cummax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8141674Z copying torch\include\ATen\ops\cummaxmin_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8148581Z copying torch\include\ATen\ops\cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8155183Z copying torch\include\ATen\ops\cummaxmin_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8161891Z copying torch\include\ATen\ops\cummaxmin_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8168713Z copying torch\include\ATen\ops\cummax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8175618Z copying torch\include\ATen\ops\cummax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8182296Z copying torch\include\ATen\ops\cummax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8188820Z copying torch\include\ATen\ops\cummax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8195460Z copying torch\include\ATen\ops\cummin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8202362Z copying torch\include\ATen\ops\cummin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8209266Z copying torch\include\ATen\ops\cummin_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8215805Z copying torch\include\ATen\ops\cummin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8222507Z copying torch\include\ATen\ops\cummin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8229550Z copying torch\include\ATen\ops\cumprod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8235622Z copying torch\include\ATen\ops\cumprod_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8242679Z copying torch\include\ATen\ops\cumprod_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8270733Z copying torch\include\ATen\ops\cumprod_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8277099Z copying torch\include\ATen\ops\cumprod_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8284036Z copying torch\include\ATen\ops\cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8291207Z copying torch\include\ATen\ops\cumprod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8297640Z copying torch\include\ATen\ops\cumprod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8304567Z copying torch\include\ATen\ops\cumprod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8311145Z copying torch\include\ATen\ops\cumprod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8317911Z copying torch\include\ATen\ops\cumprod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8324630Z copying torch\include\ATen\ops\cumprod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8331479Z copying torch\include\ATen\ops\cumprod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8338329Z copying torch\include\ATen\ops\cumsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8345335Z copying torch\include\ATen\ops\cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8352122Z copying torch\include\ATen\ops\cumsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8359057Z copying torch\include\ATen\ops\cumsum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8365478Z copying torch\include\ATen\ops\cumsum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8372403Z copying torch\include\ATen\ops\cumsum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8379342Z copying torch\include\ATen\ops\cumsum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8386239Z copying torch\include\ATen\ops\cumsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8393122Z copying torch\include\ATen\ops\cumsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8399800Z copying torch\include\ATen\ops\cumulative_trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8406928Z copying torch\include\ATen\ops\cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8413735Z copying torch\include\ATen\ops\cumulative_trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8421060Z copying torch\include\ATen\ops\cumulative_trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8427342Z copying torch\include\ATen\ops\data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8433874Z copying torch\include\ATen\ops\data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8441301Z copying torch\include\ATen\ops\data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8446965Z copying torch\include\ATen\ops\data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8453529Z copying torch\include\ATen\ops\deg2rad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8460259Z copying torch\include\ATen\ops\deg2rad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8466827Z copying torch\include\ATen\ops\deg2rad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8474062Z copying torch\include\ATen\ops\deg2rad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8480562Z copying torch\include\ATen\ops\dense_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8492323Z copying torch\include\ATen\ops\dense_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8498936Z copying torch\include\ATen\ops\dense_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8505736Z copying torch\include\ATen\ops\dense_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8512140Z copying torch\include\ATen\ops\dequantize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8518953Z copying torch\include\ATen\ops\dequantize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8525621Z copying torch\include\ATen\ops\dequantize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8532998Z copying torch\include\ATen\ops\dequantize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8539938Z copying torch\include\ATen\ops\dequantize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8546968Z copying torch\include\ATen\ops\dequantize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8553768Z copying torch\include\ATen\ops\det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8559652Z copying torch\include\ATen\ops\detach.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8566148Z copying torch\include\ATen\ops\detach_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8572952Z copying torch\include\ATen\ops\detach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8580287Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8587020Z copying torch\include\ATen\ops\detach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8593474Z copying torch\include\ATen\ops\detach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8600026Z copying torch\include\ATen\ops\detach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8606649Z copying torch\include\ATen\ops\detach_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8613097Z copying torch\include\ATen\ops\detach_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8619950Z copying torch\include\ATen\ops\det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8627225Z copying torch\include\ATen\ops\det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8633223Z copying torch\include\ATen\ops\det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8639562Z copying torch\include\ATen\ops\diag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8645502Z copying torch\include\ATen\ops\diagflat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8652872Z copying torch\include\ATen\ops\diagflat_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8659274Z copying torch\include\ATen\ops\diagflat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8665547Z copying torch\include\ATen\ops\diagflat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8672059Z copying torch\include\ATen\ops\diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8678544Z copying torch\include\ATen\ops\diagonal_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8685606Z copying torch\include\ATen\ops\diagonal_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8692422Z copying torch\include\ATen\ops\diagonal_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8699120Z copying torch\include\ATen\ops\diagonal_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8706229Z copying torch\include\ATen\ops\diagonal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8713151Z copying torch\include\ATen\ops\diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8719893Z copying torch\include\ATen\ops\diagonal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8727016Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8734744Z copying torch\include\ATen\ops\diagonal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8741408Z copying torch\include\ATen\ops\diagonal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8748254Z copying torch\include\ATen\ops\diagonal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8755187Z copying torch\include\ATen\ops\diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8762136Z copying torch\include\ATen\ops\diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8769619Z copying torch\include\ATen\ops\diagonal_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8776467Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8783178Z copying torch\include\ATen\ops\diagonal_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8789888Z copying torch\include\ATen\ops\diagonal_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8796681Z copying torch\include\ATen\ops\diagonal_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8803740Z copying torch\include\ATen\ops\diag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8810458Z copying torch\include\ATen\ops\diag_embed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8817861Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8824827Z copying torch\include\ATen\ops\diag_embed_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8831631Z copying torch\include\ATen\ops\diag_embed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8838696Z copying torch\include\ATen\ops\diag_embed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8844991Z copying torch\include\ATen\ops\diag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8851638Z copying torch\include\ATen\ops\diag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8858577Z copying torch\include\ATen\ops\diff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8865428Z copying torch\include\ATen\ops\diff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8872245Z copying torch\include\ATen\ops\diff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8878706Z copying torch\include\ATen\ops\diff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8884995Z copying torch\include\ATen\ops\digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8892111Z copying torch\include\ATen\ops\digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8898775Z copying torch\include\ATen\ops\digamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8905514Z copying torch\include\ATen\ops\digamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8912290Z copying torch\include\ATen\ops\digamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8918649Z copying torch\include\ATen\ops\digamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8925447Z copying torch\include\ATen\ops\digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8932150Z copying torch\include\ATen\ops\digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8938986Z copying torch\include\ATen\ops\dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8945555Z copying torch\include\ATen\ops\dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8951884Z copying torch\include\ATen\ops\dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8958544Z copying torch\include\ATen\ops\dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8965031Z copying torch\include\ATen\ops\div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8971459Z copying torch\include\ATen\ops\divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8978217Z copying torch\include\ATen\ops\divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8985154Z copying torch\include\ATen\ops\divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8992700Z copying torch\include\ATen\ops\divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.8999658Z copying torch\include\ATen\ops\div_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9006389Z copying torch\include\ATen\ops\div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9013206Z copying torch\include\ATen\ops\div_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9019848Z copying torch\include\ATen\ops\div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9026521Z copying torch\include\ATen\ops\div_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9033013Z copying torch\include\ATen\ops\div_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9039600Z copying torch\include\ATen\ops\div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9047080Z copying torch\include\ATen\ops\div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9054963Z copying torch\include\ATen\ops\dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9060711Z copying torch\include\ATen\ops\dot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9067204Z copying torch\include\ATen\ops\dot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9074178Z copying torch\include\ATen\ops\dot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9080646Z copying torch\include\ATen\ops\dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9087555Z copying torch\include\ATen\ops\dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9093767Z copying torch\include\ATen\ops\dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9100212Z copying torch\include\ATen\ops\dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9106433Z copying torch\include\ATen\ops\dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9112928Z copying torch\include\ATen\ops\dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9119392Z copying torch\include\ATen\ops\dsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9126298Z copying torch\include\ATen\ops\dsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9132969Z copying torch\include\ATen\ops\dsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9139796Z copying torch\include\ATen\ops\dsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9146599Z copying torch\include\ATen\ops\dstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9153401Z copying torch\include\ATen\ops\dstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9159756Z copying torch\include\ATen\ops\dstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9166010Z copying torch\include\ATen\ops\dstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9172830Z copying torch\include\ATen\ops\einsum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9179606Z copying torch\include\ATen\ops\einsum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9186105Z copying torch\include\ATen\ops\einsum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9192888Z copying torch\include\ATen\ops\einsum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9199346Z copying torch\include\ATen\ops\elu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9205704Z copying torch\include\ATen\ops\elu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9212704Z copying torch\include\ATen\ops\elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9219568Z copying torch\include\ATen\ops\elu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9226644Z copying torch\include\ATen\ops\elu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9233023Z copying torch\include\ATen\ops\elu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9239948Z copying torch\include\ATen\ops\elu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9246529Z copying torch\include\ATen\ops\elu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9253615Z copying torch\include\ATen\ops\elu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9260699Z copying torch\include\ATen\ops\elu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9266967Z copying torch\include\ATen\ops\elu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9312709Z copying torch\include\ATen\ops\elu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9318898Z copying torch\include\ATen\ops\elu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9325798Z copying torch\include\ATen\ops\elu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9333194Z copying torch\include\ATen\ops\elu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9340479Z copying torch\include\ATen\ops\elu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9347431Z copying torch\include\ATen\ops\embedding.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9355080Z copying torch\include\ATen\ops\embedding_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9361996Z copying torch\include\ATen\ops\embedding_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9369389Z copying torch\include\ATen\ops\embedding_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9376348Z copying torch\include\ATen\ops\embedding_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9383004Z copying torch\include\ATen\ops\embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9390017Z copying torch\include\ATen\ops\embedding_bag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9396795Z copying torch\include\ATen\ops\embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9403545Z copying torch\include\ATen\ops\embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9410519Z copying torch\include\ATen\ops\embedding_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9417492Z copying torch\include\ATen\ops\embedding_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9424861Z copying torch\include\ATen\ops\embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9431556Z copying torch\include\ATen\ops\embedding_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9438526Z copying torch\include\ATen\ops\embedding_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9445290Z copying torch\include\ATen\ops\embedding_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9452526Z copying torch\include\ATen\ops\embedding_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9459109Z copying torch\include\ATen\ops\embedding_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9465784Z copying torch\include\ATen\ops\embedding_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9472335Z copying torch\include\ATen\ops\embedding_renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9479494Z copying torch\include\ATen\ops\embedding_renorm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9486204Z copying torch\include\ATen\ops\embedding_renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9493091Z copying torch\include\ATen\ops\embedding_renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9500640Z copying torch\include\ATen\ops\embedding_renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9507852Z copying torch\include\ATen\ops\embedding_renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9514352Z copying torch\include\ATen\ops\embedding_renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9521206Z copying torch\include\ATen\ops\embedding_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9528347Z copying torch\include\ATen\ops\embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9535144Z copying torch\include\ATen\ops\embedding_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9542334Z copying torch\include\ATen\ops\embedding_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9549879Z copying torch\include\ATen\ops\empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9557076Z copying torch\include\ATen\ops\empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9564289Z copying torch\include\ATen\ops\empty_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9571680Z copying torch\include\ATen\ops\empty_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9579340Z copying torch\include\ATen\ops\empty_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9585990Z copying torch\include\ATen\ops\empty_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9593342Z copying torch\include\ATen\ops\empty_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9600256Z copying torch\include\ATen\ops\empty_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9607178Z copying torch\include\ATen\ops\empty_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9613965Z copying torch\include\ATen\ops\empty_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9620339Z copying torch\include\ATen\ops\empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9627112Z copying torch\include\ATen\ops\empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9634187Z copying torch\include\ATen\ops\empty_permuted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9641310Z copying torch\include\ATen\ops\empty_permuted_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9648285Z copying torch\include\ATen\ops\empty_permuted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9654670Z copying torch\include\ATen\ops\empty_permuted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9661356Z copying torch\include\ATen\ops\empty_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9668333Z copying torch\include\ATen\ops\empty_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9680912Z copying torch\include\ATen\ops\empty_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9690457Z copying torch\include\ATen\ops\empty_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9697288Z copying torch\include\ATen\ops\empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9705039Z copying torch\include\ATen\ops\empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9712218Z copying torch\include\ATen\ops\empty_strided_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9719552Z copying torch\include\ATen\ops\empty_strided_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9726940Z copying torch\include\ATen\ops\empty_strided_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9734268Z copying torch\include\ATen\ops\empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9740965Z copying torch\include\ATen\ops\empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9747696Z copying torch\include\ATen\ops\eq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9754223Z copying torch\include\ATen\ops\equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9760377Z copying torch\include\ATen\ops\equal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9767143Z copying torch\include\ATen\ops\equal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9774197Z copying torch\include\ATen\ops\equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9780896Z copying torch\include\ATen\ops\equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9787791Z copying torch\include\ATen\ops\eq_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9794321Z copying torch\include\ATen\ops\eq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9800943Z copying torch\include\ATen\ops\eq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9807648Z copying torch\include\ATen\ops\eq_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9814500Z copying torch\include\ATen\ops\eq_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9821197Z copying torch\include\ATen\ops\eq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9827974Z copying torch\include\ATen\ops\eq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9834479Z copying torch\include\ATen\ops\erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9840892Z copying torch\include\ATen\ops\erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9847880Z copying torch\include\ATen\ops\erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9868263Z copying torch\include\ATen\ops\erfc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9875283Z copying torch\include\ATen\ops\erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9881854Z copying torch\include\ATen\ops\erfc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9888502Z copying torch\include\ATen\ops\erfc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9895422Z copying torch\include\ATen\ops\erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9902139Z copying torch\include\ATen\ops\erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9908636Z copying torch\include\ATen\ops\erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9915563Z copying torch\include\ATen\ops\erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9922368Z copying torch\include\ATen\ops\erfinv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9929639Z copying torch\include\ATen\ops\erfinv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9936494Z copying torch\include\ATen\ops\erfinv_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9943799Z copying torch\include\ATen\ops\erfinv_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9951361Z copying torch\include\ATen\ops\erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9958070Z copying torch\include\ATen\ops\erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9965199Z copying torch\include\ATen\ops\erf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9971957Z copying torch\include\ATen\ops\erf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9978652Z copying torch\include\ATen\ops\erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9985734Z copying torch\include\ATen\ops\erf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9991792Z copying torch\include\ATen\ops\erf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:45.9998458Z copying torch\include\ATen\ops\erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0005586Z copying torch\include\ATen\ops\erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0011989Z copying torch\include\ATen\ops\exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0018548Z copying torch\include\ATen\ops\exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0025376Z copying torch\include\ATen\ops\exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0031890Z copying torch\include\ATen\ops\exp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0039053Z copying torch\include\ATen\ops\exp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0045840Z copying torch\include\ATen\ops\exp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0053138Z copying torch\include\ATen\ops\exp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0060122Z copying torch\include\ATen\ops\exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0066425Z copying torch\include\ATen\ops\exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0072941Z copying torch\include\ATen\ops\expand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0096479Z copying torch\include\ATen\ops\expand_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0103628Z copying torch\include\ATen\ops\expand_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0110379Z copying torch\include\ATen\ops\expand_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0116822Z copying torch\include\ATen\ops\expand_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0123685Z copying torch\include\ATen\ops\expand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0130162Z copying torch\include\ATen\ops\expand_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0138185Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0144858Z copying torch\include\ATen\ops\expand_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0151374Z copying torch\include\ATen\ops\expand_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0158409Z copying torch\include\ATen\ops\expand_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0165099Z copying torch\include\ATen\ops\expand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0171406Z copying torch\include\ATen\ops\expand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0177989Z copying torch\include\ATen\ops\expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0184804Z copying torch\include\ATen\ops\expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0191362Z copying torch\include\ATen\ops\expm1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0197822Z copying torch\include\ATen\ops\expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0204586Z copying torch\include\ATen\ops\expm1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0211098Z copying torch\include\ATen\ops\expm1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0217932Z copying torch\include\ATen\ops\expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0224442Z copying torch\include\ATen\ops\expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0230978Z copying torch\include\ATen\ops\exponential.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0237828Z copying torch\include\ATen\ops\exponential_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0244458Z copying torch\include\ATen\ops\exponential_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0251073Z copying torch\include\ATen\ops\exponential_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0258060Z copying torch\include\ATen\ops\exponential_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0264665Z copying torch\include\ATen\ops\exponential_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0271252Z copying torch\include\ATen\ops\exponential_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0278273Z copying torch\include\ATen\ops\exp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0284844Z copying torch\include\ATen\ops\exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0291325Z copying torch\include\ATen\ops\exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0345774Z copying torch\include\ATen\ops\exp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0353633Z copying torch\include\ATen\ops\exp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0360353Z copying torch\include\ATen\ops\exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0367028Z copying torch\include\ATen\ops\exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0373409Z copying torch\include\ATen\ops\eye.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0380104Z copying torch\include\ATen\ops\eye_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0386658Z copying torch\include\ATen\ops\eye_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0393968Z copying torch\include\ATen\ops\eye_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0400911Z copying torch\include\ATen\ops\eye_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0408221Z copying torch\include\ATen\ops\eye_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0415356Z copying torch\include\ATen\ops\eye_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0421728Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0428683Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0435913Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0444482Z 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-07-17T08:09:46.0452016Z 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-07-17T08:09:46.0459057Z 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-07-17T08:09:46.0466494Z 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-07-17T08:09:46.0473685Z 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-07-17T08:09:46.0481272Z 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-07-17T08:09:46.0488298Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0495411Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0503141Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0509913Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0517453Z copying torch\include\ATen\ops\fake_quantize_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0524296Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0531509Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0538957Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0566985Z 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-07-17T08:09:46.0568183Z 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-07-17T08:09:46.0569236Z 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-07-17T08:09:46.0573001Z 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-07-17T08:09:46.0579231Z 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-07-17T08:09:46.0586720Z 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-07-17T08:09:46.0593743Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0600687Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_cachemask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0608122Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0615040Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0622923Z copying torch\include\ATen\ops\fake_quantize_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0629749Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0636785Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0643687Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0651433Z 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-07-17T08:09:46.0658247Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0665773Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0672675Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0679486Z copying torch\include\ATen\ops\fbgemm_linear_fp16_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0686378Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0693889Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0700689Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0708105Z 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-07-17T08:09:46.0714920Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0721829Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_fp32_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0729048Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0736004Z copying torch\include\ATen\ops\fbgemm_linear_int8_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0743036Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0749983Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0756808Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0763784Z copying torch\include\ATen\ops\fbgemm_linear_quantize_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0770669Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0778027Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0784891Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0791483Z copying torch\include\ATen\ops\fbgemm_pack_gemm_matrix_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0798208Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0806910Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0812744Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0819721Z copying torch\include\ATen\ops\fbgemm_pack_quantized_matrix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0826697Z copying torch\include\ATen\ops\feature_alpha_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0833891Z copying torch\include\ATen\ops\feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0841504Z copying torch\include\ATen\ops\feature_alpha_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0847890Z copying torch\include\ATen\ops\feature_alpha_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0855017Z copying torch\include\ATen\ops\feature_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0862159Z copying torch\include\ATen\ops\feature_dropout_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0868799Z copying torch\include\ATen\ops\feature_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0876474Z copying torch\include\ATen\ops\feature_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0882781Z copying torch\include\ATen\ops\fft_fft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0889262Z copying torch\include\ATen\ops\fft_fft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0896286Z copying torch\include\ATen\ops\fft_fft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0904892Z copying torch\include\ATen\ops\fft_fft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0911105Z copying torch\include\ATen\ops\fft_fft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0918045Z copying torch\include\ATen\ops\fft_fftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0924992Z copying torch\include\ATen\ops\fft_fftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0932076Z copying torch\include\ATen\ops\fft_fftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0938915Z copying torch\include\ATen\ops\fft_fftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0945957Z copying torch\include\ATen\ops\fft_fftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0953134Z copying torch\include\ATen\ops\fft_fftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0959602Z copying torch\include\ATen\ops\fft_fftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0966353Z copying torch\include\ATen\ops\fft_fftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0974318Z copying torch\include\ATen\ops\fft_fftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0981492Z copying torch\include\ATen\ops\fft_fftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0988498Z copying torch\include\ATen\ops\fft_fftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.0995247Z copying torch\include\ATen\ops\fft_fftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1002402Z copying torch\include\ATen\ops\fft_fft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1008856Z copying torch\include\ATen\ops\fft_fft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1015743Z copying torch\include\ATen\ops\fft_fft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1022512Z copying torch\include\ATen\ops\fft_hfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1028806Z copying torch\include\ATen\ops\fft_hfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1035771Z copying torch\include\ATen\ops\fft_hfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1042428Z copying torch\include\ATen\ops\fft_hfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1050007Z copying torch\include\ATen\ops\fft_hfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1057331Z copying torch\include\ATen\ops\fft_hfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1064473Z copying torch\include\ATen\ops\fft_hfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1071107Z copying torch\include\ATen\ops\fft_hfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1078234Z copying torch\include\ATen\ops\fft_hfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1085153Z copying torch\include\ATen\ops\fft_hfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1091510Z copying torch\include\ATen\ops\fft_hfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1098473Z copying torch\include\ATen\ops\fft_hfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1105246Z copying torch\include\ATen\ops\fft_ifft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1111594Z copying torch\include\ATen\ops\fft_ifft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1118516Z copying torch\include\ATen\ops\fft_ifft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1125025Z copying torch\include\ATen\ops\fft_ifft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1131548Z copying torch\include\ATen\ops\fft_ifft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1138394Z copying torch\include\ATen\ops\fft_ifftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1145333Z copying torch\include\ATen\ops\fft_ifftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1152187Z copying torch\include\ATen\ops\fft_ifftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1159055Z copying torch\include\ATen\ops\fft_ifftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1165604Z copying torch\include\ATen\ops\fft_ifftshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1172893Z copying torch\include\ATen\ops\fft_ifftshift_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1179656Z copying torch\include\ATen\ops\fft_ifftshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1185858Z copying torch\include\ATen\ops\fft_ifftshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1192961Z copying torch\include\ATen\ops\fft_ifft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1199845Z copying torch\include\ATen\ops\fft_ifft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1206437Z copying torch\include\ATen\ops\fft_ifft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1213207Z copying torch\include\ATen\ops\fft_ihfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1220201Z copying torch\include\ATen\ops\fft_ihfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1227038Z copying torch\include\ATen\ops\fft_ihfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1233762Z copying torch\include\ATen\ops\fft_ihfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1240536Z copying torch\include\ATen\ops\fft_ihfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1247534Z copying torch\include\ATen\ops\fft_ihfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1254759Z copying torch\include\ATen\ops\fft_ihfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1261595Z copying torch\include\ATen\ops\fft_ihfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1268238Z copying torch\include\ATen\ops\fft_ihfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1275366Z copying torch\include\ATen\ops\fft_ihfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1281923Z copying torch\include\ATen\ops\fft_ihfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1288761Z copying torch\include\ATen\ops\fft_ihfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1295566Z copying torch\include\ATen\ops\fft_irfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1302321Z copying torch\include\ATen\ops\fft_irfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1309295Z copying torch\include\ATen\ops\fft_irfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1316045Z copying torch\include\ATen\ops\fft_irfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1322824Z copying torch\include\ATen\ops\fft_irfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1329642Z copying torch\include\ATen\ops\fft_irfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1336943Z copying torch\include\ATen\ops\fft_irfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1343725Z copying torch\include\ATen\ops\fft_irfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1350376Z copying torch\include\ATen\ops\fft_irfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1357629Z copying torch\include\ATen\ops\fft_irfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1364288Z copying torch\include\ATen\ops\fft_irfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1371135Z copying torch\include\ATen\ops\fft_irfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1378796Z copying torch\include\ATen\ops\fft_rfft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1385492Z copying torch\include\ATen\ops\fft_rfft2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1392594Z copying torch\include\ATen\ops\fft_rfft2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1399219Z copying torch\include\ATen\ops\fft_rfft2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1405919Z copying torch\include\ATen\ops\fft_rfft2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1432299Z copying torch\include\ATen\ops\fft_rfftfreq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1439490Z copying torch\include\ATen\ops\fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1446613Z copying torch\include\ATen\ops\fft_rfftfreq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1453551Z copying torch\include\ATen\ops\fft_rfftfreq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1460606Z copying torch\include\ATen\ops\fft_rfftn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1467516Z copying torch\include\ATen\ops\fft_rfftn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1474457Z copying torch\include\ATen\ops\fft_rfftn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1481309Z copying torch\include\ATen\ops\fft_rfftn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1488513Z copying torch\include\ATen\ops\fft_rfft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1495131Z copying torch\include\ATen\ops\fft_rfft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1501982Z copying torch\include\ATen\ops\fft_rfft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1508730Z copying torch\include\ATen\ops\fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1515181Z copying torch\include\ATen\ops\fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1521772Z copying torch\include\ATen\ops\fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1528777Z copying torch\include\ATen\ops\fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1535866Z copying torch\include\ATen\ops\fill_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1548106Z copying torch\include\ATen\ops\fill_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1549771Z copying torch\include\ATen\ops\fill_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1557214Z copying torch\include\ATen\ops\fill_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1564226Z copying torch\include\ATen\ops\fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1571168Z copying torch\include\ATen\ops\fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1578220Z copying torch\include\ATen\ops\fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1584771Z copying torch\include\ATen\ops\fix.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1591599Z copying torch\include\ATen\ops\fix_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1598179Z copying torch\include\ATen\ops\fix_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1604640Z copying torch\include\ATen\ops\fix_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1611160Z copying torch\include\ATen\ops\flatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1618222Z copying torch\include\ATen\ops\flatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1624471Z copying torch\include\ATen\ops\flatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1631613Z copying torch\include\ATen\ops\flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1638214Z copying torch\include\ATen\ops\flatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1644687Z copying torch\include\ATen\ops\flatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1651943Z copying torch\include\ATen\ops\flatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1658843Z copying torch\include\ATen\ops\flatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1665571Z copying torch\include\ATen\ops\flip.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1671896Z copying torch\include\ATen\ops\fliplr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1678332Z copying torch\include\ATen\ops\fliplr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1685948Z copying torch\include\ATen\ops\fliplr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1691991Z copying torch\include\ATen\ops\fliplr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1699510Z copying torch\include\ATen\ops\flipud.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1705908Z copying torch\include\ATen\ops\flipud_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1712361Z copying torch\include\ATen\ops\flipud_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1718834Z copying torch\include\ATen\ops\flipud_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1725710Z copying torch\include\ATen\ops\flip_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1732478Z copying torch\include\ATen\ops\flip_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1739175Z copying torch\include\ATen\ops\flip_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1745899Z copying torch\include\ATen\ops\flip_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1752375Z copying torch\include\ATen\ops\flip_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1758727Z copying torch\include\ATen\ops\float_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1765726Z copying torch\include\ATen\ops\float_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1772245Z copying torch\include\ATen\ops\float_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1778956Z copying torch\include\ATen\ops\float_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1786095Z copying torch\include\ATen\ops\floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1792812Z copying torch\include\ATen\ops\floor_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1799286Z copying torch\include\ATen\ops\floor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1805917Z copying torch\include\ATen\ops\floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1812846Z copying torch\include\ATen\ops\floor_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1819775Z copying torch\include\ATen\ops\floor_divide_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1826512Z copying torch\include\ATen\ops\floor_divide_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1833479Z copying torch\include\ATen\ops\floor_divide_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1840137Z copying torch\include\ATen\ops\floor_divide_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1846812Z copying torch\include\ATen\ops\floor_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1853643Z copying torch\include\ATen\ops\floor_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1860749Z copying torch\include\ATen\ops\floor_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1867436Z copying torch\include\ATen\ops\floor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1874262Z copying torch\include\ATen\ops\floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1880980Z copying torch\include\ATen\ops\floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1897895Z copying torch\include\ATen\ops\fmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1904631Z copying torch\include\ATen\ops\fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1911408Z copying torch\include\ATen\ops\fmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1918209Z copying torch\include\ATen\ops\fmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1924896Z copying torch\include\ATen\ops\fmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1931938Z copying torch\include\ATen\ops\fmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.1938348Z copying torch\include\ATen\ops\fmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.2724017Z copying torch\include\ATen\ops\fmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.2730956Z copying torch\include\ATen\ops\fmin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.2737989Z copying torch\include\ATen\ops\fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.2744746Z copying torch\include\ATen\ops\fmin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.2751319Z copying torch\include\ATen\ops\fmin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.2758691Z copying torch\include\ATen\ops\fmin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3590652Z copying torch\include\ATen\ops\fmin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3598260Z copying torch\include\ATen\ops\fmin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3605381Z copying torch\include\ATen\ops\fmin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3612433Z copying torch\include\ATen\ops\fmod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3619713Z copying torch\include\ATen\ops\fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3626723Z copying torch\include\ATen\ops\fmod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3633412Z copying torch\include\ATen\ops\fmod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3641524Z copying torch\include\ATen\ops\fmod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3647405Z copying torch\include\ATen\ops\fmod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3653723Z copying torch\include\ATen\ops\fmod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3660864Z copying torch\include\ATen\ops\fmod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3667282Z copying torch\include\ATen\ops\fmod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3674569Z copying torch\include\ATen\ops\frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3680149Z copying torch\include\ATen\ops\fractional_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3686873Z copying torch\include\ATen\ops\fractional_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3694095Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3701046Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3708100Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3716158Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3722252Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3729120Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3735958Z copying torch\include\ATen\ops\fractional_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3743310Z copying torch\include\ATen\ops\fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3750078Z copying torch\include\ATen\ops\fractional_max_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3756882Z copying torch\include\ATen\ops\fractional_max_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3763939Z copying torch\include\ATen\ops\fractional_max_pool2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3770794Z copying torch\include\ATen\ops\fractional_max_pool2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3777635Z copying torch\include\ATen\ops\fractional_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3784611Z copying torch\include\ATen\ops\fractional_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3791310Z copying torch\include\ATen\ops\fractional_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3798208Z copying torch\include\ATen\ops\fractional_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3805018Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3811884Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3818736Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3826159Z copying torch\include\ATen\ops\fractional_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3833391Z copying torch\include\ATen\ops\fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3840111Z copying torch\include\ATen\ops\fractional_max_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3847086Z copying torch\include\ATen\ops\fractional_max_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3854094Z copying torch\include\ATen\ops\fractional_max_pool3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3861123Z copying torch\include\ATen\ops\fractional_max_pool3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3868554Z copying torch\include\ATen\ops\fractional_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3875102Z copying torch\include\ATen\ops\fractional_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.3882862Z copying torch\include\ATen\ops\frac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4552737Z copying torch\include\ATen\ops\frac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4553529Z copying torch\include\ATen\ops\frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4554280Z copying torch\include\ATen\ops\frac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4555004Z copying torch\include\ATen\ops\frac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4555738Z copying torch\include\ATen\ops\frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4556431Z copying torch\include\ATen\ops\frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4558122Z copying torch\include\ATen\ops\frexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4558954Z copying torch\include\ATen\ops\frexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4559837Z copying torch\include\ATen\ops\frexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4560735Z copying torch\include\ATen\ops\frexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4561479Z copying torch\include\ATen\ops\frexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4562176Z copying torch\include\ATen\ops\frexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4580137Z copying torch\include\ATen\ops\frobenius_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4581052Z copying torch\include\ATen\ops\frobenius_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4582069Z copying torch\include\ATen\ops\frobenius_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4582852Z copying torch\include\ATen\ops\frobenius_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4583629Z copying torch\include\ATen\ops\from_blob.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4584323Z copying torch\include\ATen\ops\from_file.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4586555Z copying torch\include\ATen\ops\from_file_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4587450Z copying torch\include\ATen\ops\from_file_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4588246Z copying torch\include\ATen\ops\from_file_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4588966Z copying torch\include\ATen\ops\from_file_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4589654Z copying torch\include\ATen\ops\full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4590462Z copying torch\include\ATen\ops\full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4592661Z copying torch\include\ATen\ops\full_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4593515Z copying torch\include\ATen\ops\full_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4594389Z copying torch\include\ATen\ops\full_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4595112Z copying torch\include\ATen\ops\full_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4595905Z copying torch\include\ATen\ops\full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4597959Z copying torch\include\ATen\ops\full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4598737Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4599750Z 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-07-17T08:09:46.4600771Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4601647Z copying torch\include\ATen\ops\fused_moving_avg_obs_fake_quant_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4602407Z copying torch\include\ATen\ops\gather.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4604505Z copying torch\include\ATen\ops\gather_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4605413Z copying torch\include\ATen\ops\gather_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4606343Z copying torch\include\ATen\ops\gather_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4607226Z copying torch\include\ATen\ops\gather_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4608176Z copying torch\include\ATen\ops\gather_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4609244Z copying torch\include\ATen\ops\gather_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4610124Z copying torch\include\ATen\ops\gather_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4610954Z copying torch\include\ATen\ops\gather_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4611774Z copying torch\include\ATen\ops\gather_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4612568Z copying torch\include\ATen\ops\gather_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4613331Z copying torch\include\ATen\ops\gather_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4618815Z copying torch\include\ATen\ops\gather_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4625288Z copying torch\include\ATen\ops\gcd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4632264Z copying torch\include\ATen\ops\gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4638746Z copying torch\include\ATen\ops\gcd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4645584Z copying torch\include\ATen\ops\gcd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4652161Z copying torch\include\ATen\ops\gcd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4658355Z copying torch\include\ATen\ops\gcd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4664903Z copying torch\include\ATen\ops\gcd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4671168Z copying torch\include\ATen\ops\gcd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4703912Z copying torch\include\ATen\ops\ge.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4710409Z copying torch\include\ATen\ops\gelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4716615Z copying torch\include\ATen\ops\gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4723843Z copying torch\include\ATen\ops\gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4730395Z copying torch\include\ATen\ops\gelu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4737192Z copying torch\include\ATen\ops\gelu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4743877Z copying torch\include\ATen\ops\gelu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4751075Z copying torch\include\ATen\ops\gelu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4757720Z copying torch\include\ATen\ops\gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4764365Z copying torch\include\ATen\ops\gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4771276Z copying torch\include\ATen\ops\gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4778535Z copying torch\include\ATen\ops\gelu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4785192Z copying torch\include\ATen\ops\gelu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4791580Z copying torch\include\ATen\ops\gelu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4798368Z copying torch\include\ATen\ops\gelu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4805174Z copying torch\include\ATen\ops\gelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4818829Z copying torch\include\ATen\ops\gelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4820390Z copying torch\include\ATen\ops\geometric.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4827198Z copying torch\include\ATen\ops\geometric_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4833620Z copying torch\include\ATen\ops\geometric_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4840310Z copying torch\include\ATen\ops\geometric_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4846998Z copying torch\include\ATen\ops\geometric_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4854068Z copying torch\include\ATen\ops\geometric_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4860659Z copying torch\include\ATen\ops\geometric_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4867052Z copying torch\include\ATen\ops\geqrf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4873443Z copying torch\include\ATen\ops\geqrf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4880129Z copying torch\include\ATen\ops\geqrf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4886992Z copying torch\include\ATen\ops\geqrf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4893639Z copying torch\include\ATen\ops\geqrf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4900115Z copying torch\include\ATen\ops\ger.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4906762Z copying torch\include\ATen\ops\ger_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4913347Z copying torch\include\ATen\ops\ger_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4919932Z copying torch\include\ATen\ops\ger_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4926902Z copying torch\include\ATen\ops\ge_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4933583Z copying torch\include\ATen\ops\ge_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4940276Z copying torch\include\ATen\ops\ge_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4947796Z copying torch\include\ATen\ops\ge_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4954504Z copying torch\include\ATen\ops\ge_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4960554Z copying torch\include\ATen\ops\ge_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4967159Z copying torch\include\ATen\ops\ge_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4973683Z copying torch\include\ATen\ops\glu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4980021Z copying torch\include\ATen\ops\glu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4986819Z copying torch\include\ATen\ops\glu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.4994962Z copying torch\include\ATen\ops\glu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5000718Z copying torch\include\ATen\ops\glu_backward_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5007686Z copying torch\include\ATen\ops\glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5014930Z copying torch\include\ATen\ops\glu_backward_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5021727Z copying torch\include\ATen\ops\glu_backward_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5029477Z copying torch\include\ATen\ops\glu_backward_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5035825Z copying torch\include\ATen\ops\glu_backward_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5042579Z copying torch\include\ATen\ops\glu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5049333Z copying torch\include\ATen\ops\glu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5056614Z copying torch\include\ATen\ops\glu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5064069Z copying torch\include\ATen\ops\glu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5092797Z copying torch\include\ATen\ops\glu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5093545Z copying torch\include\ATen\ops\glu_jvp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5094370Z copying torch\include\ATen\ops\glu_jvp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5095259Z copying torch\include\ATen\ops\glu_jvp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5099905Z copying torch\include\ATen\ops\glu_jvp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5106780Z copying torch\include\ATen\ops\glu_jvp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5113628Z copying torch\include\ATen\ops\glu_jvp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5120489Z copying torch\include\ATen\ops\glu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5128140Z copying torch\include\ATen\ops\glu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5133567Z copying torch\include\ATen\ops\glu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5140077Z copying torch\include\ATen\ops\glu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5146593Z copying torch\include\ATen\ops\gradient.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5153150Z copying torch\include\ATen\ops\gradient_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5159951Z copying torch\include\ATen\ops\gradient_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5166414Z copying torch\include\ATen\ops\gradient_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5173319Z copying torch\include\ATen\ops\greater.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5180483Z copying torch\include\ATen\ops\greater_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5186439Z copying torch\include\ATen\ops\greater_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5193280Z copying torch\include\ATen\ops\greater_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5199694Z copying torch\include\ATen\ops\greater_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5206350Z copying torch\include\ATen\ops\greater_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5213120Z copying torch\include\ATen\ops\greater_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5219960Z copying torch\include\ATen\ops\greater_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5226717Z copying torch\include\ATen\ops\grid_sampler.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5233144Z copying torch\include\ATen\ops\grid_sampler_2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5239777Z copying torch\include\ATen\ops\grid_sampler_2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5246768Z copying torch\include\ATen\ops\grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5253582Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5260304Z copying torch\include\ATen\ops\grid_sampler_2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5267120Z copying torch\include\ATen\ops\grid_sampler_2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5274162Z copying torch\include\ATen\ops\grid_sampler_2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5280879Z copying torch\include\ATen\ops\grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5287911Z copying torch\include\ATen\ops\grid_sampler_2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5294618Z copying torch\include\ATen\ops\grid_sampler_2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5301256Z copying torch\include\ATen\ops\grid_sampler_2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5307845Z copying torch\include\ATen\ops\grid_sampler_2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5314296Z copying torch\include\ATen\ops\grid_sampler_3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5320817Z copying torch\include\ATen\ops\grid_sampler_3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5327882Z copying torch\include\ATen\ops\grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5339859Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5346463Z copying torch\include\ATen\ops\grid_sampler_3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5353267Z copying torch\include\ATen\ops\grid_sampler_3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5359986Z copying torch\include\ATen\ops\grid_sampler_3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5366808Z copying torch\include\ATen\ops\grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5373523Z copying torch\include\ATen\ops\grid_sampler_3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5380035Z copying torch\include\ATen\ops\grid_sampler_3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5387419Z copying torch\include\ATen\ops\grid_sampler_3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5394188Z copying torch\include\ATen\ops\grid_sampler_3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5400639Z copying torch\include\ATen\ops\grid_sampler_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5407408Z copying torch\include\ATen\ops\grid_sampler_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5414221Z copying torch\include\ATen\ops\grid_sampler_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5420945Z copying torch\include\ATen\ops\group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5428847Z copying torch\include\ATen\ops\group_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5434561Z copying torch\include\ATen\ops\group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5441491Z copying torch\include\ATen\ops\group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5448150Z copying torch\include\ATen\ops\gru.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5454699Z copying torch\include\ATen\ops\gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5461600Z copying torch\include\ATen\ops\gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5468923Z copying torch\include\ATen\ops\gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5475084Z copying torch\include\ATen\ops\gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5481968Z copying torch\include\ATen\ops\gru_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5488486Z copying torch\include\ATen\ops\gru_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5495430Z copying torch\include\ATen\ops\gru_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5501731Z copying torch\include\ATen\ops\gt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5509482Z copying torch\include\ATen\ops\gt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5515226Z copying torch\include\ATen\ops\gt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5521900Z copying torch\include\ATen\ops\gt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5528436Z copying torch\include\ATen\ops\gt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5535073Z copying torch\include\ATen\ops\gt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5541663Z copying torch\include\ATen\ops\gt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5549542Z copying torch\include\ATen\ops\gt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5555498Z copying torch\include\ATen\ops\hamming_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5562317Z copying torch\include\ATen\ops\hamming_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5568960Z copying torch\include\ATen\ops\hamming_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5576427Z copying torch\include\ATen\ops\hamming_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5583195Z copying torch\include\ATen\ops\hann_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5590344Z copying torch\include\ATen\ops\hann_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5597101Z copying torch\include\ATen\ops\hann_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5605274Z copying torch\include\ATen\ops\hann_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5611153Z copying torch\include\ATen\ops\hardshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5617839Z copying torch\include\ATen\ops\hardshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5625001Z copying torch\include\ATen\ops\hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5638615Z copying torch\include\ATen\ops\hardshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5644595Z copying torch\include\ATen\ops\hardshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5651501Z copying torch\include\ATen\ops\hardshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5658345Z copying torch\include\ATen\ops\hardshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5665208Z copying torch\include\ATen\ops\hardshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5672417Z copying torch\include\ATen\ops\hardshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5679077Z copying torch\include\ATen\ops\hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5685507Z copying torch\include\ATen\ops\hardshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5692329Z copying torch\include\ATen\ops\hardshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5699110Z copying torch\include\ATen\ops\hardshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5705833Z copying torch\include\ATen\ops\hardshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5712483Z copying torch\include\ATen\ops\hardshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5719106Z copying torch\include\ATen\ops\hardshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5726122Z copying torch\include\ATen\ops\hardsigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5732940Z copying torch\include\ATen\ops\hardsigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.5740047Z copying torch\include\ATen\ops\hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8588524Z copying torch\include\ATen\ops\hardsigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8596512Z copying torch\include\ATen\ops\hardsigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8604013Z copying torch\include\ATen\ops\hardsigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8611616Z copying torch\include\ATen\ops\hardsigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8618936Z copying torch\include\ATen\ops\hardsigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8626378Z copying torch\include\ATen\ops\hardsigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8634421Z copying torch\include\ATen\ops\hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8641638Z copying torch\include\ATen\ops\hardsigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8648758Z copying torch\include\ATen\ops\hardsigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8655787Z copying torch\include\ATen\ops\hardsigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8662303Z copying torch\include\ATen\ops\hardsigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8670357Z copying torch\include\ATen\ops\hardsigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8675915Z copying torch\include\ATen\ops\hardsigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8682997Z copying torch\include\ATen\ops\hardswish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8689593Z copying torch\include\ATen\ops\hardswish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8698032Z copying torch\include\ATen\ops\hardswish_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8703628Z copying torch\include\ATen\ops\hardswish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8710275Z copying torch\include\ATen\ops\hardswish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8717029Z copying torch\include\ATen\ops\hardswish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8723970Z copying torch\include\ATen\ops\hardswish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8731136Z copying torch\include\ATen\ops\hardswish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8737934Z copying torch\include\ATen\ops\hardswish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8744695Z copying torch\include\ATen\ops\hardswish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8752254Z copying torch\include\ATen\ops\hardswish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8759124Z copying torch\include\ATen\ops\hardswish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8765661Z copying torch\include\ATen\ops\hardtanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8772091Z copying torch\include\ATen\ops\hardtanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8779368Z copying torch\include\ATen\ops\hardtanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8786121Z copying torch\include\ATen\ops\hardtanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8792653Z copying torch\include\ATen\ops\hardtanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8799605Z copying torch\include\ATen\ops\hardtanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8806292Z copying torch\include\ATen\ops\hardtanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8813126Z copying torch\include\ATen\ops\hardtanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8819621Z copying torch\include\ATen\ops\hardtanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8826526Z copying torch\include\ATen\ops\hardtanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8838602Z copying torch\include\ATen\ops\hardtanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8845150Z copying torch\include\ATen\ops\heaviside.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8852054Z copying torch\include\ATen\ops\heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8935869Z copying torch\include\ATen\ops\heaviside_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8942654Z copying torch\include\ATen\ops\heaviside_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8949326Z copying torch\include\ATen\ops\heaviside_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8956433Z copying torch\include\ATen\ops\heaviside_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8964146Z copying torch\include\ATen\ops\heaviside_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8970258Z copying torch\include\ATen\ops\heaviside_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8976782Z copying torch\include\ATen\ops\hinge_embedding_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8984119Z copying torch\include\ATen\ops\hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8991051Z copying torch\include\ATen\ops\hinge_embedding_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.8998703Z copying torch\include\ATen\ops\hinge_embedding_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9005041Z copying torch\include\ATen\ops\histc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9020652Z copying torch\include\ATen\ops\histc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9027299Z copying torch\include\ATen\ops\histc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9033945Z copying torch\include\ATen\ops\histc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9040705Z copying torch\include\ATen\ops\histc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9047401Z copying torch\include\ATen\ops\histogram.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9055150Z copying torch\include\ATen\ops\histogramdd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9066765Z copying torch\include\ATen\ops\histogramdd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9073281Z copying torch\include\ATen\ops\histogramdd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9080013Z copying torch\include\ATen\ops\histogramdd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9086694Z copying torch\include\ATen\ops\histogram_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9093869Z copying torch\include\ATen\ops\histogram_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9112483Z copying torch\include\ATen\ops\histogram_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9113178Z copying torch\include\ATen\ops\hsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9115974Z copying torch\include\ATen\ops\hsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9122945Z copying torch\include\ATen\ops\hsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9129607Z copying torch\include\ATen\ops\hsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9136455Z copying torch\include\ATen\ops\hspmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9142763Z copying torch\include\ATen\ops\hspmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9149493Z copying torch\include\ATen\ops\hspmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9156077Z copying torch\include\ATen\ops\hstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9162746Z copying torch\include\ATen\ops\hstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9169766Z copying torch\include\ATen\ops\hstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9176257Z copying torch\include\ATen\ops\hstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9182747Z copying torch\include\ATen\ops\huber_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9189526Z copying torch\include\ATen\ops\huber_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9196354Z copying torch\include\ATen\ops\huber_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9202952Z copying torch\include\ATen\ops\huber_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9209681Z copying torch\include\ATen\ops\huber_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9216599Z copying torch\include\ATen\ops\huber_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9223270Z copying torch\include\ATen\ops\huber_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9229982Z copying torch\include\ATen\ops\huber_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9236692Z copying torch\include\ATen\ops\huber_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9244041Z copying torch\include\ATen\ops\huber_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9250773Z copying torch\include\ATen\ops\huber_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9258334Z copying torch\include\ATen\ops\hypot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9265224Z copying torch\include\ATen\ops\hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9271668Z copying torch\include\ATen\ops\hypot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9278702Z copying torch\include\ATen\ops\hypot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9285403Z copying torch\include\ATen\ops\hypot_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9292706Z copying torch\include\ATen\ops\hypot_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9299319Z copying torch\include\ATen\ops\hypot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9305925Z copying torch\include\ATen\ops\hypot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9321744Z copying torch\include\ATen\ops\i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9328465Z copying torch\include\ATen\ops\i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9334935Z copying torch\include\ATen\ops\i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9341657Z copying torch\include\ATen\ops\i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9353172Z copying torch\include\ATen\ops\i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9359882Z copying torch\include\ATen\ops\i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9366830Z copying torch\include\ATen\ops\i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9374367Z copying torch\include\ATen\ops\i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9381553Z copying torch\include\ATen\ops\igamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9388227Z copying torch\include\ATen\ops\igammac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9395440Z copying torch\include\ATen\ops\igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9401789Z copying torch\include\ATen\ops\igammac_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9408890Z copying torch\include\ATen\ops\igammac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9415744Z copying torch\include\ATen\ops\igammac_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9422730Z copying torch\include\ATen\ops\igammac_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9429563Z copying torch\include\ATen\ops\igammac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9436519Z copying torch\include\ATen\ops\igammac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9443419Z copying torch\include\ATen\ops\igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9450050Z copying torch\include\ATen\ops\igamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9458011Z copying torch\include\ATen\ops\igamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9468517Z copying torch\include\ATen\ops\igamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9475278Z copying torch\include\ATen\ops\igamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9481857Z copying torch\include\ATen\ops\igamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9489063Z copying torch\include\ATen\ops\igamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9496167Z copying torch\include\ATen\ops\im2col.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9502808Z copying torch\include\ATen\ops\im2col_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9509392Z copying torch\include\ATen\ops\im2col_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9515950Z copying torch\include\ATen\ops\im2col_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9522590Z copying torch\include\ATen\ops\im2col_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9529049Z copying torch\include\ATen\ops\imag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9535462Z copying torch\include\ATen\ops\imag_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9542781Z copying torch\include\ATen\ops\imag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9549051Z copying torch\include\ATen\ops\imag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9555729Z copying torch\include\ATen\ops\index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9562127Z copying torch\include\ATen\ops\index_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9569074Z copying torch\include\ATen\ops\index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9576582Z copying torch\include\ATen\ops\index_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9583153Z copying torch\include\ATen\ops\index_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9589808Z copying torch\include\ATen\ops\index_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9596610Z copying torch\include\ATen\ops\index_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9603505Z copying torch\include\ATen\ops\index_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9610219Z copying torch\include\ATen\ops\index_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9616977Z copying torch\include\ATen\ops\index_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9624190Z copying torch\include\ATen\ops\index_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9631121Z copying torch\include\ATen\ops\index_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9638808Z copying torch\include\ATen\ops\index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9646335Z copying torch\include\ATen\ops\index_copy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9653410Z copying torch\include\ATen\ops\index_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9661056Z copying torch\include\ATen\ops\index_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9668070Z copying torch\include\ATen\ops\index_copy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9675521Z copying torch\include\ATen\ops\index_copy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9682339Z copying torch\include\ATen\ops\index_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9689166Z copying torch\include\ATen\ops\index_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9696070Z copying torch\include\ATen\ops\index_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9703001Z copying torch\include\ATen\ops\index_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9709966Z copying torch\include\ATen\ops\index_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9717168Z copying torch\include\ATen\ops\index_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9724498Z copying torch\include\ATen\ops\index_fill_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9731660Z copying torch\include\ATen\ops\index_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9738724Z copying torch\include\ATen\ops\index_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9745535Z copying torch\include\ATen\ops\index_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9752914Z copying torch\include\ATen\ops\index_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9765856Z copying torch\include\ATen\ops\index_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9772841Z copying torch\include\ATen\ops\index_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9779555Z copying torch\include\ATen\ops\index_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9786024Z copying torch\include\ATen\ops\index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9793169Z copying torch\include\ATen\ops\index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9800298Z copying torch\include\ATen\ops\index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9807199Z copying torch\include\ATen\ops\index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9813855Z copying torch\include\ATen\ops\index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9820592Z copying torch\include\ATen\ops\index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9827270Z copying torch\include\ATen\ops\index_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9838846Z copying torch\include\ATen\ops\index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9846085Z copying torch\include\ATen\ops\index_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9852388Z copying torch\include\ATen\ops\index_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9858977Z copying torch\include\ATen\ops\index_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9865729Z copying torch\include\ATen\ops\index_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9872450Z copying torch\include\ATen\ops\index_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9879435Z copying torch\include\ATen\ops\index_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9886046Z copying torch\include\ATen\ops\index_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9896898Z copying torch\include\ATen\ops\index_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9904075Z copying torch\include\ATen\ops\index_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9910978Z copying torch\include\ATen\ops\index_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9917762Z copying torch\include\ATen\ops\index_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9924943Z copying torch\include\ATen\ops\index_select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9932089Z copying torch\include\ATen\ops\index_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9938889Z copying torch\include\ATen\ops\index_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9945750Z copying torch\include\ATen\ops\index_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9952556Z copying torch\include\ATen\ops\index_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9959225Z copying torch\include\ATen\ops\indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9965781Z copying torch\include\ATen\ops\indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9972798Z copying torch\include\ATen\ops\indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9983845Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9991416Z copying torch\include\ATen\ops\indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:46.9998772Z copying torch\include\ATen\ops\indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0005718Z copying torch\include\ATen\ops\indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0012589Z copying torch\include\ATen\ops\indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0019274Z copying torch\include\ATen\ops\indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0026532Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0033717Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0040440Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0047375Z copying torch\include\ATen\ops\infinitely_differentiable_gelu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0054152Z copying torch\include\ATen\ops\inner.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0060891Z copying torch\include\ATen\ops\inner_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0071985Z copying torch\include\ATen\ops\inner_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0078859Z copying torch\include\ATen\ops\inner_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0085550Z copying torch\include\ATen\ops\instance_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0092651Z copying torch\include\ATen\ops\instance_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0099458Z copying torch\include\ATen\ops\instance_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0106561Z copying torch\include\ATen\ops\instance_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0113641Z copying torch\include\ATen\ops\int_repr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0120670Z copying torch\include\ATen\ops\int_repr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0131442Z copying torch\include\ATen\ops\int_repr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0137955Z copying torch\include\ATen\ops\int_repr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0144858Z copying torch\include\ATen\ops\inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0152393Z copying torch\include\ATen\ops\inverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0159078Z copying torch\include\ATen\ops\inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0165450Z copying torch\include\ATen\ops\inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0172515Z copying torch\include\ATen\ops\isclose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0179277Z copying torch\include\ATen\ops\isclose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0190035Z copying torch\include\ATen\ops\isclose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0196365Z copying torch\include\ATen\ops\isclose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0203036Z copying torch\include\ATen\ops\isfinite.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0209367Z copying torch\include\ATen\ops\isfinite_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0220249Z copying torch\include\ATen\ops\isfinite_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0226552Z copying torch\include\ATen\ops\isfinite_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0233586Z copying torch\include\ATen\ops\isin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0240013Z copying torch\include\ATen\ops\isinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0246257Z copying torch\include\ATen\ops\isinf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0252740Z copying torch\include\ATen\ops\isinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0260420Z copying torch\include\ATen\ops\isinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0267216Z copying torch\include\ATen\ops\isin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0274006Z copying torch\include\ATen\ops\isin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0283472Z copying torch\include\ATen\ops\isin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0290069Z copying torch\include\ATen\ops\isin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0297819Z copying torch\include\ATen\ops\isin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0312076Z copying torch\include\ATen\ops\isin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0318248Z copying torch\include\ATen\ops\isin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0324844Z copying torch\include\ATen\ops\isnan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0331781Z copying torch\include\ATen\ops\isnan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0339172Z copying torch\include\ATen\ops\isnan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0347242Z copying torch\include\ATen\ops\isnan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0352975Z copying torch\include\ATen\ops\isnan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0360571Z copying torch\include\ATen\ops\isnan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0367258Z copying torch\include\ATen\ops\isneginf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0374276Z copying torch\include\ATen\ops\isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0381955Z copying torch\include\ATen\ops\isneginf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0388912Z copying torch\include\ATen\ops\isneginf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0395619Z copying torch\include\ATen\ops\isneginf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0402170Z copying torch\include\ATen\ops\isneginf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0410635Z copying torch\include\ATen\ops\isneginf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0416737Z copying torch\include\ATen\ops\isneginf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0423494Z copying torch\include\ATen\ops\isposinf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0430345Z copying torch\include\ATen\ops\isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0437809Z copying torch\include\ATen\ops\isposinf_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0445436Z copying torch\include\ATen\ops\isposinf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0456908Z copying torch\include\ATen\ops\isposinf_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0463111Z copying torch\include\ATen\ops\isposinf_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0470097Z copying torch\include\ATen\ops\isposinf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0477292Z copying torch\include\ATen\ops\isposinf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0488826Z copying torch\include\ATen\ops\isreal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0495408Z copying torch\include\ATen\ops\isreal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0502865Z copying torch\include\ATen\ops\isreal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0592140Z copying torch\include\ATen\ops\isreal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0655034Z copying torch\include\ATen\ops\istft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.0662251Z copying torch\include\ATen\ops\istft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1027499Z copying torch\include\ATen\ops\istft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1036552Z copying torch\include\ATen\ops\istft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1073207Z copying torch\include\ATen\ops\is_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1081551Z copying torch\include\ATen\ops\is_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1088804Z copying torch\include\ATen\ops\is_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1096448Z copying torch\include\ATen\ops\is_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1102580Z copying torch\include\ATen\ops\is_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1109777Z copying torch\include\ATen\ops\is_complex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1116775Z copying torch\include\ATen\ops\is_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1123780Z copying torch\include\ATen\ops\is_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1135856Z copying torch\include\ATen\ops\is_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1143014Z copying torch\include\ATen\ops\is_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1151154Z copying torch\include\ATen\ops\is_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1156772Z copying torch\include\ATen\ops\is_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1163676Z copying torch\include\ATen\ops\is_distributed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1171242Z copying torch\include\ATen\ops\is_distributed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1178058Z copying torch\include\ATen\ops\is_distributed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1184418Z copying torch\include\ATen\ops\is_distributed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1191178Z copying torch\include\ATen\ops\is_floating_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1198832Z copying torch\include\ATen\ops\is_floating_point_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1205065Z copying torch\include\ATen\ops\is_floating_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1211915Z copying torch\include\ATen\ops\is_floating_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1218798Z copying torch\include\ATen\ops\is_inference.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1225779Z copying torch\include\ATen\ops\is_inference_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1232594Z copying torch\include\ATen\ops\is_inference_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1238985Z copying torch\include\ATen\ops\is_inference_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1250049Z copying torch\include\ATen\ops\is_leaf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1257623Z copying torch\include\ATen\ops\is_leaf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1264684Z copying torch\include\ATen\ops\is_leaf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1271278Z copying torch\include\ATen\ops\is_leaf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1278730Z copying torch\include\ATen\ops\is_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1286129Z copying torch\include\ATen\ops\is_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1293112Z copying torch\include\ATen\ops\is_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1300588Z copying torch\include\ATen\ops\is_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1307078Z copying torch\include\ATen\ops\is_nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1314711Z copying torch\include\ATen\ops\is_nonzero_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1321623Z copying torch\include\ATen\ops\is_nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1328015Z copying torch\include\ATen\ops\is_nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1339034Z copying torch\include\ATen\ops\is_pinned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1349118Z copying torch\include\ATen\ops\is_pinned_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1356266Z copying torch\include\ATen\ops\is_pinned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1363270Z copying torch\include\ATen\ops\is_pinned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1375176Z copying torch\include\ATen\ops\is_same_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1382577Z copying torch\include\ATen\ops\is_same_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1389814Z copying torch\include\ATen\ops\is_same_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1397193Z copying torch\include\ATen\ops\is_same_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1408607Z copying torch\include\ATen\ops\is_set_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1415170Z copying torch\include\ATen\ops\is_set_to_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1474118Z copying torch\include\ATen\ops\is_set_to_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1480918Z copying torch\include\ATen\ops\is_set_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1487740Z copying torch\include\ATen\ops\is_set_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1495126Z copying torch\include\ATen\ops\is_signed.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1502834Z copying torch\include\ATen\ops\is_signed_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1509990Z copying torch\include\ATen\ops\is_signed_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1516452Z copying torch\include\ATen\ops\is_signed_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1523624Z copying torch\include\ATen\ops\is_vulkan_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1531058Z copying torch\include\ATen\ops\is_vulkan_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1540381Z copying torch\include\ATen\ops\is_vulkan_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1554513Z copying torch\include\ATen\ops\is_vulkan_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1561834Z copying torch\include\ATen\ops\item.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1568283Z copying torch\include\ATen\ops\item_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1575094Z copying torch\include\ATen\ops\item_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1581671Z copying torch\include\ATen\ops\item_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1588243Z copying torch\include\ATen\ops\kaiser_window.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1595372Z copying torch\include\ATen\ops\kaiser_window_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1603079Z copying torch\include\ATen\ops\kaiser_window_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1609776Z copying torch\include\ATen\ops\kaiser_window_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1617004Z copying torch\include\ATen\ops\kl_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1624081Z copying torch\include\ATen\ops\kl_div_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1630908Z copying torch\include\ATen\ops\kl_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1642386Z copying torch\include\ATen\ops\kl_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1649215Z copying torch\include\ATen\ops\kron.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1656047Z copying torch\include\ATen\ops\kron_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1662892Z copying torch\include\ATen\ops\kron_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1670203Z copying torch\include\ATen\ops\kron_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1677181Z copying torch\include\ATen\ops\kthvalue.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1684469Z copying torch\include\ATen\ops\kthvalue_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1692173Z copying torch\include\ATen\ops\kthvalue_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1699930Z copying torch\include\ATen\ops\kthvalue_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1707691Z copying torch\include\ATen\ops\kthvalue_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1715840Z copying torch\include\ATen\ops\kthvalue_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1723657Z copying torch\include\ATen\ops\kthvalue_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1734458Z copying torch\include\ATen\ops\l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1741254Z copying torch\include\ATen\ops\l1_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1747484Z copying torch\include\ATen\ops\l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1753675Z copying torch\include\ATen\ops\l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1760380Z copying torch\include\ATen\ops\layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1767196Z copying torch\include\ATen\ops\layer_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1774188Z copying torch\include\ATen\ops\layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1780729Z copying torch\include\ATen\ops\layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1787243Z copying torch\include\ATen\ops\lcm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1794100Z copying torch\include\ATen\ops\lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1800438Z copying torch\include\ATen\ops\lcm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1806931Z copying torch\include\ATen\ops\lcm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1813506Z copying torch\include\ATen\ops\lcm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1819701Z copying torch\include\ATen\ops\lcm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1826335Z copying torch\include\ATen\ops\lcm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1832796Z copying torch\include\ATen\ops\lcm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1839031Z copying torch\include\ATen\ops\ldexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1845554Z copying torch\include\ATen\ops\ldexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1852109Z copying torch\include\ATen\ops\ldexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1858926Z copying torch\include\ATen\ops\ldexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1865683Z copying torch\include\ATen\ops\le.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1871684Z copying torch\include\ATen\ops\leaky_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1878691Z copying torch\include\ATen\ops\leaky_relu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1886098Z copying torch\include\ATen\ops\leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1893054Z copying torch\include\ATen\ops\leaky_relu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1899774Z copying torch\include\ATen\ops\leaky_relu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1906515Z copying torch\include\ATen\ops\leaky_relu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1913330Z copying torch\include\ATen\ops\leaky_relu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1924154Z copying torch\include\ATen\ops\leaky_relu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1931198Z copying torch\include\ATen\ops\leaky_relu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1938698Z copying torch\include\ATen\ops\leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1945346Z copying torch\include\ATen\ops\leaky_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1952335Z copying torch\include\ATen\ops\leaky_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1958766Z copying torch\include\ATen\ops\leaky_relu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1965512Z copying torch\include\ATen\ops\leaky_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1972430Z copying torch\include\ATen\ops\leaky_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1983369Z copying torch\include\ATen\ops\leaky_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1990521Z copying torch\include\ATen\ops\lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.1997647Z copying torch\include\ATen\ops\lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2004340Z copying torch\include\ATen\ops\lerp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2011190Z copying torch\include\ATen\ops\lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2018043Z copying torch\include\ATen\ops\lerp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2024858Z copying torch\include\ATen\ops\lerp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2031652Z copying torch\include\ATen\ops\lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2038530Z copying torch\include\ATen\ops\lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2044830Z copying torch\include\ATen\ops\less.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2051617Z copying torch\include\ATen\ops\less_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2058252Z copying torch\include\ATen\ops\less_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2069227Z copying torch\include\ATen\ops\less_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2075859Z copying torch\include\ATen\ops\less_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2082744Z copying torch\include\ATen\ops\less_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2089559Z copying torch\include\ATen\ops\less_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2096302Z copying torch\include\ATen\ops\less_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2103092Z copying torch\include\ATen\ops\le_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2110073Z copying torch\include\ATen\ops\le_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2116615Z copying torch\include\ATen\ops\le_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2127355Z copying torch\include\ATen\ops\le_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2134619Z copying torch\include\ATen\ops\le_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2141695Z copying torch\include\ATen\ops\le_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2148975Z copying torch\include\ATen\ops\le_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2160094Z copying torch\include\ATen\ops\lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2167001Z copying torch\include\ATen\ops\lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2173769Z copying torch\include\ATen\ops\lgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2180364Z copying torch\include\ATen\ops\lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2187520Z copying torch\include\ATen\ops\lgamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2194211Z copying torch\include\ATen\ops\lgamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2201052Z copying torch\include\ATen\ops\lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2207743Z copying torch\include\ATen\ops\lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2219040Z copying torch\include\ATen\ops\lift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2225616Z copying torch\include\ATen\ops\lift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2232297Z copying torch\include\ATen\ops\lift_fresh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2239086Z copying torch\include\ATen\ops\lift_fresh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2245514Z copying torch\include\ATen\ops\lift_fresh_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2253025Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2260152Z copying torch\include\ATen\ops\lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2266673Z copying torch\include\ATen\ops\lift_fresh_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2274160Z copying torch\include\ATen\ops\lift_fresh_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2280505Z copying torch\include\ATen\ops\lift_fresh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2286941Z copying torch\include\ATen\ops\lift_fresh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2293732Z copying torch\include\ATen\ops\lift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2300205Z copying torch\include\ATen\ops\lift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2306590Z copying torch\include\ATen\ops\linalg_cholesky.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2313586Z copying torch\include\ATen\ops\linalg_cholesky_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2319981Z copying torch\include\ATen\ops\linalg_cholesky_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2327147Z copying torch\include\ATen\ops\linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2333781Z copying torch\include\ATen\ops\linalg_cholesky_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2340490Z copying torch\include\ATen\ops\linalg_cholesky_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2347288Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2354074Z copying torch\include\ATen\ops\linalg_cholesky_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2360750Z copying torch\include\ATen\ops\linalg_cholesky_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2367460Z copying torch\include\ATen\ops\linalg_cholesky_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2374305Z copying torch\include\ATen\ops\linalg_cholesky_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2385277Z copying torch\include\ATen\ops\linalg_cholesky_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2391921Z copying torch\include\ATen\ops\linalg_cond.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2399777Z copying torch\include\ATen\ops\linalg_cond_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2406232Z copying torch\include\ATen\ops\linalg_cond_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2413476Z copying torch\include\ATen\ops\linalg_cond_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2420109Z copying torch\include\ATen\ops\linalg_cross.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2427084Z copying torch\include\ATen\ops\linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2466354Z copying torch\include\ATen\ops\linalg_cross_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2473015Z copying torch\include\ATen\ops\linalg_cross_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2479840Z copying torch\include\ATen\ops\linalg_cross_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2487453Z copying torch\include\ATen\ops\linalg_cross_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2494869Z copying torch\include\ATen\ops\linalg_cross_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2506437Z copying torch\include\ATen\ops\linalg_cross_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2512409Z copying torch\include\ATen\ops\linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2519728Z copying torch\include\ATen\ops\linalg_det_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2526582Z copying torch\include\ATen\ops\linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2537855Z copying torch\include\ATen\ops\linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2544817Z copying torch\include\ATen\ops\linalg_diagonal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2552594Z copying torch\include\ATen\ops\linalg_diagonal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2558793Z copying torch\include\ATen\ops\linalg_diagonal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2565540Z copying torch\include\ATen\ops\linalg_diagonal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2572399Z copying torch\include\ATen\ops\linalg_eig.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2579259Z copying torch\include\ATen\ops\linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2587170Z copying torch\include\ATen\ops\linalg_eigh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2593896Z copying torch\include\ATen\ops\linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2600858Z copying torch\include\ATen\ops\linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2607796Z copying torch\include\ATen\ops\linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2615818Z copying torch\include\ATen\ops\linalg_eigvalsh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2622261Z copying torch\include\ATen\ops\linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2644035Z copying torch\include\ATen\ops\linalg_eigvalsh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2644844Z copying torch\include\ATen\ops\linalg_eigvalsh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2645938Z copying torch\include\ATen\ops\linalg_eigvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2652124Z copying torch\include\ATen\ops\linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2658983Z copying torch\include\ATen\ops\linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2666393Z copying torch\include\ATen\ops\linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2672839Z copying torch\include\ATen\ops\linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2679687Z copying torch\include\ATen\ops\linalg_eig_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2686654Z copying torch\include\ATen\ops\linalg_eig_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2695258Z copying torch\include\ATen\ops\linalg_eig_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2700765Z copying torch\include\ATen\ops\linalg_eig_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2708002Z copying torch\include\ATen\ops\linalg_householder_product.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2714835Z copying torch\include\ATen\ops\linalg_householder_product_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2722249Z copying torch\include\ATen\ops\linalg_householder_product_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2729305Z copying torch\include\ATen\ops\linalg_householder_product_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2736357Z copying torch\include\ATen\ops\linalg_householder_product_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2743004Z copying torch\include\ATen\ops\linalg_inv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2750036Z copying torch\include\ATen\ops\linalg_inv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2756484Z copying torch\include\ATen\ops\linalg_inv_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2763796Z copying torch\include\ATen\ops\linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2770137Z copying torch\include\ATen\ops\linalg_inv_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2776927Z copying torch\include\ATen\ops\linalg_inv_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2783399Z copying torch\include\ATen\ops\linalg_inv_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2794060Z copying torch\include\ATen\ops\linalg_inv_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2801111Z copying torch\include\ATen\ops\linalg_inv_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2807707Z copying torch\include\ATen\ops\linalg_inv_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2814411Z copying torch\include\ATen\ops\linalg_inv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2820626Z copying torch\include\ATen\ops\linalg_inv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2827319Z copying torch\include\ATen\ops\linalg_ldl_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2834100Z copying torch\include\ATen\ops\linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2840565Z copying torch\include\ATen\ops\linalg_ldl_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2851919Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2858966Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2865737Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2872631Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2879432Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2886120Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2892990Z copying torch\include\ATen\ops\linalg_ldl_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2899698Z copying torch\include\ATen\ops\linalg_ldl_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2906438Z copying torch\include\ATen\ops\linalg_ldl_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2913344Z copying torch\include\ATen\ops\linalg_ldl_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2920504Z copying torch\include\ATen\ops\linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2927165Z copying torch\include\ATen\ops\linalg_ldl_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2934602Z copying torch\include\ATen\ops\linalg_ldl_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2941278Z copying torch\include\ATen\ops\linalg_ldl_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2948042Z copying torch\include\ATen\ops\linalg_ldl_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2955435Z copying torch\include\ATen\ops\linalg_ldl_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2966316Z copying torch\include\ATen\ops\linalg_ldl_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2973013Z copying torch\include\ATen\ops\linalg_lstsq.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2979914Z copying torch\include\ATen\ops\linalg_lstsq_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2986606Z copying torch\include\ATen\ops\linalg_lstsq_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.2993508Z copying torch\include\ATen\ops\linalg_lstsq_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3000145Z copying torch\include\ATen\ops\linalg_lstsq_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3179385Z copying torch\include\ATen\ops\linalg_lstsq_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3186702Z copying torch\include\ATen\ops\linalg_lu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3198395Z copying torch\include\ATen\ops\linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3206498Z copying torch\include\ATen\ops\linalg_lu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3213189Z copying torch\include\ATen\ops\linalg_lu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3218984Z copying torch\include\ATen\ops\linalg_lu_factor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3234721Z copying torch\include\ATen\ops\linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3241858Z copying torch\include\ATen\ops\linalg_lu_factor_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3248918Z copying torch\include\ATen\ops\linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3255685Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3267292Z copying torch\include\ATen\ops\linalg_lu_factor_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3274177Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3281350Z copying torch\include\ATen\ops\linalg_lu_factor_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3287915Z copying torch\include\ATen\ops\linalg_lu_factor_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3299774Z copying torch\include\ATen\ops\linalg_lu_factor_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3306436Z copying torch\include\ATen\ops\linalg_lu_factor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3313165Z copying torch\include\ATen\ops\linalg_lu_factor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3320119Z copying torch\include\ATen\ops\linalg_lu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3326860Z copying torch\include\ATen\ops\linalg_lu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3333728Z copying torch\include\ATen\ops\linalg_lu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3340593Z copying torch\include\ATen\ops\linalg_lu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3347497Z copying torch\include\ATen\ops\linalg_lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3354918Z copying torch\include\ATen\ops\linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3361581Z copying torch\include\ATen\ops\linalg_lu_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3368407Z copying torch\include\ATen\ops\linalg_lu_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3375229Z copying torch\include\ATen\ops\linalg_lu_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3386738Z copying torch\include\ATen\ops\linalg_lu_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3401329Z copying torch\include\ATen\ops\linalg_lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3403542Z copying torch\include\ATen\ops\linalg_lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3411095Z copying torch\include\ATen\ops\linalg_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3418280Z copying torch\include\ATen\ops\linalg_matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3425073Z copying torch\include\ATen\ops\linalg_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3431737Z copying torch\include\ATen\ops\linalg_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3439611Z copying torch\include\ATen\ops\linalg_matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3452738Z copying torch\include\ATen\ops\linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3459761Z copying torch\include\ATen\ops\linalg_matrix_exp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3466865Z copying torch\include\ATen\ops\linalg_matrix_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3473582Z copying torch\include\ATen\ops\linalg_matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3480266Z copying torch\include\ATen\ops\linalg_matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3486905Z copying torch\include\ATen\ops\linalg_matrix_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3494148Z copying torch\include\ATen\ops\linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3501046Z copying torch\include\ATen\ops\linalg_matrix_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3512547Z copying torch\include\ATen\ops\linalg_matrix_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3519287Z copying torch\include\ATen\ops\linalg_matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3526316Z copying torch\include\ATen\ops\linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3533082Z copying torch\include\ATen\ops\linalg_matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3540104Z copying torch\include\ATen\ops\linalg_matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3547302Z copying torch\include\ATen\ops\linalg_matrix_rank.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3554527Z copying torch\include\ATen\ops\linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3562555Z copying torch\include\ATen\ops\linalg_matrix_rank_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3568580Z copying torch\include\ATen\ops\linalg_matrix_rank_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3575437Z copying torch\include\ATen\ops\linalg_multi_dot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3582559Z copying torch\include\ATen\ops\linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3589516Z copying torch\include\ATen\ops\linalg_multi_dot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3597379Z copying torch\include\ATen\ops\linalg_multi_dot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3603559Z copying torch\include\ATen\ops\linalg_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3610693Z copying torch\include\ATen\ops\linalg_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3628547Z copying torch\include\ATen\ops\linalg_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3642021Z copying torch\include\ATen\ops\linalg_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3648931Z copying torch\include\ATen\ops\linalg_pinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3656744Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3663608Z copying torch\include\ATen\ops\linalg_pinv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3675603Z copying torch\include\ATen\ops\linalg_pinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3683972Z copying torch\include\ATen\ops\linalg_pinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3689546Z copying torch\include\ATen\ops\linalg_pinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3697200Z copying torch\include\ATen\ops\linalg_qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3704587Z copying torch\include\ATen\ops\linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3711344Z copying torch\include\ATen\ops\linalg_qr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3718009Z copying torch\include\ATen\ops\linalg_qr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3724685Z copying torch\include\ATen\ops\linalg_qr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3731425Z copying torch\include\ATen\ops\linalg_qr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3738160Z copying torch\include\ATen\ops\linalg_qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3744939Z copying torch\include\ATen\ops\linalg_qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3751808Z copying torch\include\ATen\ops\linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3764288Z copying torch\include\ATen\ops\linalg_slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3770916Z copying torch\include\ATen\ops\linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3777855Z copying torch\include\ATen\ops\linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3784680Z copying torch\include\ATen\ops\linalg_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3791700Z copying torch\include\ATen\ops\linalg_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3798680Z copying torch\include\ATen\ops\linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3805958Z copying torch\include\ATen\ops\linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3812602Z copying torch\include\ATen\ops\linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3819397Z copying torch\include\ATen\ops\linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3826069Z copying torch\include\ATen\ops\linalg_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3837878Z copying torch\include\ATen\ops\linalg_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3839411Z copying torch\include\ATen\ops\linalg_solve_triangular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3846308Z copying torch\include\ATen\ops\linalg_solve_triangular_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3853597Z copying torch\include\ATen\ops\linalg_solve_triangular_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3860322Z copying torch\include\ATen\ops\linalg_solve_triangular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3867100Z copying torch\include\ATen\ops\linalg_solve_triangular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3873705Z copying torch\include\ATen\ops\linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3880454Z copying torch\include\ATen\ops\linalg_svdvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3887504Z copying torch\include\ATen\ops\linalg_svdvals_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3894909Z copying torch\include\ATen\ops\linalg_svdvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3901662Z copying torch\include\ATen\ops\linalg_svdvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3908509Z copying torch\include\ATen\ops\linalg_svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3915214Z copying torch\include\ATen\ops\linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3922123Z copying torch\include\ATen\ops\linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3932972Z copying torch\include\ATen\ops\linalg_tensorinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3941339Z copying torch\include\ATen\ops\linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3948420Z copying torch\include\ATen\ops\linalg_tensorinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3955295Z copying torch\include\ATen\ops\linalg_tensorinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3962280Z copying torch\include\ATen\ops\linalg_tensorsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3969993Z copying torch\include\ATen\ops\linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3977429Z copying torch\include\ATen\ops\linalg_tensorsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3983830Z copying torch\include\ATen\ops\linalg_tensorsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3990678Z copying torch\include\ATen\ops\linalg_vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.3998031Z copying torch\include\ATen\ops\linalg_vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4005058Z copying torch\include\ATen\ops\linalg_vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4011467Z copying torch\include\ATen\ops\linalg_vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4022618Z copying torch\include\ATen\ops\linalg_vecdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4029763Z copying torch\include\ATen\ops\linalg_vecdot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4062863Z copying torch\include\ATen\ops\linalg_vecdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4069723Z copying torch\include\ATen\ops\linalg_vecdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4076733Z copying torch\include\ATen\ops\linalg_vector_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4084206Z copying torch\include\ATen\ops\linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4090895Z copying torch\include\ATen\ops\linalg_vector_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4097824Z copying torch\include\ATen\ops\linalg_vector_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4104692Z copying torch\include\ATen\ops\linalg_vector_norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4111693Z copying torch\include\ATen\ops\linalg_vector_norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4120076Z copying torch\include\ATen\ops\linalg_vector_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4126949Z copying torch\include\ATen\ops\linalg_vector_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4134517Z copying torch\include\ATen\ops\linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4141255Z copying torch\include\ATen\ops\linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4156804Z copying torch\include\ATen\ops\linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4157779Z copying torch\include\ATen\ops\linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4163584Z copying torch\include\ATen\ops\linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4170747Z copying torch\include\ATen\ops\linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4177804Z copying torch\include\ATen\ops\linear_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4185193Z copying torch\include\ATen\ops\linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4192264Z copying torch\include\ATen\ops\linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4199278Z copying torch\include\ATen\ops\linspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4207521Z copying torch\include\ATen\ops\linspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4212943Z copying torch\include\ATen\ops\linspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4219937Z copying torch\include\ATen\ops\linspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4226598Z copying torch\include\ATen\ops\linspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4233206Z copying torch\include\ATen\ops\linspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4240102Z copying torch\include\ATen\ops\linspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4246691Z copying torch\include\ATen\ops\log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4253756Z copying torch\include\ATen\ops\log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4260944Z copying torch\include\ATen\ops\log10_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4267379Z copying torch\include\ATen\ops\log10_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4274242Z copying torch\include\ATen\ops\log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4280880Z copying torch\include\ATen\ops\log10_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4287181Z copying torch\include\ATen\ops\log10_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4293730Z copying torch\include\ATen\ops\log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4305137Z copying torch\include\ATen\ops\log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4311646Z copying torch\include\ATen\ops\log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4318567Z copying torch\include\ATen\ops\log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4325463Z copying torch\include\ATen\ops\log1p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4332167Z copying torch\include\ATen\ops\log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4338598Z copying torch\include\ATen\ops\log1p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4344801Z copying torch\include\ATen\ops\log1p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4351342Z copying torch\include\ATen\ops\log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4357905Z copying torch\include\ATen\ops\log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4364821Z copying torch\include\ATen\ops\log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4371519Z copying torch\include\ATen\ops\log2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4378184Z copying torch\include\ATen\ops\log2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4384683Z copying torch\include\ATen\ops\log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4391190Z copying torch\include\ATen\ops\log2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4397579Z copying torch\include\ATen\ops\log2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4404112Z copying torch\include\ATen\ops\log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4410586Z copying torch\include\ATen\ops\log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4416996Z copying torch\include\ATen\ops\logaddexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4423552Z copying torch\include\ATen\ops\logaddexp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4430710Z copying torch\include\ATen\ops\logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4437415Z copying torch\include\ATen\ops\logaddexp2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4444242Z copying torch\include\ATen\ops\logaddexp2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4451003Z copying torch\include\ATen\ops\logaddexp2_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4458541Z copying torch\include\ATen\ops\logaddexp2_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4465226Z copying torch\include\ATen\ops\logaddexp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4471976Z copying torch\include\ATen\ops\logaddexp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4479233Z copying torch\include\ATen\ops\logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4486867Z copying torch\include\ATen\ops\logaddexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4492931Z copying torch\include\ATen\ops\logaddexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4499753Z copying torch\include\ATen\ops\logaddexp_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4506725Z copying torch\include\ATen\ops\logaddexp_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4513528Z copying torch\include\ATen\ops\logaddexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4521683Z copying torch\include\ATen\ops\logaddexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4528351Z copying torch\include\ATen\ops\logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4535674Z copying torch\include\ATen\ops\logcumsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4542638Z copying torch\include\ATen\ops\logcumsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4550371Z copying torch\include\ATen\ops\logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4556709Z copying torch\include\ATen\ops\logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4563518Z copying torch\include\ATen\ops\logdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4570139Z copying torch\include\ATen\ops\logdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4576936Z copying torch\include\ATen\ops\logdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4584723Z copying torch\include\ATen\ops\logdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4590863Z copying torch\include\ATen\ops\logical_and.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4597643Z copying torch\include\ATen\ops\logical_and_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4604401Z copying torch\include\ATen\ops\logical_and_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4611073Z copying torch\include\ATen\ops\logical_and_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4618991Z copying torch\include\ATen\ops\logical_and_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4625199Z copying torch\include\ATen\ops\logical_and_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4649461Z copying torch\include\ATen\ops\logical_not.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4650341Z copying torch\include\ATen\ops\logical_not_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4651249Z copying torch\include\ATen\ops\logical_not_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4677628Z copying torch\include\ATen\ops\logical_not_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4684792Z copying torch\include\ATen\ops\logical_not_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4690793Z copying torch\include\ATen\ops\logical_not_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4697708Z copying torch\include\ATen\ops\logical_or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4705410Z copying torch\include\ATen\ops\logical_or_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4718291Z copying torch\include\ATen\ops\logical_or_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4725054Z copying torch\include\ATen\ops\logical_or_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4731941Z copying torch\include\ATen\ops\logical_or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4739050Z copying torch\include\ATen\ops\logical_or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4745825Z copying torch\include\ATen\ops\logical_xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4752872Z copying torch\include\ATen\ops\logical_xor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4759849Z copying torch\include\ATen\ops\logical_xor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4766568Z copying torch\include\ATen\ops\logical_xor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4773532Z copying torch\include\ATen\ops\logical_xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4780323Z copying torch\include\ATen\ops\logical_xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4787256Z copying torch\include\ATen\ops\logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4793706Z copying torch\include\ATen\ops\logit_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4800648Z copying torch\include\ATen\ops\logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4807942Z copying torch\include\ATen\ops\logit_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4814786Z copying torch\include\ATen\ops\logit_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4821388Z copying torch\include\ATen\ops\logit_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4828457Z copying torch\include\ATen\ops\logit_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4835056Z copying torch\include\ATen\ops\logit_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4841835Z copying torch\include\ATen\ops\logit_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4848653Z copying torch\include\ATen\ops\logit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4855639Z copying torch\include\ATen\ops\logit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4862414Z copying torch\include\ATen\ops\logit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4869235Z copying torch\include\ATen\ops\logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4875975Z copying torch\include\ATen\ops\logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4882746Z copying torch\include\ATen\ops\logspace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4889669Z copying torch\include\ATen\ops\logspace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4896720Z copying torch\include\ATen\ops\logspace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4903640Z copying torch\include\ATen\ops\logspace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4916438Z copying torch\include\ATen\ops\logspace_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4923238Z copying torch\include\ATen\ops\logspace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4929707Z copying torch\include\ATen\ops\logspace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4936676Z copying torch\include\ATen\ops\logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4943851Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4952250Z copying torch\include\ATen\ops\logsumexp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4958431Z copying torch\include\ATen\ops\logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4965561Z copying torch\include\ATen\ops\logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4972549Z copying torch\include\ATen\ops\logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4980768Z copying torch\include\ATen\ops\log_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4986683Z copying torch\include\ATen\ops\log_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4993268Z copying torch\include\ATen\ops\log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.4999954Z copying torch\include\ATen\ops\log_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5006348Z copying torch\include\ATen\ops\log_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5013437Z copying torch\include\ATen\ops\log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5021108Z copying torch\include\ATen\ops\log_normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5027333Z copying torch\include\ATen\ops\log_normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5034588Z copying torch\include\ATen\ops\log_normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5041324Z copying torch\include\ATen\ops\log_normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5048227Z copying torch\include\ATen\ops\log_normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5061542Z copying torch\include\ATen\ops\log_normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5067698Z copying torch\include\ATen\ops\log_normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5075057Z copying torch\include\ATen\ops\log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5081509Z copying torch\include\ATen\ops\log_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5088304Z copying torch\include\ATen\ops\log_sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5096281Z copying torch\include\ATen\ops\log_sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5132755Z copying torch\include\ATen\ops\log_sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5139681Z copying torch\include\ATen\ops\log_sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5147606Z copying torch\include\ATen\ops\log_sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5155878Z copying torch\include\ATen\ops\log_sigmoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5162315Z copying torch\include\ATen\ops\log_sigmoid_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5168416Z copying torch\include\ATen\ops\log_sigmoid_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5175436Z copying torch\include\ATen\ops\log_sigmoid_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5182554Z copying torch\include\ATen\ops\log_sigmoid_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5189235Z copying torch\include\ATen\ops\log_sigmoid_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5196887Z copying torch\include\ATen\ops\log_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5208120Z copying torch\include\ATen\ops\log_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5214828Z copying torch\include\ATen\ops\log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5221790Z copying torch\include\ATen\ops\log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5228296Z copying torch\include\ATen\ops\log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5234694Z copying torch\include\ATen\ops\log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5241097Z copying torch\include\ATen\ops\log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5247612Z copying torch\include\ATen\ops\lshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5254138Z copying torch\include\ATen\ops\lshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5264780Z copying torch\include\ATen\ops\lshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5271470Z copying torch\include\ATen\ops\lshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5277932Z copying torch\include\ATen\ops\lshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5284285Z copying torch\include\ATen\ops\lshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5291075Z copying torch\include\ATen\ops\lshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5298257Z copying torch\include\ATen\ops\lstm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5304725Z copying torch\include\ATen\ops\lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5311355Z copying torch\include\ATen\ops\lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5317926Z copying torch\include\ATen\ops\lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5324268Z copying torch\include\ATen\ops\lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5331113Z copying torch\include\ATen\ops\lstm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5337818Z copying torch\include\ATen\ops\lstm_mps_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5344765Z copying torch\include\ATen\ops\lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5351425Z copying torch\include\ATen\ops\lstm_mps_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5357833Z copying torch\include\ATen\ops\lstm_mps_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5364629Z copying torch\include\ATen\ops\lstm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5370999Z copying torch\include\ATen\ops\lstm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5377397Z copying torch\include\ATen\ops\lt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5384204Z copying torch\include\ATen\ops\lt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5390639Z copying torch\include\ATen\ops\lt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5401766Z copying torch\include\ATen\ops\lt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5408315Z copying torch\include\ATen\ops\lt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5414984Z copying torch\include\ATen\ops\lt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5421225Z copying torch\include\ATen\ops\lt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5432088Z copying torch\include\ATen\ops\lt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5439369Z copying torch\include\ATen\ops\lu_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5445492Z copying torch\include\ATen\ops\lu_solve_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5451457Z copying torch\include\ATen\ops\lu_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5458041Z copying torch\include\ATen\ops\lu_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5464901Z copying torch\include\ATen\ops\lu_unpack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5472467Z copying torch\include\ATen\ops\lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5479924Z copying torch\include\ATen\ops\lu_unpack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5485887Z copying torch\include\ATen\ops\lu_unpack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5492499Z copying torch\include\ATen\ops\lu_unpack_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5499163Z copying torch\include\ATen\ops\lu_unpack_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5505642Z copying torch\include\ATen\ops\lu_unpack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5512145Z copying torch\include\ATen\ops\lu_unpack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5519723Z copying torch\include\ATen\ops\margin_ranking_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5526029Z copying torch\include\ATen\ops\margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5531944Z copying torch\include\ATen\ops\margin_ranking_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5543170Z copying torch\include\ATen\ops\margin_ranking_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5549914Z copying torch\include\ATen\ops\masked_fill.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5556276Z copying torch\include\ATen\ops\masked_fill_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5563004Z copying torch\include\ATen\ops\masked_fill_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5575653Z copying torch\include\ATen\ops\masked_fill_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5583388Z copying torch\include\ATen\ops\masked_fill_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5589499Z copying torch\include\ATen\ops\masked_fill_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5596298Z copying torch\include\ATen\ops\masked_fill_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5603093Z copying torch\include\ATen\ops\masked_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5610006Z copying torch\include\ATen\ops\masked_scatter_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5618174Z copying torch\include\ATen\ops\masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5653745Z copying torch\include\ATen\ops\masked_scatter_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5660994Z copying torch\include\ATen\ops\masked_scatter_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5669406Z copying torch\include\ATen\ops\masked_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5674796Z copying torch\include\ATen\ops\masked_scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5681609Z copying torch\include\ATen\ops\masked_scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5688200Z copying torch\include\ATen\ops\masked_scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5694844Z copying torch\include\ATen\ops\masked_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5701839Z copying torch\include\ATen\ops\masked_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5708330Z copying torch\include\ATen\ops\masked_select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5715298Z copying torch\include\ATen\ops\masked_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5722295Z copying torch\include\ATen\ops\masked_select_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5729426Z copying torch\include\ATen\ops\masked_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5738808Z copying torch\include\ATen\ops\masked_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5745429Z copying torch\include\ATen\ops\masked_select_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5752155Z copying torch\include\ATen\ops\masked_select_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5758991Z copying torch\include\ATen\ops\masked_select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5765613Z copying torch\include\ATen\ops\masked_select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5772322Z copying torch\include\ATen\ops\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5778765Z copying torch\include\ATen\ops\matmul_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5786109Z copying torch\include\ATen\ops\matmul_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5792756Z copying torch\include\ATen\ops\matmul_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5799593Z copying torch\include\ATen\ops\matmul_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5808160Z copying torch\include\ATen\ops\matmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5814762Z copying torch\include\ATen\ops\matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5821704Z copying torch\include\ATen\ops\matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5833463Z copying torch\include\ATen\ops\matrix_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5840392Z copying torch\include\ATen\ops\matrix_exp_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5848463Z copying torch\include\ATen\ops\matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5854959Z copying torch\include\ATen\ops\matrix_exp_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5861493Z copying torch\include\ATen\ops\matrix_exp_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5868535Z copying torch\include\ATen\ops\matrix_exp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5875411Z copying torch\include\ATen\ops\matrix_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5882705Z copying torch\include\ATen\ops\matrix_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5894370Z copying torch\include\ATen\ops\matrix_H.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5900911Z copying torch\include\ATen\ops\matrix_H_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5907757Z copying torch\include\ATen\ops\matrix_H_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5914248Z copying torch\include\ATen\ops\matrix_H_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5925453Z copying torch\include\ATen\ops\matrix_power.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5933124Z copying torch\include\ATen\ops\matrix_power_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5940387Z copying torch\include\ATen\ops\matrix_power_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5946842Z copying torch\include\ATen\ops\matrix_power_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5958528Z copying torch\include\ATen\ops\max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5964853Z copying torch\include\ATen\ops\maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5971743Z copying torch\include\ATen\ops\maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5978335Z copying torch\include\ATen\ops\maximum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5986207Z copying torch\include\ATen\ops\maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5992264Z copying torch\include\ATen\ops\maximum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.5998984Z copying torch\include\ATen\ops\maximum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6006550Z copying torch\include\ATen\ops\maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6013489Z copying torch\include\ATen\ops\maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6021171Z copying torch\include\ATen\ops\max_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6027594Z copying torch\include\ATen\ops\max_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6034358Z copying torch\include\ATen\ops\max_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6041323Z copying torch\include\ATen\ops\max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6048021Z copying torch\include\ATen\ops\max_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6055578Z copying torch\include\ATen\ops\max_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6061704Z copying torch\include\ATen\ops\max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6073353Z copying torch\include\ATen\ops\max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6079877Z copying torch\include\ATen\ops\max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6086895Z copying torch\include\ATen\ops\max_pool1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6093790Z copying torch\include\ATen\ops\max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6101730Z copying torch\include\ATen\ops\max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6108062Z copying torch\include\ATen\ops\max_pool1d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6115386Z copying torch\include\ATen\ops\max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6122101Z copying torch\include\ATen\ops\max_pool1d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6128945Z copying torch\include\ATen\ops\max_pool1d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6135585Z copying torch\include\ATen\ops\max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6142431Z copying torch\include\ATen\ops\max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6149408Z copying torch\include\ATen\ops\max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6161262Z copying torch\include\ATen\ops\max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6167966Z copying torch\include\ATen\ops\max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6175443Z copying torch\include\ATen\ops\max_pool2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6182027Z copying torch\include\ATen\ops\max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6193749Z copying torch\include\ATen\ops\max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6200712Z copying torch\include\ATen\ops\max_pool2d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6207934Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6218379Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6262569Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6263682Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6264615Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6265605Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6266555Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6268908Z copying torch\include\ATen\ops\max_pool2d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6272908Z copying torch\include\ATen\ops\max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6280958Z copying torch\include\ATen\ops\max_pool2d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6286663Z copying torch\include\ATen\ops\max_pool2d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6293751Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6300800Z copying torch\include\ATen\ops\max_pool2d_with_indices_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6307503Z copying torch\include\ATen\ops\max_pool2d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6315136Z copying torch\include\ATen\ops\max_pool2d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6321775Z copying torch\include\ATen\ops\max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6328801Z copying torch\include\ATen\ops\max_pool3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6335692Z copying torch\include\ATen\ops\max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6347194Z copying torch\include\ATen\ops\max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6361993Z copying torch\include\ATen\ops\max_pool3d_with_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6369371Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6376316Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6387590Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6394635Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6401302Z copying torch\include\ATen\ops\max_pool3d_with_indices_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6408057Z copying torch\include\ATen\ops\max_pool3d_with_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6419774Z copying torch\include\ATen\ops\max_pool3d_with_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6426471Z copying torch\include\ATen\ops\max_pool3d_with_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6433014Z copying torch\include\ATen\ops\max_pool3d_with_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6439851Z copying torch\include\ATen\ops\max_unpool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6446527Z copying torch\include\ATen\ops\max_unpool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6453319Z copying torch\include\ATen\ops\max_unpool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6459888Z copying torch\include\ATen\ops\max_unpool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6467036Z copying torch\include\ATen\ops\max_unpool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6473625Z copying torch\include\ATen\ops\max_unpool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6480442Z copying torch\include\ATen\ops\max_unpool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6487433Z copying torch\include\ATen\ops\max_unpool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6494180Z copying torch\include\ATen\ops\max_unpool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6504965Z copying torch\include\ATen\ops\max_unpool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6511642Z copying torch\include\ATen\ops\mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6518364Z copying torch\include\ATen\ops\mean_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6525055Z copying torch\include\ATen\ops\mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6531889Z copying torch\include\ATen\ops\mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6538295Z copying torch\include\ATen\ops\mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6544858Z copying torch\include\ATen\ops\mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6551562Z copying torch\include\ATen\ops\mean_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6563497Z copying torch\include\ATen\ops\mean_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6569870Z copying torch\include\ATen\ops\mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6576399Z copying torch\include\ATen\ops\mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6582475Z copying torch\include\ATen\ops\median.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6588793Z copying torch\include\ATen\ops\median_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6595201Z copying torch\include\ATen\ops\median_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6602381Z copying torch\include\ATen\ops\median_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6609086Z copying torch\include\ATen\ops\median_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6615857Z copying torch\include\ATen\ops\median_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6653080Z copying torch\include\ATen\ops\median_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6659468Z copying torch\include\ATen\ops\meshgrid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6665795Z copying torch\include\ATen\ops\meshgrid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6672117Z copying torch\include\ATen\ops\meshgrid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6678493Z copying torch\include\ATen\ops\meshgrid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6684727Z copying torch\include\ATen\ops\mH.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6690783Z copying torch\include\ATen\ops\mH_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6697008Z copying torch\include\ATen\ops\mH_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6703026Z copying torch\include\ATen\ops\mH_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6709021Z copying torch\include\ATen\ops\min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6714969Z copying torch\include\ATen\ops\minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6721388Z copying torch\include\ATen\ops\minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6727751Z copying torch\include\ATen\ops\minimum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6734194Z copying torch\include\ATen\ops\minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6740544Z copying torch\include\ATen\ops\minimum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6751543Z copying torch\include\ATen\ops\minimum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6758377Z copying torch\include\ATen\ops\minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6764684Z copying torch\include\ATen\ops\minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6771552Z copying torch\include\ATen\ops\min_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6778763Z copying torch\include\ATen\ops\min_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6785535Z copying torch\include\ATen\ops\min_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6792085Z copying torch\include\ATen\ops\min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6798769Z copying torch\include\ATen\ops\min_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6805076Z copying torch\include\ATen\ops\min_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6811615Z copying torch\include\ATen\ops\min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6818163Z copying torch\include\ATen\ops\min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6824463Z copying torch\include\ATen\ops\miopen_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6836063Z copying torch\include\ATen\ops\miopen_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6843169Z copying torch\include\ATen\ops\miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6849789Z copying torch\include\ATen\ops\miopen_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6856897Z copying torch\include\ATen\ops\miopen_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6863860Z copying torch\include\ATen\ops\miopen_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6871201Z copying torch\include\ATen\ops\miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6879154Z copying torch\include\ATen\ops\miopen_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6885297Z copying torch\include\ATen\ops\miopen_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6892259Z copying torch\include\ATen\ops\miopen_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6899149Z copying torch\include\ATen\ops\miopen_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6906390Z copying torch\include\ATen\ops\miopen_convolution_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6913911Z copying torch\include\ATen\ops\miopen_convolution_add_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6926180Z copying torch\include\ATen\ops\miopen_convolution_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6933275Z copying torch\include\ATen\ops\miopen_convolution_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6940376Z copying torch\include\ATen\ops\miopen_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6948666Z copying torch\include\ATen\ops\miopen_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6955669Z copying torch\include\ATen\ops\miopen_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6962610Z copying torch\include\ATen\ops\miopen_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6969705Z copying torch\include\ATen\ops\miopen_convolution_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6976622Z copying torch\include\ATen\ops\miopen_convolution_relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6983114Z copying torch\include\ATen\ops\miopen_convolution_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6989665Z copying torch\include\ATen\ops\miopen_convolution_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.6996187Z copying torch\include\ATen\ops\miopen_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7003133Z copying torch\include\ATen\ops\miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7010024Z copying torch\include\ATen\ops\miopen_convolution_transpose_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7016645Z copying torch\include\ATen\ops\miopen_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7023240Z copying torch\include\ATen\ops\miopen_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7030025Z copying torch\include\ATen\ops\miopen_depthwise_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7037525Z copying torch\include\ATen\ops\miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7044665Z copying torch\include\ATen\ops\miopen_depthwise_convolution_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7081374Z copying torch\include\ATen\ops\miopen_depthwise_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7088611Z copying torch\include\ATen\ops\miopen_depthwise_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7095301Z copying torch\include\ATen\ops\miopen_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7102159Z copying torch\include\ATen\ops\miopen_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7109508Z copying torch\include\ATen\ops\miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7116868Z copying torch\include\ATen\ops\miopen_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7128230Z copying torch\include\ATen\ops\miopen_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7134909Z copying torch\include\ATen\ops\miopen_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7141853Z copying torch\include\ATen\ops\miopen_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7148856Z copying torch\include\ATen\ops\miopen_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7160357Z copying torch\include\ATen\ops\miopen_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7167682Z copying torch\include\ATen\ops\miopen_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7175090Z copying torch\include\ATen\ops\mish.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7181848Z copying torch\include\ATen\ops\mish_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7188935Z copying torch\include\ATen\ops\mish_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7196134Z copying torch\include\ATen\ops\mish_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7202738Z copying torch\include\ATen\ops\mish_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7209535Z copying torch\include\ATen\ops\mish_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7220205Z copying torch\include\ATen\ops\mish_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7227556Z copying torch\include\ATen\ops\mish_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7234195Z copying torch\include\ATen\ops\mish_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7240844Z copying torch\include\ATen\ops\mish_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7247468Z copying torch\include\ATen\ops\mish_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7253826Z copying torch\include\ATen\ops\mish_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7260580Z copying torch\include\ATen\ops\mish_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7267172Z copying torch\include\ATen\ops\mish_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7273628Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7280268Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7287587Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7294222Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7301066Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7307994Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7314883Z copying torch\include\ATen\ops\mkldnn_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7321967Z copying torch\include\ATen\ops\mkldnn_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7335767Z copying torch\include\ATen\ops\mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7342785Z copying torch\include\ATen\ops\mkldnn_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7349858Z copying torch\include\ATen\ops\mkldnn_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7356315Z copying torch\include\ATen\ops\mkldnn_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7367301Z copying torch\include\ATen\ops\mkldnn_linear_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7374214Z copying torch\include\ATen\ops\mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7380994Z copying torch\include\ATen\ops\mkldnn_linear_backward_input.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7388251Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7395604Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7401878Z copying torch\include\ATen\ops\mkldnn_linear_backward_input_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7408401Z copying torch\include\ATen\ops\mkldnn_linear_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7415334Z copying torch\include\ATen\ops\mkldnn_linear_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7426714Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7433885Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7440882Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7449378Z copying torch\include\ATen\ops\mkldnn_linear_backward_weights_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7462059Z copying torch\include\ATen\ops\mkldnn_linear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7468884Z copying torch\include\ATen\ops\mkldnn_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7475776Z copying torch\include\ATen\ops\mkldnn_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7482277Z copying torch\include\ATen\ops\mkldnn_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7495791Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7503636Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7510468Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7517733Z copying torch\include\ATen\ops\mkldnn_max_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7529283Z copying torch\include\ATen\ops\mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7536797Z copying torch\include\ATen\ops\mkldnn_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7543744Z copying torch\include\ATen\ops\mkldnn_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7550720Z copying torch\include\ATen\ops\mkldnn_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7561630Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7569710Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7576845Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7583837Z copying torch\include\ATen\ops\mkldnn_max_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7590915Z copying torch\include\ATen\ops\mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7598335Z copying torch\include\ATen\ops\mkldnn_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7605372Z copying torch\include\ATen\ops\mkldnn_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7612764Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7619990Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7627745Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7634984Z copying torch\include\ATen\ops\mkldnn_reorder_conv2d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7671401Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7678694Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7686545Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7694108Z copying torch\include\ATen\ops\mkldnn_reorder_conv3d_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7701568Z copying torch\include\ATen\ops\mkldnn_rnn_layer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7709094Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7717132Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7724308Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7731071Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7742652Z copying torch\include\ATen\ops\mkldnn_rnn_layer_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7749728Z copying torch\include\ATen\ops\mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7756483Z copying torch\include\ATen\ops\mkldnn_rnn_layer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7763310Z copying torch\include\ATen\ops\mkldnn_rnn_layer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7778451Z copying torch\include\ATen\ops\mkldnn_rnn_layer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7785008Z copying torch\include\ATen\ops\mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7791826Z copying torch\include\ATen\ops\mm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7798187Z copying torch\include\ATen\ops\mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7805717Z copying torch\include\ATen\ops\mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7812394Z copying torch\include\ATen\ops\mm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7818639Z copying torch\include\ATen\ops\mm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7825422Z copying torch\include\ATen\ops\mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7832036Z copying torch\include\ATen\ops\mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7841798Z copying torch\include\ATen\ops\mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7848442Z copying torch\include\ATen\ops\mode_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7855172Z copying torch\include\ATen\ops\mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7861758Z copying torch\include\ATen\ops\mode_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7868387Z copying torch\include\ATen\ops\mode_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7875044Z copying torch\include\ATen\ops\mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7881506Z copying torch\include\ATen\ops\mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7887868Z copying torch\include\ATen\ops\moveaxis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7894652Z copying torch\include\ATen\ops\moveaxis_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7901161Z copying torch\include\ATen\ops\moveaxis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7907741Z copying torch\include\ATen\ops\moveaxis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7918718Z copying torch\include\ATen\ops\movedim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7925847Z copying torch\include\ATen\ops\movedim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7932482Z copying torch\include\ATen\ops\movedim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7939521Z copying torch\include\ATen\ops\movedim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7950978Z copying torch\include\ATen\ops\mps_convolution_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7958098Z copying torch\include\ATen\ops\mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7964856Z copying torch\include\ATen\ops\mps_convolution_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7971834Z copying torch\include\ATen\ops\mps_convolution_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7983022Z copying torch\include\ATen\ops\mps_convolution_transpose_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7990422Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.7997652Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8004772Z copying torch\include\ATen\ops\mps_convolution_transpose_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8011604Z copying torch\include\ATen\ops\mse_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8018202Z copying torch\include\ATen\ops\mse_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8030114Z copying torch\include\ATen\ops\mse_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8037157Z copying torch\include\ATen\ops\mse_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8044115Z copying torch\include\ATen\ops\mse_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8050882Z copying torch\include\ATen\ops\mse_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8058183Z copying torch\include\ATen\ops\mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8064873Z copying torch\include\ATen\ops\mse_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8072304Z copying torch\include\ATen\ops\mse_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8078925Z copying torch\include\ATen\ops\mse_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8085822Z copying torch\include\ATen\ops\mse_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8092908Z copying torch\include\ATen\ops\mse_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8104827Z copying torch\include\ATen\ops\mse_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8111622Z copying torch\include\ATen\ops\msort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8119023Z copying torch\include\ATen\ops\msort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8125606Z copying torch\include\ATen\ops\msort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8132236Z copying torch\include\ATen\ops\msort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8138701Z copying torch\include\ATen\ops\mT.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8145211Z copying torch\include\ATen\ops\mT_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8151991Z copying torch\include\ATen\ops\mT_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8159052Z copying torch\include\ATen\ops\mT_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8165841Z copying torch\include\ATen\ops\mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8172516Z copying torch\include\ATen\ops\multilabel_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8179639Z copying torch\include\ATen\ops\multilabel_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8241213Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8247842Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8256370Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8263138Z copying torch\include\ATen\ops\multilabel_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8274190Z copying torch\include\ATen\ops\multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8280866Z copying torch\include\ATen\ops\multilabel_margin_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8287996Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8294854Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8301900Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8310200Z copying torch\include\ATen\ops\multilabel_margin_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8319988Z copying torch\include\ATen\ops\multilabel_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8328261Z copying torch\include\ATen\ops\multilabel_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8342768Z copying torch\include\ATen\ops\multinomial.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8350671Z copying torch\include\ATen\ops\multinomial_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8360274Z copying torch\include\ATen\ops\multinomial_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8368645Z copying torch\include\ATen\ops\multinomial_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8378232Z copying torch\include\ATen\ops\multinomial_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8386301Z copying torch\include\ATen\ops\multiply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8395552Z copying torch\include\ATen\ops\multiply_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8403489Z copying torch\include\ATen\ops\multiply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8411522Z copying torch\include\ATen\ops\multiply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8420897Z copying torch\include\ATen\ops\multi_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8429169Z copying torch\include\ATen\ops\multi_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8438725Z copying torch\include\ATen\ops\multi_margin_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8446867Z copying torch\include\ATen\ops\multi_margin_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8456361Z copying torch\include\ATen\ops\multi_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8464549Z copying torch\include\ATen\ops\multi_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8474571Z copying torch\include\ATen\ops\multi_margin_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8482950Z copying torch\include\ATen\ops\multi_margin_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8492768Z copying torch\include\ATen\ops\multi_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8500828Z copying torch\include\ATen\ops\multi_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8510523Z copying torch\include\ATen\ops\mul_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8518469Z copying torch\include\ATen\ops\mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8527804Z copying torch\include\ATen\ops\mul_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8536089Z copying torch\include\ATen\ops\mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8545257Z copying torch\include\ATen\ops\mul_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8552796Z copying torch\include\ATen\ops\mul_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8561959Z copying torch\include\ATen\ops\mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8604126Z copying torch\include\ATen\ops\mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8610687Z copying torch\include\ATen\ops\mv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8621747Z copying torch\include\ATen\ops\mvlgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8628399Z copying torch\include\ATen\ops\mvlgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8635147Z copying torch\include\ATen\ops\mvlgamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8642399Z copying torch\include\ATen\ops\mvlgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8649154Z copying torch\include\ATen\ops\mvlgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8656077Z copying torch\include\ATen\ops\mvlgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8663058Z copying torch\include\ATen\ops\mv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8669536Z copying torch\include\ATen\ops\mv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8676237Z copying torch\include\ATen\ops\mv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8682539Z copying torch\include\ATen\ops\nanmean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8689156Z copying torch\include\ATen\ops\nanmean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8695908Z copying torch\include\ATen\ops\nanmean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8702799Z copying torch\include\ATen\ops\nanmean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8709595Z copying torch\include\ATen\ops\nanmedian.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8716427Z copying torch\include\ATen\ops\nanmedian_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8723268Z copying torch\include\ATen\ops\nanmedian_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8730090Z copying torch\include\ATen\ops\nanmedian_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8736943Z copying torch\include\ATen\ops\nanmedian_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8744092Z copying torch\include\ATen\ops\nanmedian_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8750550Z copying torch\include\ATen\ops\nanmedian_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8757223Z copying torch\include\ATen\ops\nanquantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8764140Z copying torch\include\ATen\ops\nanquantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8770670Z copying torch\include\ATen\ops\nanquantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8777145Z copying torch\include\ATen\ops\nanquantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8788633Z copying torch\include\ATen\ops\nansum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8795332Z copying torch\include\ATen\ops\nansum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8801921Z copying torch\include\ATen\ops\nansum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8808541Z copying torch\include\ATen\ops\nansum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8814893Z copying torch\include\ATen\ops\nansum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8821115Z copying torch\include\ATen\ops\nan_to_num.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8827959Z copying torch\include\ATen\ops\nan_to_num_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8834613Z copying torch\include\ATen\ops\nan_to_num_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8846120Z copying torch\include\ATen\ops\nan_to_num_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8853118Z copying torch\include\ATen\ops\nan_to_num_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8859637Z copying torch\include\ATen\ops\nan_to_num_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8866023Z copying torch\include\ATen\ops\narrow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8872509Z copying torch\include\ATen\ops\narrow_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8879022Z copying torch\include\ATen\ops\narrow_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8886191Z copying torch\include\ATen\ops\narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8892865Z copying torch\include\ATen\ops\narrow_copy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8899726Z copying torch\include\ATen\ops\narrow_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8906597Z copying torch\include\ATen\ops\narrow_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8913220Z copying torch\include\ATen\ops\narrow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8920203Z copying torch\include\ATen\ops\narrow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8927047Z copying torch\include\ATen\ops\native_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8934385Z copying torch\include\ATen\ops\native_batch_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8941210Z copying torch\include\ATen\ops\native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8948310Z copying torch\include\ATen\ops\native_batch_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8955304Z copying torch\include\ATen\ops\native_batch_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8962539Z copying torch\include\ATen\ops\native_batch_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8969519Z copying torch\include\ATen\ops\native_batch_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8976720Z copying torch\include\ATen\ops\native_batch_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8984229Z copying torch\include\ATen\ops\native_batch_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8991358Z copying torch\include\ATen\ops\native_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.8998313Z copying torch\include\ATen\ops\native_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9005314Z copying torch\include\ATen\ops\native_channel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9012547Z copying torch\include\ATen\ops\native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9019500Z copying torch\include\ATen\ops\native_channel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9026480Z copying torch\include\ATen\ops\native_channel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9033679Z copying torch\include\ATen\ops\native_channel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9045240Z copying torch\include\ATen\ops\native_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9052227Z copying torch\include\ATen\ops\native_dropout_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9060449Z copying torch\include\ATen\ops\native_dropout_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9067272Z copying torch\include\ATen\ops\native_dropout_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9074248Z copying torch\include\ATen\ops\native_dropout_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9081840Z copying torch\include\ATen\ops\native_dropout_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9088344Z copying torch\include\ATen\ops\native_dropout_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9095953Z copying torch\include\ATen\ops\native_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9107060Z copying torch\include\ATen\ops\native_dropout_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9113955Z copying torch\include\ATen\ops\native_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9120767Z copying torch\include\ATen\ops\native_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9127742Z copying torch\include\ATen\ops\native_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9139625Z copying torch\include\ATen\ops\native_group_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9146983Z copying torch\include\ATen\ops\native_group_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9183436Z copying torch\include\ATen\ops\native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9190349Z copying torch\include\ATen\ops\native_group_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9202147Z copying torch\include\ATen\ops\native_group_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9209010Z copying torch\include\ATen\ops\native_group_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9216351Z copying torch\include\ATen\ops\native_group_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9223303Z copying torch\include\ATen\ops\native_group_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9234293Z copying torch\include\ATen\ops\native_group_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9241249Z copying torch\include\ATen\ops\native_group_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9248144Z copying torch\include\ATen\ops\native_group_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9254902Z copying torch\include\ATen\ops\native_group_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9270360Z copying torch\include\ATen\ops\native_layer_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9277255Z copying torch\include\ATen\ops\native_layer_norm_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9284602Z copying torch\include\ATen\ops\native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9291843Z copying torch\include\ATen\ops\native_layer_norm_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9303725Z copying torch\include\ATen\ops\native_layer_norm_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9311378Z copying torch\include\ATen\ops\native_layer_norm_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9317702Z copying torch\include\ATen\ops\native_layer_norm_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9324876Z copying torch\include\ATen\ops\native_layer_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9336265Z copying torch\include\ATen\ops\native_layer_norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9343011Z copying torch\include\ATen\ops\native_layer_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9349768Z copying torch\include\ATen\ops\native_layer_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9356542Z copying torch\include\ATen\ops\native_layer_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9363438Z copying torch\include\ATen\ops\native_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9370549Z copying torch\include\ATen\ops\native_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9377975Z copying torch\include\ATen\ops\native_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9384618Z copying torch\include\ATen\ops\native_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9459852Z copying torch\include\ATen\ops\ne.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9466179Z copying torch\include\ATen\ops\neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9473127Z copying torch\include\ATen\ops\negative.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9480535Z copying torch\include\ATen\ops\negative_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9491974Z copying torch\include\ATen\ops\negative_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9498759Z copying torch\include\ATen\ops\negative_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9505614Z copying torch\include\ATen\ops\neg_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9512031Z copying torch\include\ATen\ops\neg_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9524136Z copying torch\include\ATen\ops\neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9530913Z copying torch\include\ATen\ops\neg_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9537267Z copying torch\include\ATen\ops\neg_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9544049Z copying torch\include\ATen\ops\neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9554612Z copying torch\include\ATen\ops\neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9560759Z copying torch\include\ATen\ops\nested_to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9567812Z copying torch\include\ATen\ops\nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9575230Z copying torch\include\ATen\ops\nested_to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9582014Z copying torch\include\ATen\ops\nested_to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9588789Z copying torch\include\ATen\ops\new_empty.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9595908Z copying torch\include\ATen\ops\new_empty_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9602324Z copying torch\include\ATen\ops\new_empty_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9609024Z copying torch\include\ATen\ops\new_empty_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9615817Z copying torch\include\ATen\ops\new_empty_strided.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9623014Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9629974Z copying torch\include\ATen\ops\new_empty_strided_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9636898Z copying torch\include\ATen\ops\new_empty_strided_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9643621Z copying torch\include\ATen\ops\new_empty_strided_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9650350Z copying torch\include\ATen\ops\new_full.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9657110Z copying torch\include\ATen\ops\new_full_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9663782Z copying torch\include\ATen\ops\new_full_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9670295Z copying torch\include\ATen\ops\new_full_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9676926Z copying torch\include\ATen\ops\new_ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9684132Z copying torch\include\ATen\ops\new_ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9690742Z copying torch\include\ATen\ops\new_ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9697967Z copying torch\include\ATen\ops\new_ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9705167Z copying torch\include\ATen\ops\new_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9713192Z copying torch\include\ATen\ops\new_zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9720429Z copying torch\include\ATen\ops\new_zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9727678Z copying torch\include\ATen\ops\new_zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9734830Z copying torch\include\ATen\ops\nextafter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9741999Z copying torch\include\ATen\ops\nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9748991Z copying torch\include\ATen\ops\nextafter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9756047Z copying torch\include\ATen\ops\nextafter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9762682Z copying torch\include\ATen\ops\nextafter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9769573Z copying torch\include\ATen\ops\nextafter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9781937Z copying torch\include\ATen\ops\nextafter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9788670Z copying torch\include\ATen\ops\nextafter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9795687Z copying torch\include\ATen\ops\ne_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9802404Z copying torch\include\ATen\ops\ne_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9814020Z copying torch\include\ATen\ops\ne_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9820805Z copying torch\include\ATen\ops\ne_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9826812Z copying torch\include\ATen\ops\ne_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9833435Z copying torch\include\ATen\ops\ne_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9840036Z copying torch\include\ATen\ops\ne_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9846314Z copying torch\include\ATen\ops\nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9852765Z copying torch\include\ATen\ops\nll_loss2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9859410Z copying torch\include\ATen\ops\nll_loss2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9866212Z copying torch\include\ATen\ops\nll_loss2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9873156Z copying torch\include\ATen\ops\nll_loss2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9879798Z copying torch\include\ATen\ops\nll_loss2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9886605Z copying torch\include\ATen\ops\nll_loss2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9893958Z copying torch\include\ATen\ops\nll_loss2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9900388Z copying torch\include\ATen\ops\nll_loss2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9907412Z copying torch\include\ATen\ops\nll_loss2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9914159Z copying torch\include\ATen\ops\nll_loss2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9920984Z copying torch\include\ATen\ops\nll_loss2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9927776Z copying torch\include\ATen\ops\nll_loss2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9934696Z copying torch\include\ATen\ops\nll_loss2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9942425Z copying torch\include\ATen\ops\nll_loss2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9948760Z copying torch\include\ATen\ops\nll_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9956289Z copying torch\include\ATen\ops\nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9963332Z copying torch\include\ATen\ops\nll_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9971637Z copying torch\include\ATen\ops\nll_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9977689Z copying torch\include\ATen\ops\nll_loss_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9984605Z copying torch\include\ATen\ops\nll_loss_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9991556Z copying torch\include\ATen\ops\nll_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:47.9998549Z copying torch\include\ATen\ops\nll_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0006768Z copying torch\include\ATen\ops\nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0012495Z copying torch\include\ATen\ops\nll_loss_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0020003Z copying torch\include\ATen\ops\nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0026766Z copying torch\include\ATen\ops\nll_loss_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0033732Z copying torch\include\ATen\ops\nll_loss_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0041219Z copying torch\include\ATen\ops\nll_loss_forward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0048082Z copying torch\include\ATen\ops\nll_loss_forward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0054990Z copying torch\include\ATen\ops\nll_loss_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0062119Z copying torch\include\ATen\ops\nll_loss_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0070085Z copying torch\include\ATen\ops\nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0075960Z copying torch\include\ATen\ops\nll_loss_nd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0083161Z copying torch\include\ATen\ops\nll_loss_nd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0090195Z copying torch\include\ATen\ops\nll_loss_nd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0097108Z copying torch\include\ATen\ops\nll_loss_nd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0104998Z copying torch\include\ATen\ops\nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0111092Z copying torch\include\ATen\ops\nonzero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0117720Z copying torch\include\ATen\ops\nonzero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0124399Z copying torch\include\ATen\ops\nonzero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0131161Z copying torch\include\ATen\ops\nonzero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0139488Z copying torch\include\ATen\ops\nonzero_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0145923Z copying torch\include\ATen\ops\nonzero_numpy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0152738Z copying torch\include\ATen\ops\nonzero_numpy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0159282Z copying torch\include\ATen\ops\nonzero_numpy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0166817Z copying torch\include\ATen\ops\nonzero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0173733Z copying torch\include\ATen\ops\nonzero_static.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0180706Z copying torch\include\ATen\ops\nonzero_static_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0187547Z copying torch\include\ATen\ops\nonzero_static_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0195914Z copying torch\include\ATen\ops\nonzero_static_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0207662Z copying torch\include\ATen\ops\nonzero_static_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0214774Z copying torch\include\ATen\ops\norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0220919Z copying torch\include\ATen\ops\normal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0228975Z copying torch\include\ATen\ops\normal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0234271Z copying torch\include\ATen\ops\normal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0241261Z copying torch\include\ATen\ops\normal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0247911Z copying torch\include\ATen\ops\normal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0254799Z copying torch\include\ATen\ops\normal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0261490Z copying torch\include\ATen\ops\normal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0268478Z copying torch\include\ATen\ops\norm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0275164Z copying torch\include\ATen\ops\norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0281932Z copying torch\include\ATen\ops\norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0288583Z copying torch\include\ATen\ops\norm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0306748Z copying torch\include\ATen\ops\norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0307642Z copying torch\include\ATen\ops\norm_except_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0309046Z copying torch\include\ATen\ops\norm_except_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0316082Z copying torch\include\ATen\ops\norm_except_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0322120Z copying torch\include\ATen\ops\norm_except_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0328717Z copying torch\include\ATen\ops\norm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0335592Z copying torch\include\ATen\ops\norm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0342021Z copying torch\include\ATen\ops\norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0348720Z copying torch\include\ATen\ops\norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0355026Z copying torch\include\ATen\ops\not_equal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0361822Z copying torch\include\ATen\ops\not_equal_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0368268Z copying torch\include\ATen\ops\not_equal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0375177Z copying torch\include\ATen\ops\not_equal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0381877Z copying torch\include\ATen\ops\nuclear_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0388747Z copying torch\include\ATen\ops\nuclear_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0395411Z copying torch\include\ATen\ops\nuclear_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0402307Z copying torch\include\ATen\ops\nuclear_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0409278Z copying torch\include\ATen\ops\numpy_T.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0417048Z copying torch\include\ATen\ops\numpy_T_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0422337Z copying torch\include\ATen\ops\numpy_T_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0428605Z copying torch\include\ATen\ops\numpy_T_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0443246Z copying torch\include\ATen\ops\ones.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0449817Z copying torch\include\ATen\ops\ones_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0456605Z copying torch\include\ATen\ops\ones_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0463512Z copying torch\include\ATen\ops\ones_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0469997Z copying torch\include\ATen\ops\ones_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0476567Z copying torch\include\ATen\ops\ones_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0483250Z copying torch\include\ATen\ops\ones_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0489638Z copying torch\include\ATen\ops\ones_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0496468Z copying torch\include\ATen\ops\one_hot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0503004Z copying torch\include\ATen\ops\one_hot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0509659Z copying torch\include\ATen\ops\one_hot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0515935Z copying torch\include\ATen\ops\one_hot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0523915Z copying torch\include\ATen\ops\or.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0529995Z copying torch\include\ATen\ops\orgqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0536337Z copying torch\include\ATen\ops\orgqr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0542909Z copying torch\include\ATen\ops\orgqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0549498Z copying torch\include\ATen\ops\orgqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0557327Z copying torch\include\ATen\ops\ormqr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0564983Z copying torch\include\ATen\ops\ormqr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0571105Z copying torch\include\ATen\ops\ormqr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0577854Z copying torch\include\ATen\ops\ormqr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0584411Z copying torch\include\ATen\ops\ormqr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0591184Z copying torch\include\ATen\ops\or_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0597984Z copying torch\include\ATen\ops\or_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0605277Z copying torch\include\ATen\ops\or_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0611171Z copying torch\include\ATen\ops\outer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0618133Z copying torch\include\ATen\ops\outer_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0624615Z copying torch\include\ATen\ops\outer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0631892Z copying torch\include\ATen\ops\outer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0639617Z copying torch\include\ATen\ops\output_nr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0645774Z copying torch\include\ATen\ops\output_nr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0651976Z copying torch\include\ATen\ops\output_nr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0658658Z copying torch\include\ATen\ops\output_nr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0666109Z copying torch\include\ATen\ops\pad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0672927Z copying torch\include\ATen\ops\pad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0679922Z copying torch\include\ATen\ops\pad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0686474Z copying torch\include\ATen\ops\pad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0693294Z copying torch\include\ATen\ops\pad_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0700345Z copying torch\include\ATen\ops\pad_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0708364Z copying torch\include\ATen\ops\pad_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0713783Z copying torch\include\ATen\ops\pad_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0720673Z copying torch\include\ATen\ops\pairwise_distance.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0727760Z copying torch\include\ATen\ops\pairwise_distance_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0736049Z copying torch\include\ATen\ops\pairwise_distance_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0741390Z copying torch\include\ATen\ops\pairwise_distance_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0748007Z copying torch\include\ATen\ops\pdist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0754352Z copying torch\include\ATen\ops\pdist_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0761356Z copying torch\include\ATen\ops\pdist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0767875Z copying torch\include\ATen\ops\pdist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0774598Z copying torch\include\ATen\ops\permute.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0786418Z copying torch\include\ATen\ops\permute_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0792951Z copying torch\include\ATen\ops\permute_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0800018Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0806834Z copying torch\include\ATen\ops\permute_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0813794Z copying torch\include\ATen\ops\permute_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0820624Z copying torch\include\ATen\ops\permute_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0827476Z copying torch\include\ATen\ops\permute_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0834222Z copying torch\include\ATen\ops\permute_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0840865Z copying torch\include\ATen\ops\pinverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0847346Z copying torch\include\ATen\ops\pinverse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0854020Z copying torch\include\ATen\ops\pinverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0860389Z copying torch\include\ATen\ops\pinverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0867334Z copying torch\include\ATen\ops\pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0873980Z copying torch\include\ATen\ops\pin_memory_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0880796Z copying torch\include\ATen\ops\pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0887544Z copying torch\include\ATen\ops\pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0899175Z copying torch\include\ATen\ops\pixel_shuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0905877Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0912505Z copying torch\include\ATen\ops\pixel_shuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0919167Z copying torch\include\ATen\ops\pixel_shuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0925994Z copying torch\include\ATen\ops\pixel_shuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0936847Z copying torch\include\ATen\ops\pixel_shuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0944024Z copying torch\include\ATen\ops\pixel_unshuffle.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0950861Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0957578Z copying torch\include\ATen\ops\pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0964223Z copying torch\include\ATen\ops\pixel_unshuffle_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0971600Z copying torch\include\ATen\ops\pixel_unshuffle_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0978443Z copying torch\include\ATen\ops\pixel_unshuffle_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0985938Z copying torch\include\ATen\ops\poisson.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0992117Z copying torch\include\ATen\ops\poisson_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.0998979Z copying torch\include\ATen\ops\poisson_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1010388Z copying torch\include\ATen\ops\poisson_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1017545Z copying torch\include\ATen\ops\poisson_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1024047Z copying torch\include\ATen\ops\poisson_nll_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1031874Z copying torch\include\ATen\ops\poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1039265Z copying torch\include\ATen\ops\poisson_nll_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1050833Z copying torch\include\ATen\ops\poisson_nll_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1057131Z copying torch\include\ATen\ops\poisson_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1063951Z copying torch\include\ATen\ops\polar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1070744Z copying torch\include\ATen\ops\polar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1077225Z copying torch\include\ATen\ops\polar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1088983Z copying torch\include\ATen\ops\polar_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1126610Z copying torch\include\ATen\ops\polar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1133576Z copying torch\include\ATen\ops\polar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1141454Z copying torch\include\ATen\ops\polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1149218Z copying torch\include\ATen\ops\polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1161141Z copying torch\include\ATen\ops\polygamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1173729Z copying torch\include\ATen\ops\polygamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1176209Z copying torch\include\ATen\ops\polygamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1183757Z copying torch\include\ATen\ops\polygamma_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1191041Z copying torch\include\ATen\ops\polygamma_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1202048Z copying torch\include\ATen\ops\polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1208794Z copying torch\include\ATen\ops\polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1217144Z copying torch\include\ATen\ops\positive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1222465Z copying torch\include\ATen\ops\positive_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1229270Z copying torch\include\ATen\ops\positive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1241095Z copying torch\include\ATen\ops\positive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1247854Z copying torch\include\ATen\ops\pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1254712Z copying torch\include\ATen\ops\pow_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1261210Z copying torch\include\ATen\ops\pow_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1267871Z copying torch\include\ATen\ops\pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1279662Z copying torch\include\ATen\ops\pow_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1285984Z copying torch\include\ATen\ops\pow_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1292598Z copying torch\include\ATen\ops\pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1299398Z copying torch\include\ATen\ops\pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1305814Z copying torch\include\ATen\ops\prelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1318694Z copying torch\include\ATen\ops\prelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1325432Z copying torch\include\ATen\ops\prelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1331736Z copying torch\include\ATen\ops\prelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1338284Z copying torch\include\ATen\ops\prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1345061Z copying torch\include\ATen\ops\prod_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1355654Z copying torch\include\ATen\ops\prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1362600Z copying torch\include\ATen\ops\prod_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1369645Z copying torch\include\ATen\ops\prod_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1380411Z copying torch\include\ATen\ops\prod_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1387388Z copying torch\include\ATen\ops\prod_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1398902Z copying torch\include\ATen\ops\prod_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1405499Z copying torch\include\ATen\ops\prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1412048Z copying torch\include\ATen\ops\prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1432258Z copying torch\include\ATen\ops\promote_types.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1438909Z copying torch\include\ATen\ops\promote_types_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1449706Z copying torch\include\ATen\ops\promote_types_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1456180Z copying torch\include\ATen\ops\promote_types_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1462724Z copying torch\include\ATen\ops\put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1469595Z copying torch\include\ATen\ops\put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1476296Z copying torch\include\ATen\ops\put_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1487855Z copying torch\include\ATen\ops\put_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1494477Z copying torch\include\ATen\ops\put_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1500990Z copying torch\include\ATen\ops\put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1507463Z copying torch\include\ATen\ops\put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1513807Z copying torch\include\ATen\ops\qr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1524828Z copying torch\include\ATen\ops\qr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1531221Z copying torch\include\ATen\ops\qr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1537852Z copying torch\include\ATen\ops\qr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1549545Z copying torch\include\ATen\ops\qscheme.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1555784Z copying torch\include\ATen\ops\qscheme_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1566309Z copying torch\include\ATen\ops\qscheme_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1573101Z copying torch\include\ATen\ops\quantile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1579912Z copying torch\include\ATen\ops\quantile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1586431Z copying torch\include\ATen\ops\quantile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1593009Z copying torch\include\ATen\ops\quantile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1599945Z copying torch\include\ATen\ops\quantized_batch_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1607950Z copying torch\include\ATen\ops\quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1614059Z copying torch\include\ATen\ops\quantized_batch_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1620887Z copying torch\include\ATen\ops\quantized_batch_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1627735Z copying torch\include\ATen\ops\quantized_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1639357Z copying torch\include\ATen\ops\quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1645886Z copying torch\include\ATen\ops\quantized_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1653157Z copying torch\include\ATen\ops\quantized_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1661243Z copying torch\include\ATen\ops\quantized_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1703170Z copying torch\include\ATen\ops\quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1704138Z copying torch\include\ATen\ops\quantized_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1704971Z copying torch\include\ATen\ops\quantized_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1705753Z copying torch\include\ATen\ops\quantized_max_pool1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1706807Z copying torch\include\ATen\ops\quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1711200Z copying torch\include\ATen\ops\quantized_max_pool1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1722761Z copying torch\include\ATen\ops\quantized_max_pool1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1729577Z copying torch\include\ATen\ops\quantized_max_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1738313Z copying torch\include\ATen\ops\quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1743673Z copying torch\include\ATen\ops\quantized_max_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1750385Z copying torch\include\ATen\ops\quantized_max_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1762546Z copying torch\include\ATen\ops\quantized_max_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1769851Z copying torch\include\ATen\ops\quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1776611Z copying torch\include\ATen\ops\quantized_max_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1783400Z copying torch\include\ATen\ops\quantized_max_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1790701Z copying torch\include\ATen\ops\quantized_rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1802228Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1808891Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1815918Z copying torch\include\ATen\ops\quantized_rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1822626Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1830512Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1842537Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1849398Z copying torch\include\ATen\ops\quantized_rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1856264Z copying torch\include\ATen\ops\quantize_per_channel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1863503Z copying torch\include\ATen\ops\quantize_per_channel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1870586Z copying torch\include\ATen\ops\quantize_per_channel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1881926Z copying torch\include\ATen\ops\quantize_per_channel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1888553Z copying torch\include\ATen\ops\quantize_per_channel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1895515Z copying torch\include\ATen\ops\quantize_per_channel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1902086Z copying torch\include\ATen\ops\quantize_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1909256Z copying torch\include\ATen\ops\quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1924826Z copying torch\include\ATen\ops\quantize_per_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1931460Z copying torch\include\ATen\ops\quantize_per_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1938443Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1945588Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1952449Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1965554Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1971899Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1978685Z copying torch\include\ATen\ops\quantize_per_tensor_dynamic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1985608Z copying torch\include\ATen\ops\quantize_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.1992408Z copying torch\include\ATen\ops\quantize_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2003680Z copying torch\include\ATen\ops\q_per_channel_axis.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2011904Z copying torch\include\ATen\ops\q_per_channel_axis_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2017842Z copying torch\include\ATen\ops\q_per_channel_axis_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2024246Z copying torch\include\ATen\ops\q_per_channel_scales.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2031217Z copying torch\include\ATen\ops\q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2037810Z copying torch\include\ATen\ops\q_per_channel_scales_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2044571Z copying torch\include\ATen\ops\q_per_channel_scales_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2052353Z copying torch\include\ATen\ops\q_per_channel_zero_points.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2059380Z copying torch\include\ATen\ops\q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2065932Z copying torch\include\ATen\ops\q_per_channel_zero_points_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2077562Z copying torch\include\ATen\ops\q_per_channel_zero_points_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2084508Z copying torch\include\ATen\ops\q_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2090793Z copying torch\include\ATen\ops\q_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2098219Z copying torch\include\ATen\ops\q_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2104317Z copying torch\include\ATen\ops\q_zero_point.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2111165Z copying torch\include\ATen\ops\q_zero_point_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2117808Z copying torch\include\ATen\ops\q_zero_point_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2124479Z copying torch\include\ATen\ops\rad2deg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2131390Z copying torch\include\ATen\ops\rad2deg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2138828Z copying torch\include\ATen\ops\rad2deg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2150409Z copying torch\include\ATen\ops\rad2deg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2157031Z copying torch\include\ATen\ops\rand.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2164281Z copying torch\include\ATen\ops\randint.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2171571Z copying torch\include\ATen\ops\randint_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2178754Z copying torch\include\ATen\ops\randint_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2193595Z copying torch\include\ATen\ops\randint_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2200050Z copying torch\include\ATen\ops\randint_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2206283Z copying torch\include\ATen\ops\randint_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2213467Z copying torch\include\ATen\ops\randint_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2219970Z copying torch\include\ATen\ops\randint_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2227378Z copying torch\include\ATen\ops\randn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2234301Z copying torch\include\ATen\ops\randn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2241766Z copying torch\include\ATen\ops\randn_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2248213Z copying torch\include\ATen\ops\randn_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2255404Z copying torch\include\ATen\ops\randn_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2262740Z copying torch\include\ATen\ops\randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2270253Z copying torch\include\ATen\ops\randn_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2276244Z copying torch\include\ATen\ops\randn_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2283092Z copying torch\include\ATen\ops\randn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2289738Z copying torch\include\ATen\ops\randn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2301534Z copying torch\include\ATen\ops\random.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2308172Z copying torch\include\ATen\ops\random_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2314711Z copying torch\include\ATen\ops\random_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2321276Z copying torch\include\ATen\ops\random_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2328351Z copying torch\include\ATen\ops\random_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2335942Z copying torch\include\ATen\ops\random_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2342488Z copying torch\include\ATen\ops\random_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2349473Z copying torch\include\ATen\ops\randperm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2356406Z copying torch\include\ATen\ops\randperm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2362964Z copying torch\include\ATen\ops\randperm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2374871Z copying torch\include\ATen\ops\randperm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2381595Z copying torch\include\ATen\ops\randperm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2388507Z copying torch\include\ATen\ops\randperm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2395554Z copying torch\include\ATen\ops\rand_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2402573Z copying torch\include\ATen\ops\rand_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2413706Z copying torch\include\ATen\ops\rand_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2420977Z copying torch\include\ATen\ops\rand_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2427780Z copying torch\include\ATen\ops\rand_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2435696Z copying torch\include\ATen\ops\rand_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2442706Z copying torch\include\ATen\ops\rand_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2454011Z copying torch\include\ATen\ops\rand_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2460499Z copying torch\include\ATen\ops\range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2467201Z copying torch\include\ATen\ops\range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2473932Z copying torch\include\ATen\ops\range_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2480801Z copying torch\include\ATen\ops\range_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2487681Z copying torch\include\ATen\ops\range_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2494885Z copying torch\include\ATen\ops\range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2502547Z copying torch\include\ATen\ops\range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2509545Z copying torch\include\ATen\ops\ravel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2516074Z copying torch\include\ATen\ops\ravel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2527380Z copying torch\include\ATen\ops\ravel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2534460Z copying torch\include\ATen\ops\ravel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2541554Z copying torch\include\ATen\ops\real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2547960Z copying torch\include\ATen\ops\real_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2554515Z copying torch\include\ATen\ops\real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2587375Z copying torch\include\ATen\ops\real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2593781Z copying torch\include\ATen\ops\reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2601251Z copying torch\include\ATen\ops\reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2609107Z copying torch\include\ATen\ops\reciprocal_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2615384Z copying torch\include\ATen\ops\reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2627020Z copying torch\include\ATen\ops\reciprocal_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2633350Z copying torch\include\ATen\ops\reciprocal_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2640258Z copying torch\include\ATen\ops\reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2647038Z copying torch\include\ATen\ops\reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2653955Z copying torch\include\ATen\ops\record_stream.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2665389Z copying torch\include\ATen\ops\record_stream_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2672761Z copying torch\include\ATen\ops\record_stream_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2699276Z copying torch\include\ATen\ops\record_stream_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2700062Z copying torch\include\ATen\ops\refine_names.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2700930Z copying torch\include\ATen\ops\refine_names_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2702777Z copying torch\include\ATen\ops\refine_names_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2710896Z copying torch\include\ATen\ops\refine_names_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2717427Z copying torch\include\ATen\ops\reflection_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2723524Z copying torch\include\ATen\ops\reflection_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2731043Z copying torch\include\ATen\ops\reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2738134Z copying torch\include\ATen\ops\reflection_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2745518Z copying torch\include\ATen\ops\reflection_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2752921Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2760011Z copying torch\include\ATen\ops\reflection_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2766993Z copying torch\include\ATen\ops\reflection_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2779868Z copying torch\include\ATen\ops\reflection_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2787453Z copying torch\include\ATen\ops\reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2794478Z copying torch\include\ATen\ops\reflection_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2801531Z copying torch\include\ATen\ops\reflection_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2808929Z copying torch\include\ATen\ops\reflection_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2815908Z copying torch\include\ATen\ops\reflection_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2822943Z copying torch\include\ATen\ops\reflection_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2829883Z copying torch\include\ATen\ops\reflection_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2838180Z copying torch\include\ATen\ops\reflection_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2844501Z copying torch\include\ATen\ops\reflection_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2852354Z copying torch\include\ATen\ops\reflection_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2859559Z copying torch\include\ATen\ops\reflection_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2866974Z copying torch\include\ATen\ops\reflection_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2874041Z copying torch\include\ATen\ops\reflection_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2880910Z copying torch\include\ATen\ops\reflection_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2892387Z copying torch\include\ATen\ops\reflection_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2899688Z copying torch\include\ATen\ops\reflection_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2906440Z copying torch\include\ATen\ops\reflection_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2913349Z copying torch\include\ATen\ops\reflection_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2920208Z copying torch\include\ATen\ops\reflection_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2927879Z copying torch\include\ATen\ops\reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2935085Z copying torch\include\ATen\ops\reflection_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2942493Z copying torch\include\ATen\ops\reflection_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2949295Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2956678Z copying torch\include\ATen\ops\reflection_pad3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2964006Z copying torch\include\ATen\ops\reflection_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2972123Z copying torch\include\ATen\ops\reflection_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2979239Z copying torch\include\ATen\ops\reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2986107Z copying torch\include\ATen\ops\reflection_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.2993106Z copying torch\include\ATen\ops\reflection_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3008446Z copying torch\include\ATen\ops\reflection_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3015524Z copying torch\include\ATen\ops\reflection_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3022378Z copying torch\include\ATen\ops\reflection_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3030478Z copying torch\include\ATen\ops\reflection_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3036497Z copying torch\include\ATen\ops\relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3043184Z copying torch\include\ATen\ops\relu6.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3050033Z copying torch\include\ATen\ops\relu6_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3057217Z copying torch\include\ATen\ops\relu6_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3064778Z copying torch\include\ATen\ops\relu6_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3099672Z copying torch\include\ATen\ops\relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3110954Z copying torch\include\ATen\ops\relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3117312Z copying torch\include\ATen\ops\relu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3124188Z copying torch\include\ATen\ops\relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3131654Z copying torch\include\ATen\ops\relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3139614Z copying torch\include\ATen\ops\relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3145782Z copying torch\include\ATen\ops\remainder.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3152929Z copying torch\include\ATen\ops\remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3192499Z copying torch\include\ATen\ops\remainder_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3199803Z copying torch\include\ATen\ops\remainder_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3206410Z copying torch\include\ATen\ops\remainder_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3217983Z copying torch\include\ATen\ops\remainder_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3224622Z copying torch\include\ATen\ops\remainder_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3231343Z copying torch\include\ATen\ops\remainder_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3237849Z copying torch\include\ATen\ops\remainder_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3244512Z copying torch\include\ATen\ops\rename.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3251137Z copying torch\include\ATen\ops\rename_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3257946Z copying torch\include\ATen\ops\rename_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3264484Z copying torch\include\ATen\ops\rename_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3271059Z copying torch\include\ATen\ops\renorm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3277732Z copying torch\include\ATen\ops\renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3284476Z copying torch\include\ATen\ops\renorm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3291054Z copying torch\include\ATen\ops\renorm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3297785Z copying torch\include\ATen\ops\renorm_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3304998Z copying torch\include\ATen\ops\renorm_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3311638Z copying torch\include\ATen\ops\renorm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3323209Z copying torch\include\ATen\ops\renorm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3329868Z copying torch\include\ATen\ops\repeat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3337131Z copying torch\include\ATen\ops\repeat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3343948Z copying torch\include\ATen\ops\repeat_interleave.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3350981Z copying torch\include\ATen\ops\repeat_interleave_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3358334Z copying torch\include\ATen\ops\repeat_interleave_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3364991Z copying torch\include\ATen\ops\repeat_interleave_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3371922Z copying torch\include\ATen\ops\repeat_interleave_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3378754Z copying torch\include\ATen\ops\repeat_interleave_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3385506Z copying torch\include\ATen\ops\repeat_interleave_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3392218Z copying torch\include\ATen\ops\repeat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3398928Z copying torch\include\ATen\ops\repeat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3407475Z copying torch\include\ATen\ops\replication_pad1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3413818Z copying torch\include\ATen\ops\replication_pad1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3421182Z copying torch\include\ATen\ops\replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3433136Z copying torch\include\ATen\ops\replication_pad1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3440549Z copying torch\include\ATen\ops\replication_pad1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3448076Z copying torch\include\ATen\ops\replication_pad1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3454954Z copying torch\include\ATen\ops\replication_pad1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3462055Z copying torch\include\ATen\ops\replication_pad1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3473823Z copying torch\include\ATen\ops\replication_pad1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3481675Z copying torch\include\ATen\ops\replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3488400Z copying torch\include\ATen\ops\replication_pad1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3495902Z copying torch\include\ATen\ops\replication_pad1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3502926Z copying torch\include\ATen\ops\replication_pad1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3510114Z copying torch\include\ATen\ops\replication_pad1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3517519Z copying torch\include\ATen\ops\replication_pad1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3524188Z copying torch\include\ATen\ops\replication_pad1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3531153Z copying torch\include\ATen\ops\replication_pad2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3538335Z copying torch\include\ATen\ops\replication_pad2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3546318Z copying torch\include\ATen\ops\replication_pad2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3552869Z copying torch\include\ATen\ops\replication_pad2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3559776Z copying torch\include\ATen\ops\replication_pad2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3593663Z copying torch\include\ATen\ops\replication_pad2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3600919Z copying torch\include\ATen\ops\replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3612411Z copying torch\include\ATen\ops\replication_pad2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3620291Z copying torch\include\ATen\ops\replication_pad2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3634859Z copying torch\include\ATen\ops\replication_pad2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3642728Z copying torch\include\ATen\ops\replication_pad2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3650277Z copying torch\include\ATen\ops\replication_pad2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3662588Z copying torch\include\ATen\ops\replication_pad2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3669580Z copying torch\include\ATen\ops\replication_pad3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3677762Z copying torch\include\ATen\ops\replication_pad3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3684894Z copying torch\include\ATen\ops\replication_pad3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3692670Z copying torch\include\ATen\ops\replication_pad3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3700089Z copying torch\include\ATen\ops\replication_pad3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3707820Z copying torch\include\ATen\ops\replication_pad3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3715629Z copying torch\include\ATen\ops\replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3727028Z copying torch\include\ATen\ops\replication_pad3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3734180Z copying torch\include\ATen\ops\replication_pad3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3741245Z copying torch\include\ATen\ops\replication_pad3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3748633Z copying torch\include\ATen\ops\replication_pad3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3756287Z copying torch\include\ATen\ops\replication_pad3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3762919Z copying torch\include\ATen\ops\replication_pad3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3770013Z copying torch\include\ATen\ops\requires_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3781682Z copying torch\include\ATen\ops\requires_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3788418Z copying torch\include\ATen\ops\requires_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3794793Z copying torch\include\ATen\ops\requires_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3801484Z copying torch\include\ATen\ops\reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3808110Z copying torch\include\ATen\ops\reshape_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3822391Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3829158Z copying torch\include\ATen\ops\reshape_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3836151Z copying torch\include\ATen\ops\reshape_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3842935Z copying torch\include\ATen\ops\reshape_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3850335Z copying torch\include\ATen\ops\reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3857286Z copying torch\include\ATen\ops\reshape_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3864188Z copying torch\include\ATen\ops\reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3870940Z copying torch\include\ATen\ops\reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3877713Z copying torch\include\ATen\ops\resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3883938Z copying torch\include\ATen\ops\resize_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3891715Z copying torch\include\ATen\ops\resize_as_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3898156Z copying torch\include\ATen\ops\resize_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3904813Z copying torch\include\ATen\ops\resize_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3911436Z copying torch\include\ATen\ops\resize_as_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3918417Z copying torch\include\ATen\ops\resize_as_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3929804Z copying torch\include\ATen\ops\resize_as_sparse_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3936688Z copying torch\include\ATen\ops\resize_as_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3943548Z copying torch\include\ATen\ops\resize_as_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3950498Z copying torch\include\ATen\ops\resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3957088Z copying torch\include\ATen\ops\resize_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3964063Z copying torch\include\ATen\ops\resize_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3970891Z copying torch\include\ATen\ops\resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3978204Z copying torch\include\ATen\ops\resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3984991Z copying torch\include\ATen\ops\resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3991772Z copying torch\include\ATen\ops\resolve_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.3999017Z copying torch\include\ATen\ops\resolve_conj_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4005664Z copying torch\include\ATen\ops\resolve_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4012657Z copying torch\include\ATen\ops\resolve_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4020262Z copying torch\include\ATen\ops\resolve_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4027330Z copying torch\include\ATen\ops\resolve_neg_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4034511Z copying torch\include\ATen\ops\resolve_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4041124Z copying torch\include\ATen\ops\resolve_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4049141Z copying torch\include\ATen\ops\result_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4055948Z copying torch\include\ATen\ops\result_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4062860Z copying torch\include\ATen\ops\result_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4070020Z copying torch\include\ATen\ops\result_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4077835Z copying torch\include\ATen\ops\retains_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4083839Z copying torch\include\ATen\ops\retains_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4091238Z copying torch\include\ATen\ops\retains_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4097659Z copying torch\include\ATen\ops\retains_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4113420Z copying torch\include\ATen\ops\retain_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4120269Z copying torch\include\ATen\ops\retain_grad_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4127801Z copying torch\include\ATen\ops\retain_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4134660Z copying torch\include\ATen\ops\retain_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4141885Z copying torch\include\ATen\ops\rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4148882Z copying torch\include\ATen\ops\rms_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4155427Z copying torch\include\ATen\ops\rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4162897Z copying torch\include\ATen\ops\rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4169603Z copying torch\include\ATen\ops\rnn_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4176195Z copying torch\include\ATen\ops\rnn_relu_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4183273Z copying torch\include\ATen\ops\rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4190662Z copying torch\include\ATen\ops\rnn_relu_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4198876Z copying torch\include\ATen\ops\rnn_relu_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4206587Z copying torch\include\ATen\ops\rnn_relu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4213395Z copying torch\include\ATen\ops\rnn_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4220454Z copying torch\include\ATen\ops\rnn_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4227610Z copying torch\include\ATen\ops\rnn_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4269214Z copying torch\include\ATen\ops\rnn_tanh_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4276060Z copying torch\include\ATen\ops\rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4352602Z copying torch\include\ATen\ops\rnn_tanh_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4473463Z copying torch\include\ATen\ops\rnn_tanh_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4480793Z copying torch\include\ATen\ops\rnn_tanh_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4488465Z copying torch\include\ATen\ops\rnn_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4496853Z copying torch\include\ATen\ops\rnn_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4504994Z copying torch\include\ATen\ops\roll.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4514476Z copying torch\include\ATen\ops\roll_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4524418Z copying torch\include\ATen\ops\roll_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4532704Z copying torch\include\ATen\ops\roll_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4539633Z copying torch\include\ATen\ops\roll_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4547340Z copying torch\include\ATen\ops\roll_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4557337Z copying torch\include\ATen\ops\rot90.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4565069Z copying torch\include\ATen\ops\rot90_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4571561Z copying torch\include\ATen\ops\rot90_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4578327Z copying torch\include\ATen\ops\rot90_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4585135Z copying torch\include\ATen\ops\round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4593781Z copying torch\include\ATen\ops\round_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4599764Z copying torch\include\ATen\ops\round_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4606800Z copying torch\include\ATen\ops\round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4614184Z copying torch\include\ATen\ops\round_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4622597Z copying torch\include\ATen\ops\round_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4634179Z copying torch\include\ATen\ops\round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4640572Z copying torch\include\ATen\ops\round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4652512Z copying torch\include\ATen\ops\row_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4659449Z copying torch\include\ATen\ops\row_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4666165Z copying torch\include\ATen\ops\row_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4678375Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4685379Z copying torch\include\ATen\ops\row_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4692414Z copying torch\include\ATen\ops\row_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4699626Z copying torch\include\ATen\ops\row_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4707616Z copying torch\include\ATen\ops\row_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4714406Z copying torch\include\ATen\ops\row_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4721390Z copying torch\include\ATen\ops\row_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4728476Z copying torch\include\ATen\ops\row_stack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4735566Z copying torch\include\ATen\ops\row_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4743709Z copying torch\include\ATen\ops\row_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4755441Z copying torch\include\ATen\ops\rrelu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4762990Z copying torch\include\ATen\ops\rrelu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4769829Z copying torch\include\ATen\ops\rrelu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4777006Z copying torch\include\ATen\ops\rrelu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4783777Z copying torch\include\ATen\ops\rrelu_with_noise.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4790313Z copying torch\include\ATen\ops\rrelu_with_noise_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4797244Z copying torch\include\ATen\ops\rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4804343Z copying torch\include\ATen\ops\rrelu_with_noise_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4811906Z copying torch\include\ATen\ops\rrelu_with_noise_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4818675Z copying torch\include\ATen\ops\rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4830424Z copying torch\include\ATen\ops\rrelu_with_noise_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4837743Z copying torch\include\ATen\ops\rrelu_with_noise_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4844656Z copying torch\include\ATen\ops\rrelu_with_noise_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4851630Z copying torch\include\ATen\ops\rrelu_with_noise_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4859443Z copying torch\include\ATen\ops\rrelu_with_noise_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4871005Z copying torch\include\ATen\ops\rshift.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4877777Z copying torch\include\ATen\ops\rshift_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4884369Z copying torch\include\ATen\ops\rshift_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4890979Z copying torch\include\ATen\ops\rshift_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4929768Z copying torch\include\ATen\ops\rshift_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4936393Z copying torch\include\ATen\ops\rshift_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4943016Z copying torch\include\ATen\ops\rshift_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4950306Z copying torch\include\ATen\ops\rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4957047Z copying torch\include\ATen\ops\rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4963211Z copying torch\include\ATen\ops\rsqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4969931Z copying torch\include\ATen\ops\rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4976625Z copying torch\include\ATen\ops\rsqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4983065Z copying torch\include\ATen\ops\rsqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4989617Z copying torch\include\ATen\ops\rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.4996580Z copying torch\include\ATen\ops\rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5012421Z copying torch\include\ATen\ops\rsub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5019317Z copying torch\include\ATen\ops\rsub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5026684Z copying torch\include\ATen\ops\rsub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5032879Z copying torch\include\ATen\ops\rsub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5039468Z copying torch\include\ATen\ops\rsub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5046315Z copying torch\include\ATen\ops\rsub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5053157Z copying torch\include\ATen\ops\scalar_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5061282Z copying torch\include\ATen\ops\scalar_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5067214Z copying torch\include\ATen\ops\scalar_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5074280Z copying torch\include\ATen\ops\scalar_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5081417Z copying torch\include\ATen\ops\scaled_dot_product_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5089674Z copying torch\include\ATen\ops\scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5095672Z copying torch\include\ATen\ops\scaled_dot_product_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5103006Z copying torch\include\ATen\ops\scaled_dot_product_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5110031Z copying torch\include\ATen\ops\scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5116832Z copying torch\include\ATen\ops\scatter_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5127128Z copying torch\include\ATen\ops\scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5134158Z copying torch\include\ATen\ops\scatter_add_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5141894Z copying torch\include\ATen\ops\scatter_add_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5147933Z copying torch\include\ATen\ops\scatter_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5159686Z copying torch\include\ATen\ops\scatter_add_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5166795Z copying torch\include\ATen\ops\scatter_add_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5173892Z copying torch\include\ATen\ops\scatter_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5181029Z copying torch\include\ATen\ops\scatter_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5188097Z copying torch\include\ATen\ops\scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5195387Z copying torch\include\ATen\ops\scatter_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5203141Z copying torch\include\ATen\ops\scatter_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5211159Z copying torch\include\ATen\ops\scatter_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5218133Z copying torch\include\ATen\ops\scatter_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5225057Z copying torch\include\ATen\ops\scatter_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5236887Z copying torch\include\ATen\ops\scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5243664Z copying torch\include\ATen\ops\scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5250825Z copying torch\include\ATen\ops\scatter_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5264729Z copying torch\include\ATen\ops\scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5271993Z copying torch\include\ATen\ops\scatter_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5279155Z copying torch\include\ATen\ops\scatter_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5286358Z copying torch\include\ATen\ops\scatter_reduce_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5293408Z copying torch\include\ATen\ops\scatter_reduce_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5300370Z copying torch\include\ATen\ops\scatter_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5307466Z copying torch\include\ATen\ops\scatter_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5314439Z copying torch\include\ATen\ops\searchsorted.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5320874Z copying torch\include\ATen\ops\searchsorted_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5327640Z copying torch\include\ATen\ops\searchsorted_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5334835Z copying torch\include\ATen\ops\searchsorted_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5342149Z copying torch\include\ATen\ops\searchsorted_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5349043Z copying torch\include\ATen\ops\segment_reduce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5355962Z copying torch\include\ATen\ops\segment_reduce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5362686Z copying torch\include\ATen\ops\segment_reduce_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5369338Z copying torch\include\ATen\ops\segment_reduce_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5376352Z copying torch\include\ATen\ops\segment_reduce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5383429Z copying torch\include\ATen\ops\segment_reduce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5390220Z copying torch\include\ATen\ops\select.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5397121Z copying torch\include\ATen\ops\select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5437948Z copying torch\include\ATen\ops\select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5444869Z copying torch\include\ATen\ops\select_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5457971Z copying torch\include\ATen\ops\select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5464854Z copying torch\include\ATen\ops\select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5472890Z copying torch\include\ATen\ops\select_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5479336Z copying torch\include\ATen\ops\select_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5486270Z copying torch\include\ATen\ops\select_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5498709Z copying torch\include\ATen\ops\select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5506124Z copying torch\include\ATen\ops\select_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5513513Z copying torch\include\ATen\ops\select_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5520375Z copying torch\include\ATen\ops\select_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5527224Z copying torch\include\ATen\ops\select_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5534372Z copying torch\include\ATen\ops\select_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5542243Z copying torch\include\ATen\ops\select_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5548886Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5556498Z copying torch\include\ATen\ops\select_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5563448Z copying torch\include\ATen\ops\select_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5570984Z copying torch\include\ATen\ops\select_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5577632Z copying torch\include\ATen\ops\selu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5584892Z copying torch\include\ATen\ops\selu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5591487Z copying torch\include\ATen\ops\selu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5597735Z copying torch\include\ATen\ops\selu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5604689Z copying torch\include\ATen\ops\set.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5611571Z copying torch\include\ATen\ops\set_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5618409Z copying torch\include\ATen\ops\set_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5625605Z copying torch\include\ATen\ops\set_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5632530Z copying torch\include\ATen\ops\set_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5639479Z copying torch\include\ATen\ops\set_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5646021Z copying torch\include\ATen\ops\set_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5653090Z copying torch\include\ATen\ops\set_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5659547Z copying torch\include\ATen\ops\set_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5665969Z copying torch\include\ATen\ops\set_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5672865Z copying torch\include\ATen\ops\set_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5679718Z copying torch\include\ATen\ops\set_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5686077Z copying torch\include\ATen\ops\sgn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5692738Z copying torch\include\ATen\ops\sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5699190Z copying torch\include\ATen\ops\sgn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5707281Z copying torch\include\ATen\ops\sgn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5714213Z copying torch\include\ATen\ops\sgn_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5720474Z copying torch\include\ATen\ops\sgn_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5727248Z copying torch\include\ATen\ops\sgn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5734014Z copying torch\include\ATen\ops\sgn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5745322Z copying torch\include\ATen\ops\sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5752096Z copying torch\include\ATen\ops\sigmoid_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5760263Z copying torch\include\ATen\ops\sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5767047Z copying torch\include\ATen\ops\sigmoid_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5773768Z copying torch\include\ATen\ops\sigmoid_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5780817Z copying torch\include\ATen\ops\sigmoid_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5788016Z copying torch\include\ATen\ops\sigmoid_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5794648Z copying torch\include\ATen\ops\sigmoid_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5801672Z copying torch\include\ATen\ops\sigmoid_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5809520Z copying torch\include\ATen\ops\sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5816930Z copying torch\include\ATen\ops\sigmoid_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5823921Z copying torch\include\ATen\ops\sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5830617Z copying torch\include\ATen\ops\sigmoid_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5837369Z copying torch\include\ATen\ops\sigmoid_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5844685Z copying torch\include\ATen\ops\sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5856874Z copying torch\include\ATen\ops\sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5863723Z copying torch\include\ATen\ops\sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5871000Z copying torch\include\ATen\ops\signbit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5877879Z copying torch\include\ATen\ops\signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5884483Z copying torch\include\ATen\ops\signbit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5891696Z copying torch\include\ATen\ops\signbit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5898291Z copying torch\include\ATen\ops\signbit_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5904981Z copying torch\include\ATen\ops\signbit_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5911550Z copying torch\include\ATen\ops\signbit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5918283Z copying torch\include\ATen\ops\signbit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5934650Z copying torch\include\ATen\ops\sign_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5941251Z copying torch\include\ATen\ops\sign_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5947916Z copying torch\include\ATen\ops\sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5954507Z copying torch\include\ATen\ops\sign_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5961097Z copying torch\include\ATen\ops\sign_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5967827Z copying torch\include\ATen\ops\sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5974333Z copying torch\include\ATen\ops\sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5980567Z copying torch\include\ATen\ops\silu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5987414Z copying torch\include\ATen\ops\silu_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.5994753Z copying torch\include\ATen\ops\silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6001655Z copying torch\include\ATen\ops\silu_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6011570Z copying torch\include\ATen\ops\silu_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6065706Z copying torch\include\ATen\ops\silu_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6073098Z copying torch\include\ATen\ops\silu_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6087859Z copying torch\include\ATen\ops\silu_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6089045Z copying torch\include\ATen\ops\silu_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6096376Z copying torch\include\ATen\ops\silu_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6111491Z copying torch\include\ATen\ops\silu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6117824Z copying torch\include\ATen\ops\silu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6125883Z copying torch\include\ATen\ops\silu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6132771Z copying torch\include\ATen\ops\silu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6140404Z copying torch\include\ATen\ops\silu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6146233Z copying torch\include\ATen\ops\silu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6153225Z copying torch\include\ATen\ops\silu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6159344Z copying torch\include\ATen\ops\sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6202938Z copying torch\include\ATen\ops\sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6210706Z copying torch\include\ATen\ops\sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6218263Z copying torch\include\ATen\ops\sinc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6225595Z copying torch\include\ATen\ops\sinc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6232351Z copying torch\include\ATen\ops\sinc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6244449Z copying torch\include\ATen\ops\sinc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6251195Z copying torch\include\ATen\ops\sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6257712Z copying torch\include\ATen\ops\sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6264606Z copying torch\include\ATen\ops\sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6271469Z copying torch\include\ATen\ops\sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6278416Z copying torch\include\ATen\ops\sinh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6285309Z copying torch\include\ATen\ops\sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6292409Z copying torch\include\ATen\ops\sinh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6299043Z copying torch\include\ATen\ops\sinh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6305513Z copying torch\include\ATen\ops\sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6316585Z copying torch\include\ATen\ops\sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6323634Z copying torch\include\ATen\ops\sin_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6330921Z copying torch\include\ATen\ops\sin_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6337529Z copying torch\include\ATen\ops\sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6345122Z copying torch\include\ATen\ops\sin_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6356257Z copying torch\include\ATen\ops\sin_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6362849Z copying torch\include\ATen\ops\sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6370062Z copying torch\include\ATen\ops\sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6376827Z copying torch\include\ATen\ops\size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6405167Z copying torch\include\ATen\ops\size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6467154Z copying torch\include\ATen\ops\size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6473721Z copying torch\include\ATen\ops\size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6480678Z copying torch\include\ATen\ops\slice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6487109Z copying torch\include\ATen\ops\slice_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6494891Z copying torch\include\ATen\ops\slice_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6539827Z copying torch\include\ATen\ops\slice_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6547628Z copying torch\include\ATen\ops\slice_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6553436Z copying torch\include\ATen\ops\slice_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6560120Z copying torch\include\ATen\ops\slice_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6567027Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6623242Z copying torch\include\ATen\ops\slice_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6630320Z copying torch\include\ATen\ops\slice_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6636661Z copying torch\include\ATen\ops\slice_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6643688Z copying torch\include\ATen\ops\slice_inverse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6650733Z copying torch\include\ATen\ops\slice_inverse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6658029Z copying torch\include\ATen\ops\slice_inverse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6664756Z copying torch\include\ATen\ops\slice_inverse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6672358Z copying torch\include\ATen\ops\slice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6679534Z copying torch\include\ATen\ops\slice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6687299Z copying torch\include\ATen\ops\slice_scatter.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6695362Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6702818Z copying torch\include\ATen\ops\slice_scatter_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6710178Z copying torch\include\ATen\ops\slice_scatter_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6717421Z copying torch\include\ATen\ops\slice_scatter_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6724596Z copying torch\include\ATen\ops\slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6740721Z copying torch\include\ATen\ops\slogdet_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6747564Z copying torch\include\ATen\ops\slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6754208Z copying torch\include\ATen\ops\slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6760765Z copying torch\include\ATen\ops\slow_conv3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6768391Z copying torch\include\ATen\ops\slow_conv3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6779320Z copying torch\include\ATen\ops\slow_conv3d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6786131Z copying torch\include\ATen\ops\slow_conv3d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6793063Z copying torch\include\ATen\ops\slow_conv3d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6799986Z copying torch\include\ATen\ops\slow_conv3d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6806637Z copying torch\include\ATen\ops\slow_conv3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6813570Z copying torch\include\ATen\ops\slow_conv3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6820332Z copying torch\include\ATen\ops\slow_conv_dilated2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6827438Z copying torch\include\ATen\ops\slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6834275Z copying torch\include\ATen\ops\slow_conv_dilated2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6841180Z copying torch\include\ATen\ops\slow_conv_dilated2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6848652Z copying torch\include\ATen\ops\slow_conv_dilated2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6855513Z copying torch\include\ATen\ops\slow_conv_dilated2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6862360Z copying torch\include\ATen\ops\slow_conv_dilated3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6869564Z copying torch\include\ATen\ops\slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6876449Z copying torch\include\ATen\ops\slow_conv_dilated3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6883248Z copying torch\include\ATen\ops\slow_conv_dilated3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6889824Z copying torch\include\ATen\ops\slow_conv_dilated3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6897001Z copying torch\include\ATen\ops\slow_conv_dilated3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6903623Z copying torch\include\ATen\ops\slow_conv_transpose2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6910651Z copying torch\include\ATen\ops\slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6922081Z copying torch\include\ATen\ops\slow_conv_transpose2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6929430Z copying torch\include\ATen\ops\slow_conv_transpose2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6936519Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6943458Z copying torch\include\ATen\ops\slow_conv_transpose2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6950227Z copying torch\include\ATen\ops\slow_conv_transpose2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6961593Z copying torch\include\ATen\ops\slow_conv_transpose2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6968333Z copying torch\include\ATen\ops\slow_conv_transpose3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6975467Z copying torch\include\ATen\ops\slow_conv_transpose3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6982235Z copying torch\include\ATen\ops\slow_conv_transpose3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6989047Z copying torch\include\ATen\ops\slow_conv_transpose3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.6995810Z copying torch\include\ATen\ops\slow_conv_transpose3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7002386Z copying torch\include\ATen\ops\smm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7008774Z copying torch\include\ATen\ops\smm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7015709Z copying torch\include\ATen\ops\smm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7022071Z copying torch\include\ATen\ops\smm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7033517Z copying torch\include\ATen\ops\smooth_l1_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7035553Z copying torch\include\ATen\ops\smooth_l1_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7042943Z copying torch\include\ATen\ops\smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7049931Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7056627Z copying torch\include\ATen\ops\smooth_l1_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7068310Z copying torch\include\ATen\ops\smooth_l1_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7075255Z copying torch\include\ATen\ops\smooth_l1_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7082592Z copying torch\include\ATen\ops\smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7089432Z copying torch\include\ATen\ops\smooth_l1_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7096885Z copying torch\include\ATen\ops\smooth_l1_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7103683Z copying torch\include\ATen\ops\smooth_l1_loss_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7110830Z copying torch\include\ATen\ops\smooth_l1_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7117715Z copying torch\include\ATen\ops\smooth_l1_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7124443Z copying torch\include\ATen\ops\smooth_l1_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7131227Z copying torch\include\ATen\ops\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7143597Z copying torch\include\ATen\ops\softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7150426Z copying torch\include\ATen\ops\softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7157096Z copying torch\include\ATen\ops\softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7164111Z copying torch\include\ATen\ops\softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7170891Z copying torch\include\ATen\ops\softplus.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7221157Z copying torch\include\ATen\ops\softplus_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7228917Z copying torch\include\ATen\ops\softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7236077Z copying torch\include\ATen\ops\softplus_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7242872Z copying torch\include\ATen\ops\softplus_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7249705Z copying torch\include\ATen\ops\softplus_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7256954Z copying torch\include\ATen\ops\softplus_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7264480Z copying torch\include\ATen\ops\softplus_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7270609Z copying torch\include\ATen\ops\softplus_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7277742Z copying torch\include\ATen\ops\softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7284604Z copying torch\include\ATen\ops\softplus_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7296351Z copying torch\include\ATen\ops\softplus_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7303232Z copying torch\include\ATen\ops\softplus_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7311338Z copying torch\include\ATen\ops\softplus_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7316978Z copying torch\include\ATen\ops\softplus_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7323592Z copying torch\include\ATen\ops\softplus_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7330326Z copying torch\include\ATen\ops\softshrink.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7337150Z copying torch\include\ATen\ops\softshrink_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7344554Z copying torch\include\ATen\ops\softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7351011Z copying torch\include\ATen\ops\softshrink_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7357965Z copying torch\include\ATen\ops\softshrink_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7364798Z copying torch\include\ATen\ops\softshrink_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7371707Z copying torch\include\ATen\ops\softshrink_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7378818Z copying torch\include\ATen\ops\softshrink_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7385491Z copying torch\include\ATen\ops\softshrink_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7392659Z copying torch\include\ATen\ops\softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7399415Z copying torch\include\ATen\ops\softshrink_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7406340Z copying torch\include\ATen\ops\softshrink_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7413053Z copying torch\include\ATen\ops\softshrink_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7419849Z copying torch\include\ATen\ops\softshrink_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7426481Z copying torch\include\ATen\ops\softshrink_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7433302Z copying torch\include\ATen\ops\softshrink_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7440011Z copying torch\include\ATen\ops\soft_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7447074Z copying torch\include\ATen\ops\soft_margin_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7454302Z copying torch\include\ATen\ops\soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7461154Z copying torch\include\ATen\ops\soft_margin_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7467926Z copying torch\include\ATen\ops\soft_margin_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7475208Z copying torch\include\ATen\ops\soft_margin_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7481690Z copying torch\include\ATen\ops\soft_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7488775Z copying torch\include\ATen\ops\soft_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7495459Z copying torch\include\ATen\ops\sort.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7507196Z copying torch\include\ATen\ops\sort_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7513969Z copying torch\include\ATen\ops\sort_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7520999Z copying torch\include\ATen\ops\sort_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7527782Z copying torch\include\ATen\ops\sort_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7536302Z copying torch\include\ATen\ops\sort_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7542670Z copying torch\include\ATen\ops\sort_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7549498Z copying torch\include\ATen\ops\sort_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7556152Z copying torch\include\ATen\ops\sort_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7562763Z copying torch\include\ATen\ops\sort_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7571006Z copying torch\include\ATen\ops\sparse_bsc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7582670Z copying torch\include\ATen\ops\sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7588739Z copying torch\include\ATen\ops\sparse_bsc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7595953Z copying torch\include\ATen\ops\sparse_bsc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7602613Z copying torch\include\ATen\ops\sparse_bsr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7628668Z copying torch\include\ATen\ops\sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7635570Z copying torch\include\ATen\ops\sparse_bsr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7642294Z copying torch\include\ATen\ops\sparse_bsr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7649370Z copying torch\include\ATen\ops\sparse_compressed_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7656394Z copying torch\include\ATen\ops\sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7663371Z copying torch\include\ATen\ops\sparse_compressed_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7670428Z copying torch\include\ATen\ops\sparse_compressed_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7677154Z copying torch\include\ATen\ops\sparse_coo_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7684366Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7691640Z copying torch\include\ATen\ops\sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7698456Z copying torch\include\ATen\ops\sparse_coo_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7710452Z copying torch\include\ATen\ops\sparse_coo_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7717719Z copying torch\include\ATen\ops\sparse_csc_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7725450Z copying torch\include\ATen\ops\sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7732946Z copying torch\include\ATen\ops\sparse_csc_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7740290Z copying torch\include\ATen\ops\sparse_csc_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7747262Z copying torch\include\ATen\ops\sparse_csr_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7754700Z copying torch\include\ATen\ops\sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7761666Z copying torch\include\ATen\ops\sparse_csr_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7769075Z copying torch\include\ATen\ops\sparse_csr_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7775856Z copying torch\include\ATen\ops\sparse_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7786900Z copying torch\include\ATen\ops\sparse_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7793578Z copying torch\include\ATen\ops\sparse_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7800291Z copying torch\include\ATen\ops\sparse_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7807113Z copying torch\include\ATen\ops\sparse_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7814118Z copying torch\include\ATen\ops\sparse_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7825419Z copying torch\include\ATen\ops\sparse_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7832052Z copying torch\include\ATen\ops\sparse_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7838736Z copying torch\include\ATen\ops\sparse_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7845393Z copying torch\include\ATen\ops\sparse_resize_and_clear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7852504Z copying torch\include\ATen\ops\sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7863890Z copying torch\include\ATen\ops\sparse_resize_and_clear_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7870660Z copying torch\include\ATen\ops\sparse_resize_and_clear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7877557Z copying torch\include\ATen\ops\sparse_resize_and_clear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7884525Z copying torch\include\ATen\ops\sparse_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7891277Z copying torch\include\ATen\ops\sparse_resize_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7902286Z copying torch\include\ATen\ops\sparse_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7909204Z copying torch\include\ATen\ops\sparse_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7915978Z copying torch\include\ATen\ops\sparse_sampled_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7923099Z copying torch\include\ATen\ops\sparse_sampled_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7929714Z copying torch\include\ATen\ops\sparse_sampled_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7941485Z copying torch\include\ATen\ops\special_airy_ai.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7948495Z copying torch\include\ATen\ops\special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7955192Z copying torch\include\ATen\ops\special_airy_ai_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7962361Z copying torch\include\ATen\ops\special_airy_ai_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7968897Z copying torch\include\ATen\ops\special_airy_ai_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7975810Z copying torch\include\ATen\ops\special_airy_ai_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7982504Z copying torch\include\ATen\ops\special_airy_ai_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7989146Z copying torch\include\ATen\ops\special_airy_ai_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.7995836Z copying torch\include\ATen\ops\special_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8002921Z copying torch\include\ATen\ops\special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8009785Z copying torch\include\ATen\ops\special_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8016646Z copying torch\include\ATen\ops\special_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8039136Z copying torch\include\ATen\ops\special_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8045994Z copying torch\include\ATen\ops\special_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8052944Z copying torch\include\ATen\ops\special_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8064134Z copying torch\include\ATen\ops\special_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8071174Z copying torch\include\ATen\ops\special_bessel_j1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8078411Z copying torch\include\ATen\ops\special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8089963Z copying torch\include\ATen\ops\special_bessel_j1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8095883Z copying torch\include\ATen\ops\special_bessel_j1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8101670Z copying torch\include\ATen\ops\special_bessel_j1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8108570Z copying torch\include\ATen\ops\special_bessel_j1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8115725Z copying torch\include\ATen\ops\special_bessel_j1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8122635Z copying torch\include\ATen\ops\special_bessel_j1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8130449Z copying torch\include\ATen\ops\special_bessel_y0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8137270Z copying torch\include\ATen\ops\special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8143983Z copying torch\include\ATen\ops\special_bessel_y0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8150913Z copying torch\include\ATen\ops\special_bessel_y0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8158628Z copying torch\include\ATen\ops\special_bessel_y0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8165570Z copying torch\include\ATen\ops\special_bessel_y0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8176912Z copying torch\include\ATen\ops\special_bessel_y0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8183841Z copying torch\include\ATen\ops\special_bessel_y0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8190792Z copying torch\include\ATen\ops\special_bessel_y1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8197957Z copying torch\include\ATen\ops\special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8205903Z copying torch\include\ATen\ops\special_bessel_y1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8233639Z copying torch\include\ATen\ops\special_bessel_y1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8234477Z copying torch\include\ATen\ops\special_bessel_y1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8235323Z copying torch\include\ATen\ops\special_bessel_y1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8236145Z copying torch\include\ATen\ops\special_bessel_y1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8242116Z copying torch\include\ATen\ops\special_bessel_y1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8248900Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8257990Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8263658Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8270687Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8277384Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8305760Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8312999Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8319923Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8326884Z copying torch\include\ATen\ops\special_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8333717Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8345757Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8352972Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8359930Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8366943Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8373866Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8384711Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8393002Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8399841Z copying torch\include\ATen\ops\special_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8407254Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8414616Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8421625Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8428817Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8435718Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8442685Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8449553Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8463348Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8469970Z copying torch\include\ATen\ops\special_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8477057Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8484326Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8491502Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8504403Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8511513Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8518393Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8525630Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8532732Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8539741Z copying torch\include\ATen\ops\special_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8546946Z copying torch\include\ATen\ops\special_digamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8553748Z copying torch\include\ATen\ops\special_digamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8560792Z copying torch\include\ATen\ops\special_digamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8567576Z copying torch\include\ATen\ops\special_digamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8575774Z copying torch\include\ATen\ops\special_entr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8582209Z copying torch\include\ATen\ops\special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8589149Z copying torch\include\ATen\ops\special_entr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8596365Z copying torch\include\ATen\ops\special_entr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8603144Z copying torch\include\ATen\ops\special_entr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8610312Z copying torch\include\ATen\ops\special_entr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8617181Z copying torch\include\ATen\ops\special_entr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8623947Z copying torch\include\ATen\ops\special_entr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8630686Z copying torch\include\ATen\ops\special_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8637514Z copying torch\include\ATen\ops\special_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8645129Z copying torch\include\ATen\ops\special_erfcx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8652231Z copying torch\include\ATen\ops\special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8659155Z copying torch\include\ATen\ops\special_erfcx_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8666631Z copying torch\include\ATen\ops\special_erfcx_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8674152Z copying torch\include\ATen\ops\special_erfcx_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8686533Z copying torch\include\ATen\ops\special_erfcx_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8693596Z copying torch\include\ATen\ops\special_erfcx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8701297Z copying torch\include\ATen\ops\special_erfcx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8708957Z copying torch\include\ATen\ops\special_erfc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8729674Z copying torch\include\ATen\ops\special_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8730477Z copying torch\include\ATen\ops\special_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8731219Z copying torch\include\ATen\ops\special_erfinv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8738336Z copying torch\include\ATen\ops\special_erfinv_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8745303Z copying torch\include\ATen\ops\special_erfinv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8752039Z copying torch\include\ATen\ops\special_erfinv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8759384Z copying torch\include\ATen\ops\special_erf_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8766286Z copying torch\include\ATen\ops\special_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8773430Z copying torch\include\ATen\ops\special_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8781301Z copying torch\include\ATen\ops\special_exp2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8787245Z copying torch\include\ATen\ops\special_exp2_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8793963Z copying torch\include\ATen\ops\special_exp2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8800868Z copying torch\include\ATen\ops\special_exp2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8807556Z copying torch\include\ATen\ops\special_expit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8814705Z copying torch\include\ATen\ops\special_expit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8821612Z copying torch\include\ATen\ops\special_expit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8833305Z copying torch\include\ATen\ops\special_expit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8840067Z copying torch\include\ATen\ops\special_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8847180Z copying torch\include\ATen\ops\special_expm1_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8854085Z copying torch\include\ATen\ops\special_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8860486Z copying torch\include\ATen\ops\special_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8868156Z copying torch\include\ATen\ops\special_gammainc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8874021Z copying torch\include\ATen\ops\special_gammaincc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8881028Z copying torch\include\ATen\ops\special_gammaincc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8887757Z copying torch\include\ATen\ops\special_gammaincc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8894457Z copying torch\include\ATen\ops\special_gammaincc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8906624Z copying torch\include\ATen\ops\special_gammainc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8913362Z copying torch\include\ATen\ops\special_gammainc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8920130Z copying torch\include\ATen\ops\special_gammainc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8926921Z copying torch\include\ATen\ops\special_gammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8933925Z copying torch\include\ATen\ops\special_gammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8945626Z copying torch\include\ATen\ops\special_gammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8952423Z copying torch\include\ATen\ops\special_gammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8959296Z copying torch\include\ATen\ops\special_hermite_polynomial_h.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8966221Z copying torch\include\ATen\ops\special_hermite_polynomial_he.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8974833Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8986557Z copying torch\include\ATen\ops\special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.8993539Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9000986Z copying torch\include\ATen\ops\special_hermite_polynomial_he_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9009146Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9015340Z copying torch\include\ATen\ops\special_hermite_polynomial_he_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9027229Z copying torch\include\ATen\ops\special_hermite_polynomial_he_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9034686Z copying torch\include\ATen\ops\special_hermite_polynomial_he_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9043733Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9050067Z copying torch\include\ATen\ops\special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9057046Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9064272Z copying torch\include\ATen\ops\special_hermite_polynomial_h_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9071944Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9078637Z copying torch\include\ATen\ops\special_hermite_polynomial_h_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9085821Z copying torch\include\ATen\ops\special_hermite_polynomial_h_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9092885Z copying torch\include\ATen\ops\special_hermite_polynomial_h_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9099946Z copying torch\include\ATen\ops\special_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9107395Z copying torch\include\ATen\ops\special_i0e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9114152Z copying torch\include\ATen\ops\special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9121024Z copying torch\include\ATen\ops\special_i0e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9127829Z copying torch\include\ATen\ops\special_i0e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9134851Z copying torch\include\ATen\ops\special_i0e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9142460Z copying torch\include\ATen\ops\special_i0e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9148640Z copying torch\include\ATen\ops\special_i0e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9155545Z copying torch\include\ATen\ops\special_i0e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9162453Z copying torch\include\ATen\ops\special_i0_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9169325Z copying torch\include\ATen\ops\special_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9176903Z copying torch\include\ATen\ops\special_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9182894Z copying torch\include\ATen\ops\special_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9190088Z copying torch\include\ATen\ops\special_i1e.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9197229Z copying torch\include\ATen\ops\special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9208610Z copying torch\include\ATen\ops\special_i1e_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9215424Z copying torch\include\ATen\ops\special_i1e_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9228684Z copying torch\include\ATen\ops\special_i1e_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9230342Z copying torch\include\ATen\ops\special_i1e_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9237109Z copying torch\include\ATen\ops\special_i1e_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9243961Z copying torch\include\ATen\ops\special_i1e_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9252637Z copying torch\include\ATen\ops\special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9258025Z copying torch\include\ATen\ops\special_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9265223Z copying torch\include\ATen\ops\special_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9272189Z copying torch\include\ATen\ops\special_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9280181Z copying torch\include\ATen\ops\special_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9286439Z copying torch\include\ATen\ops\special_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9293449Z copying torch\include\ATen\ops\special_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9300396Z copying torch\include\ATen\ops\special_laguerre_polynomial_l.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9307630Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9315011Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9321885Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9328617Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9335360Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9342049Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9348889Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9356075Z copying torch\include\ATen\ops\special_laguerre_polynomial_l_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9362799Z copying torch\include\ATen\ops\special_legendre_polynomial_p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9369907Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9376954Z copying torch\include\ATen\ops\special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9388401Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9395037Z copying torch\include\ATen\ops\special_legendre_polynomial_p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9401643Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9408348Z copying torch\include\ATen\ops\special_legendre_polynomial_p_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9415264Z copying torch\include\ATen\ops\special_legendre_polynomial_p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9426857Z copying torch\include\ATen\ops\special_legendre_polynomial_p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9433827Z copying torch\include\ATen\ops\special_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9440750Z copying torch\include\ATen\ops\special_log1p_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9447315Z copying torch\include\ATen\ops\special_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9472064Z copying torch\include\ATen\ops\special_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9480039Z copying torch\include\ATen\ops\special_logit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9486816Z copying torch\include\ATen\ops\special_logit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9493494Z copying torch\include\ATen\ops\special_logit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9500577Z copying torch\include\ATen\ops\special_logit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9507506Z copying torch\include\ATen\ops\special_logsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9518922Z copying torch\include\ATen\ops\special_logsumexp_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9526422Z copying torch\include\ATen\ops\special_logsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9533413Z copying torch\include\ATen\ops\special_logsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9540262Z copying torch\include\ATen\ops\special_log_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9547762Z copying torch\include\ATen\ops\special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9559442Z copying torch\include\ATen\ops\special_log_ndtr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9567643Z copying torch\include\ATen\ops\special_log_ndtr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9573724Z copying torch\include\ATen\ops\special_log_ndtr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9580905Z copying torch\include\ATen\ops\special_log_ndtr_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9587753Z copying torch\include\ATen\ops\special_log_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9635103Z copying torch\include\ATen\ops\special_log_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9635893Z copying torch\include\ATen\ops\special_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9636935Z copying torch\include\ATen\ops\special_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9642879Z copying torch\include\ATen\ops\special_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9649807Z copying torch\include\ATen\ops\special_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9657133Z copying torch\include\ATen\ops\special_modified_bessel_i0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9664334Z copying torch\include\ATen\ops\special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9671497Z copying torch\include\ATen\ops\special_modified_bessel_i0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9678585Z copying torch\include\ATen\ops\special_modified_bessel_i0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9685526Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9692655Z copying torch\include\ATen\ops\special_modified_bessel_i0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9699655Z copying torch\include\ATen\ops\special_modified_bessel_i0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9706914Z copying torch\include\ATen\ops\special_modified_bessel_i0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9713695Z copying torch\include\ATen\ops\special_modified_bessel_i1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9720948Z copying torch\include\ATen\ops\special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9732427Z copying torch\include\ATen\ops\special_modified_bessel_i1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9739509Z copying torch\include\ATen\ops\special_modified_bessel_i1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9746431Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9753727Z copying torch\include\ATen\ops\special_modified_bessel_i1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9760622Z copying torch\include\ATen\ops\special_modified_bessel_i1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9772151Z copying torch\include\ATen\ops\special_modified_bessel_i1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9779131Z copying torch\include\ATen\ops\special_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9787292Z copying torch\include\ATen\ops\special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9830589Z copying torch\include\ATen\ops\special_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9831554Z copying torch\include\ATen\ops\special_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9832570Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9833463Z copying torch\include\ATen\ops\special_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9834429Z copying torch\include\ATen\ops\special_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9836737Z copying torch\include\ATen\ops\special_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9842538Z copying torch\include\ATen\ops\special_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9855121Z copying torch\include\ATen\ops\special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9862135Z copying torch\include\ATen\ops\special_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9869759Z copying torch\include\ATen\ops\special_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9876802Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9884268Z copying torch\include\ATen\ops\special_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9891101Z copying torch\include\ATen\ops\special_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9898133Z copying torch\include\ATen\ops\special_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9905199Z copying torch\include\ATen\ops\special_multigammaln.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9913197Z copying torch\include\ATen\ops\special_multigammaln_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9920455Z copying torch\include\ATen\ops\special_multigammaln_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9927456Z copying torch\include\ATen\ops\special_multigammaln_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9934661Z copying torch\include\ATen\ops\special_ndtr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9941661Z copying torch\include\ATen\ops\special_ndtri.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9948795Z copying torch\include\ATen\ops\special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9955474Z copying torch\include\ATen\ops\special_ndtri_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9962449Z copying torch\include\ATen\ops\special_ndtri_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9969261Z copying torch\include\ATen\ops\special_ndtri_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9976361Z copying torch\include\ATen\ops\special_ndtri_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9983714Z copying torch\include\ATen\ops\special_ndtri_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9990056Z copying torch\include\ATen\ops\special_ndtri_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:48.9997176Z copying torch\include\ATen\ops\special_ndtr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0004244Z copying torch\include\ATen\ops\special_ndtr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0010717Z copying torch\include\ATen\ops\special_ndtr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0017751Z copying torch\include\ATen\ops\special_polygamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0025050Z copying torch\include\ATen\ops\special_polygamma_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0036195Z copying torch\include\ATen\ops\special_polygamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0043003Z copying torch\include\ATen\ops\special_polygamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0049644Z copying torch\include\ATen\ops\special_psi.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0056715Z copying torch\include\ATen\ops\special_psi_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0063406Z copying torch\include\ATen\ops\special_psi_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0070194Z copying torch\include\ATen\ops\special_psi_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0076882Z copying torch\include\ATen\ops\special_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0084128Z copying torch\include\ATen\ops\special_round_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0090714Z copying torch\include\ATen\ops\special_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0097358Z copying torch\include\ATen\ops\special_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0104410Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0111671Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0118627Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0125787Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0132702Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0143963Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0150995Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0158050Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0164666Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0172087Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0178723Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0185872Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0193296Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0200492Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0207421Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0220270Z copying torch\include\ATen\ops\special_scaled_modified_bessel_k1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0227286Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0234887Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0242010Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0248940Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0256159Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0272626Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0279207Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0286295Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0293486Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0306702Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0314417Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0321652Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0328662Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0335952Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0347827Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0355189Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0362242Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0369357Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_u_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0377376Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0389696Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0396240Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0403431Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0410539Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0418294Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0425717Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0432673Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0439613Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_v_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0447563Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0454488Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0462220Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0470591Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0477119Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0525117Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0533370Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0539786Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0546795Z copying torch\include\ATen\ops\special_shifted_chebyshev_polynomial_w_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0553664Z copying torch\include\ATen\ops\special_sinc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0561016Z copying torch\include\ATen\ops\special_sinc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0569146Z copying torch\include\ATen\ops\special_sinc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0576094Z copying torch\include\ATen\ops\special_sinc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0583190Z copying torch\include\ATen\ops\special_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0591550Z copying torch\include\ATen\ops\special_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0597312Z copying torch\include\ATen\ops\special_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0604036Z copying torch\include\ATen\ops\special_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0611015Z copying torch\include\ATen\ops\special_spherical_bessel_j0.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0619915Z copying torch\include\ATen\ops\special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0626183Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0632945Z copying torch\include\ATen\ops\special_spherical_bessel_j0_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0639886Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0651140Z copying torch\include\ATen\ops\special_spherical_bessel_j0_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0658638Z copying torch\include\ATen\ops\special_spherical_bessel_j0_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0666513Z copying torch\include\ATen\ops\special_spherical_bessel_j0_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0672588Z copying torch\include\ATen\ops\special_xlog1py.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0680111Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0691984Z copying torch\include\ATen\ops\special_xlog1py_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0699053Z copying torch\include\ATen\ops\special_xlog1py_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0706343Z copying torch\include\ATen\ops\special_xlog1py_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0713167Z copying torch\include\ATen\ops\special_xlog1py_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0720010Z copying torch\include\ATen\ops\special_xlog1py_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0726976Z copying torch\include\ATen\ops\special_xlog1py_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0734104Z copying torch\include\ATen\ops\special_xlog1py_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0740821Z copying torch\include\ATen\ops\special_xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0748137Z copying torch\include\ATen\ops\special_xlogy_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0755334Z copying torch\include\ATen\ops\special_xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0761931Z copying torch\include\ATen\ops\special_xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0768960Z copying torch\include\ATen\ops\special_zeta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0776033Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0782785Z copying torch\include\ATen\ops\special_zeta_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0789502Z copying torch\include\ATen\ops\special_zeta_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0796672Z copying torch\include\ATen\ops\special_zeta_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0803339Z copying torch\include\ATen\ops\special_zeta_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0810326Z copying torch\include\ATen\ops\special_zeta_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0817090Z copying torch\include\ATen\ops\special_zeta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0824190Z copying torch\include\ATen\ops\special_zeta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0835562Z copying torch\include\ATen\ops\split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0842076Z copying torch\include\ATen\ops\split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0849063Z copying torch\include\ATen\ops\split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0855732Z copying torch\include\ATen\ops\split_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0862676Z copying torch\include\ATen\ops\split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0874209Z copying torch\include\ATen\ops\split_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0881100Z copying torch\include\ATen\ops\split_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0887621Z copying torch\include\ATen\ops\split_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0894386Z copying torch\include\ATen\ops\split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0901141Z copying torch\include\ATen\ops\split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0913099Z copying torch\include\ATen\ops\split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0920340Z copying torch\include\ATen\ops\split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0928255Z copying torch\include\ATen\ops\split_with_sizes_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0934661Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0941799Z copying torch\include\ATen\ops\split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0954168Z copying torch\include\ATen\ops\split_with_sizes_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0960946Z copying torch\include\ATen\ops\split_with_sizes_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0968051Z copying torch\include\ATen\ops\split_with_sizes_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0975158Z copying torch\include\ATen\ops\split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0981757Z copying torch\include\ATen\ops\split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0988727Z copying torch\include\ATen\ops\sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.0995722Z copying torch\include\ATen\ops\sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1003336Z copying torch\include\ATen\ops\sqrt_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1009249Z copying torch\include\ATen\ops\sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1016128Z copying torch\include\ATen\ops\sqrt_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1022453Z copying torch\include\ATen\ops\sqrt_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1028998Z copying torch\include\ATen\ops\sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1035921Z copying torch\include\ATen\ops\sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1043640Z copying torch\include\ATen\ops\square.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1049758Z copying torch\include\ATen\ops\square_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1061224Z copying torch\include\ATen\ops\square_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1068076Z copying torch\include\ATen\ops\square_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1074559Z copying torch\include\ATen\ops\squeeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1081111Z copying torch\include\ATen\ops\squeeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1088070Z copying torch\include\ATen\ops\squeeze_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1100406Z copying torch\include\ATen\ops\squeeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1108038Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1114746Z copying torch\include\ATen\ops\squeeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1121591Z copying torch\include\ATen\ops\squeeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1128865Z copying torch\include\ATen\ops\squeeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1136440Z copying torch\include\ATen\ops\squeeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1142774Z copying torch\include\ATen\ops\squeeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1149514Z copying torch\include\ATen\ops\sspaddmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1156273Z copying torch\include\ATen\ops\sspaddmm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1163240Z copying torch\include\ATen\ops\sspaddmm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1170968Z copying torch\include\ATen\ops\sspaddmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1177334Z copying torch\include\ATen\ops\sspaddmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1184150Z copying torch\include\ATen\ops\sspaddmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1190777Z copying torch\include\ATen\ops\stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1197566Z copying torch\include\ATen\ops\stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1204768Z copying torch\include\ATen\ops\stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1211372Z copying torch\include\ATen\ops\stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1217277Z copying torch\include\ATen\ops\std.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1223965Z copying torch\include\ATen\ops\std_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1230654Z copying torch\include\ATen\ops\std_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1237879Z copying torch\include\ATen\ops\std_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1244558Z copying torch\include\ATen\ops\std_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1251578Z copying torch\include\ATen\ops\std_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1258270Z copying torch\include\ATen\ops\std_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1266197Z copying torch\include\ATen\ops\std_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1271900Z copying torch\include\ATen\ops\std_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1278553Z copying torch\include\ATen\ops\std_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1285451Z copying torch\include\ATen\ops\std_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1292193Z copying torch\include\ATen\ops\std_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1298888Z copying torch\include\ATen\ops\std_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1305187Z copying torch\include\ATen\ops\stft.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1313086Z copying torch\include\ATen\ops\stft_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1318641Z copying torch\include\ATen\ops\stft_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1325146Z copying torch\include\ATen\ops\stft_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1331361Z copying torch\include\ATen\ops\stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1342921Z copying torch\include\ATen\ops\stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1349353Z copying torch\include\ATen\ops\stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1355685Z copying torch\include\ATen\ops\stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1362250Z copying torch\include\ATen\ops\sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1369362Z copying torch\include\ATen\ops\subtract.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1379728Z copying torch\include\ATen\ops\subtract_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1386369Z copying torch\include\ATen\ops\subtract_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1393024Z copying torch\include\ATen\ops\subtract_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1400157Z copying torch\include\ATen\ops\sub_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1406734Z copying torch\include\ATen\ops\sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1466592Z copying torch\include\ATen\ops\sub_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1473297Z copying torch\include\ATen\ops\sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1480097Z copying torch\include\ATen\ops\sub_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1486263Z copying torch\include\ATen\ops\sub_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1493150Z copying torch\include\ATen\ops\sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1499686Z copying torch\include\ATen\ops\sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1505870Z copying torch\include\ATen\ops\sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1513221Z copying torch\include\ATen\ops\sum_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1520109Z copying torch\include\ATen\ops\sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1526896Z copying torch\include\ATen\ops\sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1533809Z copying torch\include\ATen\ops\sum_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1540561Z copying torch\include\ATen\ops\sum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1547093Z copying torch\include\ATen\ops\sum_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1553308Z copying torch\include\ATen\ops\sum_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1559823Z copying torch\include\ATen\ops\sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1574289Z copying torch\include\ATen\ops\sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1580827Z copying torch\include\ATen\ops\sum_to_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1587935Z copying torch\include\ATen\ops\sum_to_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1595464Z copying torch\include\ATen\ops\sum_to_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1601509Z copying torch\include\ATen\ops\sum_to_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1608387Z copying torch\include\ATen\ops\svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1635934Z copying torch\include\ATen\ops\svd_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1642548Z copying torch\include\ATen\ops\svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1649417Z copying torch\include\ATen\ops\svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1655784Z copying torch\include\ATen\ops\swapaxes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1662728Z copying torch\include\ATen\ops\swapaxes_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1670284Z copying torch\include\ATen\ops\swapaxes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1676417Z copying torch\include\ATen\ops\swapaxes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1683291Z copying torch\include\ATen\ops\swapdims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1690221Z copying torch\include\ATen\ops\swapdims_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1696894Z copying torch\include\ATen\ops\swapdims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1703874Z copying torch\include\ATen\ops\swapdims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1711147Z copying torch\include\ATen\ops\sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1718075Z copying torch\include\ATen\ops\sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1724855Z copying torch\include\ATen\ops\sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1753607Z copying torch\include\ATen\ops\sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1754757Z copying torch\include\ATen\ops\sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1755870Z copying torch\include\ATen\ops\sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1762838Z copying torch\include\ATen\ops\sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1771472Z copying torch\include\ATen\ops\sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1777840Z copying torch\include\ATen\ops\sym_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1784896Z copying torch\include\ATen\ops\sym_numel_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1791542Z copying torch\include\ATen\ops\sym_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1797797Z copying torch\include\ATen\ops\sym_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1804885Z copying torch\include\ATen\ops\sym_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1811098Z copying torch\include\ATen\ops\sym_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1818524Z copying torch\include\ATen\ops\sym_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1825059Z copying torch\include\ATen\ops\sym_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1831812Z copying torch\include\ATen\ops\sym_storage_offset.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1838736Z copying torch\include\ATen\ops\sym_storage_offset_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1845510Z copying torch\include\ATen\ops\sym_storage_offset_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1852127Z copying torch\include\ATen\ops\sym_storage_offset_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1858856Z copying torch\include\ATen\ops\sym_stride.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1866248Z copying torch\include\ATen\ops\sym_stride_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1873026Z copying torch\include\ATen\ops\sym_stride_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1884474Z copying torch\include\ATen\ops\sym_stride_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1891262Z copying torch\include\ATen\ops\t.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1897485Z copying torch\include\ATen\ops\take.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1903918Z copying torch\include\ATen\ops\take_along_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1911118Z copying torch\include\ATen\ops\take_along_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1917920Z copying torch\include\ATen\ops\take_along_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1924902Z copying torch\include\ATen\ops\take_along_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1931380Z copying torch\include\ATen\ops\take_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1938055Z copying torch\include\ATen\ops\take_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1944508Z copying torch\include\ATen\ops\take_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1951077Z copying torch\include\ATen\ops\take_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1957364Z copying torch\include\ATen\ops\tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1963516Z copying torch\include\ATen\ops\tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1969735Z copying torch\include\ATen\ops\tanh_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1976934Z copying torch\include\ATen\ops\tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1983374Z copying torch\include\ATen\ops\tanh_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1990176Z copying torch\include\ATen\ops\tanh_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.1996682Z copying torch\include\ATen\ops\tanh_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2003218Z copying torch\include\ATen\ops\tanh_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2009876Z copying torch\include\ATen\ops\tanh_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2016811Z copying torch\include\ATen\ops\tanh_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2023850Z copying torch\include\ATen\ops\tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2030208Z copying torch\include\ATen\ops\tanh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2036680Z copying torch\include\ATen\ops\tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2043455Z copying torch\include\ATen\ops\tanh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2049660Z copying torch\include\ATen\ops\tanh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2056613Z copying torch\include\ATen\ops\tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2063195Z copying torch\include\ATen\ops\tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2070483Z copying torch\include\ATen\ops\tan_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2077931Z copying torch\include\ATen\ops\tan_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2083862Z copying torch\include\ATen\ops\tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2090549Z copying torch\include\ATen\ops\tan_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2096668Z copying torch\include\ATen\ops\tan_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2103189Z copying torch\include\ATen\ops\tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2109713Z copying torch\include\ATen\ops\tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2121545Z copying torch\include\ATen\ops\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2128164Z copying torch\include\ATen\ops\tensordot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2136062Z copying torch\include\ATen\ops\tensordot_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2142048Z copying torch\include\ATen\ops\tensordot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2148636Z copying torch\include\ATen\ops\tensordot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2155297Z copying torch\include\ATen\ops\tensor_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2163195Z copying torch\include\ATen\ops\tensor_split_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2170527Z copying torch\include\ATen\ops\tensor_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2176876Z copying torch\include\ATen\ops\tensor_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2183688Z copying torch\include\ATen\ops\thnn_conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2191409Z copying torch\include\ATen\ops\thnn_conv2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2198633Z copying torch\include\ATen\ops\thnn_conv2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2205290Z copying torch\include\ATen\ops\thnn_conv2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2212117Z copying torch\include\ATen\ops\threshold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2236372Z copying torch\include\ATen\ops\threshold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2243759Z copying torch\include\ATen\ops\threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2251397Z copying torch\include\ATen\ops\threshold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2266473Z copying torch\include\ATen\ops\threshold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2309980Z copying torch\include\ATen\ops\threshold_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2310844Z copying torch\include\ATen\ops\threshold_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2311700Z copying torch\include\ATen\ops\threshold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2312520Z copying torch\include\ATen\ops\threshold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2313488Z copying torch\include\ATen\ops\threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2315871Z copying torch\include\ATen\ops\threshold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2321553Z copying torch\include\ATen\ops\threshold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2327952Z copying torch\include\ATen\ops\threshold_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2334449Z copying torch\include\ATen\ops\threshold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2341194Z copying torch\include\ATen\ops\threshold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2347890Z copying torch\include\ATen\ops\threshold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2354518Z copying torch\include\ATen\ops\tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2361544Z copying torch\include\ATen\ops\tile_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2368113Z copying torch\include\ATen\ops\tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2374628Z copying torch\include\ATen\ops\tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2380907Z copying torch\include\ATen\ops\to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2386965Z copying torch\include\ATen\ops\topk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2398618Z copying torch\include\ATen\ops\topk_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2405493Z copying torch\include\ATen\ops\topk_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2412749Z copying torch\include\ATen\ops\topk_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2419566Z copying torch\include\ATen\ops\topk_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2426128Z copying torch\include\ATen\ops\topk_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2432772Z copying torch\include\ATen\ops\topk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2439259Z copying torch\include\ATen\ops\topk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2445825Z copying torch\include\ATen\ops\to_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2452918Z copying torch\include\ATen\ops\to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2458862Z copying torch\include\ATen\ops\to_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2470446Z copying torch\include\ATen\ops\to_dense_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2477417Z copying torch\include\ATen\ops\to_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2484039Z copying torch\include\ATen\ops\to_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2490796Z copying torch\include\ATen\ops\to_dense_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2497227Z copying torch\include\ATen\ops\to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2504019Z copying torch\include\ATen\ops\to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2510954Z copying torch\include\ATen\ops\to_mkldnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2517390Z copying torch\include\ATen\ops\to_mkldnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2524570Z copying torch\include\ATen\ops\to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2531104Z copying torch\include\ATen\ops\to_mkldnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2537679Z copying torch\include\ATen\ops\to_mkldnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2544612Z copying torch\include\ATen\ops\to_mkldnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2580224Z copying torch\include\ATen\ops\to_mkldnn_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2586477Z copying torch\include\ATen\ops\to_mkldnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2593617Z copying torch\include\ATen\ops\to_mkldnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2600489Z copying torch\include\ATen\ops\to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2606831Z copying torch\include\ATen\ops\to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2613547Z copying torch\include\ATen\ops\to_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2620601Z copying torch\include\ATen\ops\to_padded_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2627094Z copying torch\include\ATen\ops\to_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2634115Z copying torch\include\ATen\ops\to_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2641135Z copying torch\include\ATen\ops\to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2647521Z copying torch\include\ATen\ops\to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2654485Z copying torch\include\ATen\ops\to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2661182Z copying torch\include\ATen\ops\to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2667645Z copying torch\include\ATen\ops\to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2675747Z copying torch\include\ATen\ops\to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2681698Z copying torch\include\ATen\ops\to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2688311Z copying torch\include\ATen\ops\to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2695150Z copying torch\include\ATen\ops\to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2702337Z copying torch\include\ATen\ops\to_sparse_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2710105Z copying torch\include\ATen\ops\to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2716410Z copying torch\include\ATen\ops\to_sparse_csc_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2722951Z copying torch\include\ATen\ops\to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2729583Z copying torch\include\ATen\ops\to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2736414Z copying torch\include\ATen\ops\to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2768003Z copying torch\include\ATen\ops\to_sparse_csr_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2769045Z copying torch\include\ATen\ops\to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2769793Z copying torch\include\ATen\ops\to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2774709Z copying torch\include\ATen\ops\to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2781642Z copying torch\include\ATen\ops\to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2788396Z copying torch\include\ATen\ops\trace.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2794879Z copying torch\include\ATen\ops\trace_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2803529Z copying torch\include\ATen\ops\trace_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2808947Z copying torch\include\ATen\ops\trace_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2815568Z copying torch\include\ATen\ops\trace_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2822564Z copying torch\include\ATen\ops\trace_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2829288Z copying torch\include\ATen\ops\trace_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2836199Z copying torch\include\ATen\ops\trace_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2842503Z copying torch\include\ATen\ops\trace_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2850295Z copying torch\include\ATen\ops\trace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2855959Z copying torch\include\ATen\ops\transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2862877Z copying torch\include\ATen\ops\transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2869613Z copying torch\include\ATen\ops\transpose_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2876211Z copying torch\include\ATen\ops\transpose_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2883690Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2890470Z copying torch\include\ATen\ops\transpose_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2897761Z copying torch\include\ATen\ops\transpose_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2904241Z copying torch\include\ATen\ops\transpose_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2910892Z copying torch\include\ATen\ops\transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2924173Z copying torch\include\ATen\ops\transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2930853Z copying torch\include\ATen\ops\trapezoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2937963Z copying torch\include\ATen\ops\trapezoid_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2944465Z copying torch\include\ATen\ops\trapezoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2951839Z copying torch\include\ATen\ops\trapezoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2958504Z copying torch\include\ATen\ops\trapz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2965205Z copying torch\include\ATen\ops\trapz_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2971845Z copying torch\include\ATen\ops\trapz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2978415Z copying torch\include\ATen\ops\trapz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2985154Z copying torch\include\ATen\ops\triangular_solve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2992159Z copying torch\include\ATen\ops\triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.2999198Z copying torch\include\ATen\ops\triangular_solve_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3005821Z copying torch\include\ATen\ops\triangular_solve_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3012686Z copying torch\include\ATen\ops\triangular_solve_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3019594Z copying torch\include\ATen\ops\triangular_solve_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3031006Z copying torch\include\ATen\ops\triangular_solve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3038106Z copying torch\include\ATen\ops\triangular_solve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3044527Z copying torch\include\ATen\ops\tril.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3053675Z copying torch\include\ATen\ops\tril_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3059347Z copying torch\include\ATen\ops\tril_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3065791Z copying torch\include\ATen\ops\tril_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3072539Z copying torch\include\ATen\ops\tril_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3079499Z copying torch\include\ATen\ops\tril_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3086658Z copying torch\include\ATen\ops\tril_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3094153Z copying torch\include\ATen\ops\tril_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3100796Z copying torch\include\ATen\ops\tril_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3107845Z copying torch\include\ATen\ops\tril_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3114407Z copying torch\include\ATen\ops\tril_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3120655Z copying torch\include\ATen\ops\tril_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3128010Z copying torch\include\ATen\ops\tril_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3134606Z copying torch\include\ATen\ops\tril_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3140465Z copying torch\include\ATen\ops\triplet_margin_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3147606Z copying torch\include\ATen\ops\triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3154637Z copying torch\include\ATen\ops\triplet_margin_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3161435Z copying torch\include\ATen\ops\triplet_margin_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3169137Z copying torch\include\ATen\ops\triu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3175472Z copying torch\include\ATen\ops\triu_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3181895Z copying torch\include\ATen\ops\triu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3188617Z copying torch\include\ATen\ops\triu_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3195283Z copying torch\include\ATen\ops\triu_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3202301Z copying torch\include\ATen\ops\triu_indices_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3210012Z copying torch\include\ATen\ops\triu_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3216391Z copying torch\include\ATen\ops\triu_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3223078Z copying torch\include\ATen\ops\triu_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3230449Z copying torch\include\ATen\ops\triu_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3238644Z copying torch\include\ATen\ops\triu_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3259137Z copying torch\include\ATen\ops\triu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3259907Z copying torch\include\ATen\ops\triu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3260605Z copying torch\include\ATen\ops\triu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3265397Z copying torch\include\ATen\ops\true_divide.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3272628Z copying torch\include\ATen\ops\true_divide_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3279221Z copying torch\include\ATen\ops\true_divide_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3286053Z copying torch\include\ATen\ops\true_divide_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3292614Z copying torch\include\ATen\ops\trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3299630Z copying torch\include\ATen\ops\trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3306412Z copying torch\include\ATen\ops\trunc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3313007Z copying torch\include\ATen\ops\trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3319485Z copying torch\include\ATen\ops\trunc_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3325884Z copying torch\include\ATen\ops\trunc_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3332577Z copying torch\include\ATen\ops\trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3344659Z copying torch\include\ATen\ops\trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3351283Z copying torch\include\ATen\ops\type_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3358069Z copying torch\include\ATen\ops\type_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3364417Z copying torch\include\ATen\ops\type_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3370651Z copying torch\include\ATen\ops\type_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3406793Z copying torch\include\ATen\ops\t_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3408922Z copying torch\include\ATen\ops\t_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3409984Z copying torch\include\ATen\ops\t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3411167Z copying torch\include\ATen\ops\t_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3418391Z copying torch\include\ATen\ops\t_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3425010Z copying torch\include\ATen\ops\t_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3432544Z copying torch\include\ATen\ops\t_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3438431Z copying torch\include\ATen\ops\t_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3444414Z copying torch\include\ATen\ops\unbind.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3450904Z copying torch\include\ATen\ops\unbind_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3457994Z copying torch\include\ATen\ops\unbind_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3464733Z copying torch\include\ATen\ops\unbind_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3473354Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3480016Z copying torch\include\ATen\ops\unbind_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3486706Z copying torch\include\ATen\ops\unbind_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3493771Z copying torch\include\ATen\ops\unbind_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3501704Z copying torch\include\ATen\ops\unbind_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3523378Z copying torch\include\ATen\ops\unbind_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3530253Z copying torch\include\ATen\ops\unflatten.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3537768Z copying torch\include\ATen\ops\unflatten_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3544501Z copying torch\include\ATen\ops\unflatten_dense_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3552184Z copying torch\include\ATen\ops\unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3559735Z copying torch\include\ATen\ops\unflatten_dense_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3565694Z copying torch\include\ATen\ops\unflatten_dense_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3572577Z copying torch\include\ATen\ops\unflatten_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3584306Z copying torch\include\ATen\ops\unflatten_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3591231Z copying torch\include\ATen\ops\unfold.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3597429Z copying torch\include\ATen\ops\unfold_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3604388Z copying torch\include\ATen\ops\unfold_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3611944Z copying torch\include\ATen\ops\unfold_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3618350Z copying torch\include\ATen\ops\unfold_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3625224Z copying torch\include\ATen\ops\unfold_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3632812Z copying torch\include\ATen\ops\unfold_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3640445Z copying torch\include\ATen\ops\unfold_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3646936Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3653957Z copying torch\include\ATen\ops\unfold_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3660590Z copying torch\include\ATen\ops\unfold_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3692864Z copying torch\include\ATen\ops\unfold_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3699363Z copying torch\include\ATen\ops\unfold_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3706344Z copying torch\include\ATen\ops\unfold_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3713425Z copying torch\include\ATen\ops\unfold_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3721395Z copying torch\include\ATen\ops\unfold_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3727469Z copying torch\include\ATen\ops\unfold_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3734191Z copying torch\include\ATen\ops\uniform.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3741096Z copying torch\include\ATen\ops\uniform_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3752488Z copying torch\include\ATen\ops\uniform_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3759144Z copying torch\include\ATen\ops\uniform_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3766348Z copying torch\include\ATen\ops\uniform_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3772760Z copying torch\include\ATen\ops\uniform_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3779442Z copying torch\include\ATen\ops\uniform_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3791167Z copying torch\include\ATen\ops\unique_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3799013Z copying torch\include\ATen\ops\unique_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3805764Z copying torch\include\ATen\ops\unique_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3812873Z copying torch\include\ATen\ops\unique_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3820309Z copying torch\include\ATen\ops\unique_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3827016Z copying torch\include\ATen\ops\unique_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3833798Z copying torch\include\ATen\ops\unique_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3840809Z copying torch\include\ATen\ops\unique_dim_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3847517Z copying torch\include\ATen\ops\unique_dim_consecutive.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3855074Z copying torch\include\ATen\ops\unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3869824Z copying torch\include\ATen\ops\unique_dim_consecutive_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3877077Z copying torch\include\ATen\ops\unique_dim_consecutive_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3883948Z copying torch\include\ATen\ops\unique_dim_consecutive_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3890804Z copying torch\include\ATen\ops\unique_dim_consecutive_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3897693Z copying torch\include\ATen\ops\unique_dim_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3904795Z copying torch\include\ATen\ops\unique_dim_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3911771Z copying torch\include\ATen\ops\unique_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3918372Z copying torch\include\ATen\ops\unique_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3925232Z copying torch\include\ATen\ops\unsafe_chunk.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3932157Z copying torch\include\ATen\ops\unsafe_chunk_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3938611Z copying torch\include\ATen\ops\unsafe_chunk_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3945260Z copying torch\include\ATen\ops\unsafe_chunk_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3951872Z copying torch\include\ATen\ops\unsafe_split.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3958901Z copying torch\include\ATen\ops\unsafe_split_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3965840Z copying torch\include\ATen\ops\unsafe_split_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3972569Z copying torch\include\ATen\ops\unsafe_split_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3979528Z copying torch\include\ATen\ops\unsafe_split_with_sizes.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3986695Z copying torch\include\ATen\ops\unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.3993635Z copying torch\include\ATen\ops\unsafe_split_with_sizes_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4000387Z copying torch\include\ATen\ops\unsafe_split_with_sizes_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4007286Z copying torch\include\ATen\ops\unsqueeze.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4014327Z copying torch\include\ATen\ops\unsqueeze_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4020860Z copying torch\include\ATen\ops\unsqueeze_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4027914Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4035197Z copying torch\include\ATen\ops\unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4042154Z copying torch\include\ATen\ops\unsqueeze_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4049199Z copying torch\include\ATen\ops\unsqueeze_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4056930Z copying torch\include\ATen\ops\unsqueeze_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4062973Z copying torch\include\ATen\ops\unsqueeze_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4069684Z copying torch\include\ATen\ops\upsample_bicubic2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4076860Z copying torch\include\ATen\ops\upsample_bicubic2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4084027Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4090725Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4098075Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4104730Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4111975Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4118836Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4125700Z copying torch\include\ATen\ops\upsample_bicubic2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4133619Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4140423Z copying torch\include\ATen\ops\upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4147292Z copying torch\include\ATen\ops\upsample_bicubic2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4154179Z copying torch\include\ATen\ops\upsample_bicubic2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4161301Z copying torch\include\ATen\ops\upsample_bicubic2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4169722Z copying torch\include\ATen\ops\upsample_bicubic2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4176396Z copying torch\include\ATen\ops\upsample_bicubic2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4183500Z copying torch\include\ATen\ops\upsample_bicubic2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4190377Z copying torch\include\ATen\ops\upsample_bilinear2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4198916Z copying torch\include\ATen\ops\upsample_bilinear2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4205466Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4212287Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4225365Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4233623Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4239527Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4246888Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4254273Z copying torch\include\ATen\ops\upsample_bilinear2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4262980Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4270473Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4278029Z copying torch\include\ATen\ops\upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4284992Z copying torch\include\ATen\ops\upsample_bilinear2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4292110Z copying torch\include\ATen\ops\upsample_bilinear2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4299417Z copying torch\include\ATen\ops\upsample_bilinear2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4306506Z copying torch\include\ATen\ops\upsample_bilinear2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4313393Z copying torch\include\ATen\ops\upsample_bilinear2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4320099Z copying torch\include\ATen\ops\upsample_bilinear2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4329259Z copying torch\include\ATen\ops\upsample_linear1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4334872Z copying torch\include\ATen\ops\upsample_linear1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4342238Z copying torch\include\ATen\ops\upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4349246Z copying torch\include\ATen\ops\upsample_linear1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4356310Z copying torch\include\ATen\ops\upsample_linear1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4363333Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4370481Z copying torch\include\ATen\ops\upsample_linear1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4377417Z copying torch\include\ATen\ops\upsample_linear1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4384831Z copying torch\include\ATen\ops\upsample_linear1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4392709Z copying torch\include\ATen\ops\upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4400291Z copying torch\include\ATen\ops\upsample_linear1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4406387Z copying torch\include\ATen\ops\upsample_linear1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4413815Z copying torch\include\ATen\ops\upsample_linear1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4420788Z copying torch\include\ATen\ops\upsample_linear1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4428046Z copying torch\include\ATen\ops\upsample_linear1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4434893Z copying torch\include\ATen\ops\upsample_linear1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4441597Z copying torch\include\ATen\ops\upsample_linear1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4448720Z copying torch\include\ATen\ops\upsample_nearest1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4456018Z copying torch\include\ATen\ops\upsample_nearest1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4463558Z copying torch\include\ATen\ops\upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4470522Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4477658Z copying torch\include\ATen\ops\upsample_nearest1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.4484240Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5172875Z copying torch\include\ATen\ops\upsample_nearest1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5183342Z copying torch\include\ATen\ops\upsample_nearest1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5193296Z copying torch\include\ATen\ops\upsample_nearest1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5207147Z copying torch\include\ATen\ops\upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5217376Z copying torch\include\ATen\ops\upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5225784Z copying torch\include\ATen\ops\upsample_nearest1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5235582Z copying torch\include\ATen\ops\upsample_nearest1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5243995Z copying torch\include\ATen\ops\upsample_nearest1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5254232Z copying torch\include\ATen\ops\upsample_nearest1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5262387Z copying torch\include\ATen\ops\upsample_nearest1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5269996Z copying torch\include\ATen\ops\upsample_nearest1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5277564Z copying torch\include\ATen\ops\upsample_nearest2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5285128Z copying torch\include\ATen\ops\upsample_nearest2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5293185Z copying torch\include\ATen\ops\upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5301791Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5307947Z copying torch\include\ATen\ops\upsample_nearest2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5315157Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5322065Z copying torch\include\ATen\ops\upsample_nearest2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5334595Z copying torch\include\ATen\ops\upsample_nearest2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5341870Z copying torch\include\ATen\ops\upsample_nearest2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5349425Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5356639Z copying torch\include\ATen\ops\upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5369000Z copying torch\include\ATen\ops\upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5376298Z copying torch\include\ATen\ops\upsample_nearest2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5383252Z copying torch\include\ATen\ops\upsample_nearest2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5390879Z copying torch\include\ATen\ops\upsample_nearest2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5397904Z copying torch\include\ATen\ops\upsample_nearest2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5405173Z copying torch\include\ATen\ops\upsample_nearest2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5416926Z copying torch\include\ATen\ops\upsample_nearest2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5423739Z copying torch\include\ATen\ops\upsample_nearest3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5430832Z copying torch\include\ATen\ops\upsample_nearest3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5438683Z copying torch\include\ATen\ops\upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5445779Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5453113Z copying torch\include\ATen\ops\upsample_nearest3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5460147Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5467185Z copying torch\include\ATen\ops\upsample_nearest3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5474657Z copying torch\include\ATen\ops\upsample_nearest3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5481962Z copying torch\include\ATen\ops\upsample_nearest3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5489521Z copying torch\include\ATen\ops\upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5496516Z copying torch\include\ATen\ops\upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5503346Z copying torch\include\ATen\ops\upsample_nearest3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5510178Z copying torch\include\ATen\ops\upsample_nearest3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5517203Z copying torch\include\ATen\ops\upsample_nearest3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5524338Z copying torch\include\ATen\ops\upsample_nearest3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5531532Z copying torch\include\ATen\ops\upsample_nearest3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5538418Z copying torch\include\ATen\ops\upsample_nearest3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5545417Z copying torch\include\ATen\ops\upsample_trilinear3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5552579Z copying torch\include\ATen\ops\upsample_trilinear3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5560000Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5568708Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5575433Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5582544Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5589850Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5603388Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5610439Z copying torch\include\ATen\ops\upsample_trilinear3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5618414Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5626614Z copying torch\include\ATen\ops\upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5632413Z copying torch\include\ATen\ops\upsample_trilinear3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5639596Z copying torch\include\ATen\ops\upsample_trilinear3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5647043Z copying torch\include\ATen\ops\upsample_trilinear3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5655277Z copying torch\include\ATen\ops\upsample_trilinear3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5661669Z copying torch\include\ATen\ops\upsample_trilinear3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5668849Z copying torch\include\ATen\ops\upsample_trilinear3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5680325Z copying torch\include\ATen\ops\values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5687109Z copying torch\include\ATen\ops\values_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5695840Z copying torch\include\ATen\ops\values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5702000Z copying torch\include\ATen\ops\values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5709461Z copying torch\include\ATen\ops\values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5721839Z copying torch\include\ATen\ops\values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5728805Z copying torch\include\ATen\ops\values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5736351Z copying torch\include\ATen\ops\values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5742864Z copying torch\include\ATen\ops\values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5750511Z copying torch\include\ATen\ops\value_selecting_reduction_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5763055Z copying torch\include\ATen\ops\value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5770355Z copying torch\include\ATen\ops\value_selecting_reduction_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5777894Z copying torch\include\ATen\ops\value_selecting_reduction_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5784631Z copying torch\include\ATen\ops\vander.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5791629Z copying torch\include\ATen\ops\vander_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5802622Z copying torch\include\ATen\ops\vander_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5809272Z copying torch\include\ATen\ops\vander_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5816514Z copying torch\include\ATen\ops\var.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5823624Z copying torch\include\ATen\ops\var_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5830725Z copying torch\include\ATen\ops\var_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5841285Z copying torch\include\ATen\ops\var_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5847945Z copying torch\include\ATen\ops\var_mean.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5854702Z copying torch\include\ATen\ops\var_mean_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5861911Z copying torch\include\ATen\ops\var_mean_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5868773Z copying torch\include\ATen\ops\var_mean_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5884298Z copying torch\include\ATen\ops\var_mean_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5891409Z copying torch\include\ATen\ops\var_mean_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5898130Z copying torch\include\ATen\ops\var_mean_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5905169Z copying torch\include\ATen\ops\var_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5911968Z copying torch\include\ATen\ops\var_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5924827Z copying torch\include\ATen\ops\vdot.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5931409Z copying torch\include\ATen\ops\vdot_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5937863Z copying torch\include\ATen\ops\vdot_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5944951Z copying torch\include\ATen\ops\vdot_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5951549Z copying torch\include\ATen\ops\vdot_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5958215Z copying torch\include\ATen\ops\vdot_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5964711Z copying torch\include\ATen\ops\view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5971066Z copying torch\include\ATen\ops\view_as.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5977316Z copying torch\include\ATen\ops\view_as_complex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5984470Z copying torch\include\ATen\ops\view_as_complex_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.5996363Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6003707Z copying torch\include\ATen\ops\view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6010370Z copying torch\include\ATen\ops\view_as_complex_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6017187Z copying torch\include\ATen\ops\view_as_complex_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6024250Z copying torch\include\ATen\ops\view_as_complex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6037963Z copying torch\include\ATen\ops\view_as_complex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6045053Z copying torch\include\ATen\ops\view_as_complex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6052244Z copying torch\include\ATen\ops\view_as_complex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6058984Z copying torch\include\ATen\ops\view_as_complex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6066632Z copying torch\include\ATen\ops\view_as_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6077099Z copying torch\include\ATen\ops\view_as_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6084789Z copying torch\include\ATen\ops\view_as_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6090879Z copying torch\include\ATen\ops\view_as_real.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6098063Z copying torch\include\ATen\ops\view_as_real_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6105490Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6117486Z copying torch\include\ATen\ops\view_as_real_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6125340Z copying torch\include\ATen\ops\view_as_real_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6131549Z copying torch\include\ATen\ops\view_as_real_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6139134Z copying torch\include\ATen\ops\view_as_real_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6145953Z copying torch\include\ATen\ops\view_as_real_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6153976Z copying torch\include\ATen\ops\view_as_real_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6161193Z copying torch\include\ATen\ops\view_as_real_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6167894Z copying torch\include\ATen\ops\view_as_real_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6192804Z copying torch\include\ATen\ops\view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6199308Z copying torch\include\ATen\ops\view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6211799Z copying torch\include\ATen\ops\view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6217873Z copying torch\include\ATen\ops\view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6225062Z copying torch\include\ATen\ops\view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6231751Z copying torch\include\ATen\ops\view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6238790Z copying torch\include\ATen\ops\view_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6250402Z copying torch\include\ATen\ops\view_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6257775Z copying torch\include\ATen\ops\view_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6265680Z copying torch\include\ATen\ops\view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6274176Z copying torch\include\ATen\ops\view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6281057Z copying torch\include\ATen\ops\vsplit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6295586Z copying torch\include\ATen\ops\vsplit_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6302245Z copying torch\include\ATen\ops\vsplit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6309959Z copying torch\include\ATen\ops\vsplit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6316007Z copying torch\include\ATen\ops\vstack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6322661Z copying torch\include\ATen\ops\vstack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6334261Z copying torch\include\ATen\ops\vstack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6340568Z copying torch\include\ATen\ops\vstack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6347119Z copying torch\include\ATen\ops\where.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6397387Z copying torch\include\ATen\ops\where_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6404010Z copying torch\include\ATen\ops\where_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6415010Z copying torch\include\ATen\ops\where_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6421796Z copying torch\include\ATen\ops\where_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6429476Z copying torch\include\ATen\ops\where_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6436536Z copying torch\include\ATen\ops\xlogy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6443806Z copying torch\include\ATen\ops\xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6454827Z copying torch\include\ATen\ops\xlogy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6462388Z copying torch\include\ATen\ops\xlogy_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6470707Z copying torch\include\ATen\ops\xlogy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6476643Z copying torch\include\ATen\ops\xlogy_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6483593Z copying torch\include\ATen\ops\xlogy_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6490827Z copying torch\include\ATen\ops\xlogy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6498506Z copying torch\include\ATen\ops\xlogy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6505535Z copying torch\include\ATen\ops\xor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6512154Z copying torch\include\ATen\ops\xor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6518708Z copying torch\include\ATen\ops\xor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6525548Z copying torch\include\ATen\ops\xor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6532321Z copying torch\include\ATen\ops\zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6540242Z copying torch\include\ATen\ops\zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6546505Z copying torch\include\ATen\ops\zeros_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6553483Z copying torch\include\ATen\ops\zeros_like.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6565473Z copying torch\include\ATen\ops\zeros_like_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6572402Z copying torch\include\ATen\ops\zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6580736Z copying torch\include\ATen\ops\zeros_like_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6586638Z copying torch\include\ATen\ops\zeros_like_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6593858Z copying torch\include\ATen\ops\zeros_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6605140Z copying torch\include\ATen\ops\zeros_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6612616Z copying torch\include\ATen\ops\zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6619471Z copying torch\include\ATen\ops\zero_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6626371Z copying torch\include\ATen\ops\zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6633215Z copying torch\include\ATen\ops\zero_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6640101Z copying torch\include\ATen\ops\zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6647282Z copying torch\include\ATen\ops\zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6658343Z copying torch\include\ATen\ops\_adaptive_avg_pool2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6661453Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6670415Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6680372Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6687498Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6695025Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6701979Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6710318Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6716861Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6723757Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6730833Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6737994Z copying torch\include\ATen\ops\_adaptive_avg_pool2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6744991Z copying torch\include\ATen\ops\_adaptive_avg_pool3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6756757Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6764043Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6770989Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6778001Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6785170Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6798058Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6804572Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6811710Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6819083Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6825848Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6833260Z copying torch\include\ATen\ops\_adaptive_avg_pool3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6848579Z copying torch\include\ATen\ops\_addmm_activation.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6856162Z copying torch\include\ATen\ops\_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6862926Z copying torch\include\ATen\ops\_addmm_activation_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6869628Z copying torch\include\ATen\ops\_addmm_activation_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6876888Z copying torch\include\ATen\ops\_addmm_activation_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6883662Z copying torch\include\ATen\ops\_addmm_activation_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6890776Z copying torch\include\ATen\ops\_addmm_activation_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6899136Z copying torch\include\ATen\ops\_addmm_activation_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6905086Z copying torch\include\ATen\ops\_add_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6912131Z copying torch\include\ATen\ops\_add_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6919348Z copying torch\include\ATen\ops\_add_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6926256Z copying torch\include\ATen\ops\_add_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6932998Z copying torch\include\ATen\ops\_add_relu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6940030Z copying torch\include\ATen\ops\_add_relu_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6951515Z copying torch\include\ATen\ops\_add_relu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6958488Z copying torch\include\ATen\ops\_add_relu_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6965460Z copying torch\include\ATen\ops\_add_relu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6972307Z copying torch\include\ATen\ops\_add_relu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6979384Z copying torch\include\ATen\ops\_aminmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6991174Z copying torch\include\ATen\ops\_aminmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.6998133Z copying torch\include\ATen\ops\_aminmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7006262Z copying torch\include\ATen\ops\_aminmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7012440Z copying torch\include\ATen\ops\_aminmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7019505Z copying torch\include\ATen\ops\_aminmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7026754Z copying torch\include\ATen\ops\_amp_foreach_non_finite_check_and_unscale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7033981Z 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-07-17T08:09:49.7041755Z 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-07-17T08:09:49.7049237Z 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-07-17T08:09:49.7058331Z 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-07-17T08:09:49.7064535Z 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-07-17T08:09:49.7071586Z copying torch\include\ATen\ops\_amp_update_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7078510Z copying torch\include\ATen\ops\_amp_update_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7085587Z copying torch\include\ATen\ops\_amp_update_scale_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7093505Z copying torch\include\ATen\ops\_amp_update_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7105040Z copying torch\include\ATen\ops\_amp_update_scale_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7111973Z copying torch\include\ATen\ops\_amp_update_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7118830Z copying torch\include\ATen\ops\_amp_update_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7126069Z copying torch\include\ATen\ops\_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7132808Z copying torch\include\ATen\ops\_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7144161Z copying torch\include\ATen\ops\_assert_async_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7151301Z copying torch\include\ATen\ops\_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7158302Z copying torch\include\ATen\ops\_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7165431Z copying torch\include\ATen\ops\_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7172538Z copying torch\include\ATen\ops\_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7179475Z copying torch\include\ATen\ops\_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7187079Z copying torch\include\ATen\ops\_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7193544Z copying torch\include\ATen\ops\_assert_tensor_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7200991Z copying torch\include\ATen\ops\_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7207745Z copying torch\include\ATen\ops\_assert_tensor_metadata_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7216303Z copying torch\include\ATen\ops\_assert_tensor_metadata_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7222527Z copying torch\include\ATen\ops\_assert_tensor_metadata_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7229903Z copying torch\include\ATen\ops\_autocast_to_full_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7236712Z copying torch\include\ATen\ops\_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7245069Z copying torch\include\ATen\ops\_autocast_to_full_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7256161Z copying torch\include\ATen\ops\_autocast_to_full_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7265929Z copying torch\include\ATen\ops\_autocast_to_reduced_precision.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7275075Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7278496Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7286893Z copying torch\include\ATen\ops\_autocast_to_reduced_precision_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7297395Z copying torch\include\ATen\ops\_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7304609Z copying torch\include\ATen\ops\_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7311609Z copying torch\include\ATen\ops\_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7318020Z copying torch\include\ATen\ops\_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7326428Z copying torch\include\ATen\ops\_batch_norm_impl_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7332378Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7343810Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7350782Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7358085Z copying torch\include\ATen\ops\_batch_norm_impl_index_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7379147Z copying torch\include\ATen\ops\_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7386137Z copying torch\include\ATen\ops\_batch_norm_impl_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7393160Z copying torch\include\ATen\ops\_batch_norm_impl_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7399863Z copying torch\include\ATen\ops\_batch_norm_no_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7407562Z copying torch\include\ATen\ops\_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7414374Z copying torch\include\ATen\ops\_batch_norm_no_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7425650Z copying torch\include\ATen\ops\_batch_norm_no_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7452429Z copying torch\include\ATen\ops\_batch_norm_with_update.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7460832Z copying torch\include\ATen\ops\_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7467400Z copying torch\include\ATen\ops\_batch_norm_with_update_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7474683Z copying torch\include\ATen\ops\_batch_norm_with_update_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7481535Z copying torch\include\ATen\ops\_batch_norm_with_update_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7489430Z copying torch\include\ATen\ops\_batch_norm_with_update_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7495913Z copying torch\include\ATen\ops\_cast_Byte.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7508852Z copying torch\include\ATen\ops\_cast_Byte_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7515031Z copying torch\include\ATen\ops\_cast_Byte_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7526022Z copying torch\include\ATen\ops\_cast_Byte_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7533059Z copying torch\include\ATen\ops\_cast_Char.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7540201Z copying torch\include\ATen\ops\_cast_Char_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7547005Z copying torch\include\ATen\ops\_cast_Char_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7553924Z copying torch\include\ATen\ops\_cast_Char_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7565028Z copying torch\include\ATen\ops\_cast_Double.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7572645Z copying torch\include\ATen\ops\_cast_Double_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7579140Z copying torch\include\ATen\ops\_cast_Double_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7586041Z copying torch\include\ATen\ops\_cast_Double_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7592736Z copying torch\include\ATen\ops\_cast_Float.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7600430Z copying torch\include\ATen\ops\_cast_Float_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7607019Z copying torch\include\ATen\ops\_cast_Float_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7613868Z copying torch\include\ATen\ops\_cast_Float_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7620808Z copying torch\include\ATen\ops\_cast_Half.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7628083Z copying torch\include\ATen\ops\_cast_Half_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7639173Z copying torch\include\ATen\ops\_cast_Half_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7645939Z copying torch\include\ATen\ops\_cast_Half_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7652942Z copying torch\include\ATen\ops\_cast_Int.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7660330Z copying torch\include\ATen\ops\_cast_Int_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7667025Z copying torch\include\ATen\ops\_cast_Int_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7674552Z copying torch\include\ATen\ops\_cast_Int_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7682079Z copying torch\include\ATen\ops\_cast_Long.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7693687Z copying torch\include\ATen\ops\_cast_Long_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7700825Z copying torch\include\ATen\ops\_cast_Long_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7707504Z copying torch\include\ATen\ops\_cast_Long_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7714556Z copying torch\include\ATen\ops\_cast_Short.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7722806Z copying torch\include\ATen\ops\_cast_Short_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7729396Z copying torch\include\ATen\ops\_cast_Short_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7736341Z copying torch\include\ATen\ops\_cast_Short_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7742913Z copying torch\include\ATen\ops\_cdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7750469Z copying torch\include\ATen\ops\_cdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7757241Z copying torch\include\ATen\ops\_cdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7764037Z copying torch\include\ATen\ops\_cdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7773634Z copying torch\include\ATen\ops\_cdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7778943Z copying torch\include\ATen\ops\_cdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7786205Z copying torch\include\ATen\ops\_cdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7793246Z copying torch\include\ATen\ops\_cdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7799921Z copying torch\include\ATen\ops\_cdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7806987Z copying torch\include\ATen\ops\_cdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7814078Z copying torch\include\ATen\ops\_cdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7821153Z copying torch\include\ATen\ops\_cdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7827908Z copying torch\include\ATen\ops\_cholesky_solve_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7835145Z copying torch\include\ATen\ops\_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7841783Z copying torch\include\ATen\ops\_cholesky_solve_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7849158Z copying torch\include\ATen\ops\_cholesky_solve_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7856538Z copying torch\include\ATen\ops\_cholesky_solve_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7863750Z copying torch\include\ATen\ops\_cholesky_solve_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7870993Z copying torch\include\ATen\ops\_choose_qparams_per_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7877929Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7884874Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7891864Z copying torch\include\ATen\ops\_choose_qparams_per_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7899150Z copying torch\include\ATen\ops\_chunk_cat.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7906119Z copying torch\include\ATen\ops\_chunk_cat_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7912635Z copying torch\include\ATen\ops\_chunk_cat_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7919556Z copying torch\include\ATen\ops\_chunk_cat_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7926328Z copying torch\include\ATen\ops\_chunk_cat_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7933029Z copying torch\include\ATen\ops\_coalesce.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7939709Z copying torch\include\ATen\ops\_coalesced.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7946673Z copying torch\include\ATen\ops\_coalesced_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7954411Z copying torch\include\ATen\ops\_coalesced_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7961059Z copying torch\include\ATen\ops\_coalesced_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7967583Z copying torch\include\ATen\ops\_coalesced_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7975271Z copying torch\include\ATen\ops\_coalesce_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7982026Z copying torch\include\ATen\ops\_coalesce_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7988539Z copying torch\include\ATen\ops\_coalesce_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.7995645Z copying torch\include\ATen\ops\_compute_linear_combination.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8002800Z copying torch\include\ATen\ops\_compute_linear_combination_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8009562Z copying torch\include\ATen\ops\_compute_linear_combination_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8016480Z copying torch\include\ATen\ops\_compute_linear_combination_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8023175Z copying torch\include\ATen\ops\_compute_linear_combination_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8029928Z copying torch\include\ATen\ops\_conj.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8036492Z copying torch\include\ATen\ops\_conj_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8042979Z copying torch\include\ATen\ops\_conj_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8050405Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8057379Z copying torch\include\ATen\ops\_conj_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8069020Z copying torch\include\ATen\ops\_conj_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8075577Z copying torch\include\ATen\ops\_conj_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8082785Z copying torch\include\ATen\ops\_conj_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8090482Z copying torch\include\ATen\ops\_conj_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8097174Z copying torch\include\ATen\ops\_conj_physical.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8109802Z copying torch\include\ATen\ops\_conj_physical_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8116444Z copying torch\include\ATen\ops\_conj_physical_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8124147Z copying torch\include\ATen\ops\_conj_physical_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8131477Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8138436Z 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-07-17T08:09:49.8145593Z 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-07-17T08:09:49.8153328Z 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-07-17T08:09:49.8160029Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8167645Z 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-07-17T08:09:49.8174587Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8183211Z copying torch\include\ATen\ops\_convert_indices_from_coo_to_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8189494Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8197128Z 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-07-17T08:09:49.8204274Z 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-07-17T08:09:49.8227012Z 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-07-17T08:09:49.8240197Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8246698Z 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-07-17T08:09:49.8254507Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8261411Z copying torch\include\ATen\ops\_convert_indices_from_csr_to_coo_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8286838Z copying torch\include\ATen\ops\_convert_weight_to_int4pack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8287728Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8288634Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8292913Z 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-07-17T08:09:49.8299579Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8306393Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8313688Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8321820Z copying torch\include\ATen\ops\_convert_weight_to_int4pack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8327775Z copying torch\include\ATen\ops\_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8334870Z copying torch\include\ATen\ops\_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8341968Z copying torch\include\ATen\ops\_convolution_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8353810Z copying torch\include\ATen\ops\_convolution_double_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8361011Z copying torch\include\ATen\ops\_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8368862Z copying torch\include\ATen\ops\_convolution_double_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8374911Z copying torch\include\ATen\ops\_convolution_double_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8381745Z copying torch\include\ATen\ops\_convolution_mode.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8388812Z copying torch\include\ATen\ops\_convolution_mode_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8395964Z copying torch\include\ATen\ops\_convolution_mode_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8402805Z copying torch\include\ATen\ops\_convolution_mode_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8409708Z copying torch\include\ATen\ops\_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8416709Z copying torch\include\ATen\ops\_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8424142Z copying torch\include\ATen\ops\_conv_depthwise2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8430677Z copying torch\include\ATen\ops\_conv_depthwise2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8437239Z copying torch\include\ATen\ops\_conv_depthwise2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8443681Z copying torch\include\ATen\ops\_conv_depthwise2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8450577Z copying torch\include\ATen\ops\_copy_from.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8457220Z copying torch\include\ATen\ops\_copy_from_and_resize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8464385Z copying torch\include\ATen\ops\_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8471085Z copying torch\include\ATen\ops\_copy_from_and_resize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8477620Z copying torch\include\ATen\ops\_copy_from_and_resize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8484945Z copying torch\include\ATen\ops\_copy_from_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8491675Z copying torch\include\ATen\ops\_copy_from_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8498410Z copying torch\include\ATen\ops\_copy_from_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8505112Z copying torch\include\ATen\ops\_cslt_compress.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8511944Z copying torch\include\ATen\ops\_cslt_compress_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8518584Z copying torch\include\ATen\ops\_cslt_compress_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8526179Z copying torch\include\ATen\ops\_cslt_compress_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8532207Z copying torch\include\ATen\ops\_cslt_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8539707Z copying torch\include\ATen\ops\_cslt_sparse_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8546669Z copying torch\include\ATen\ops\_cslt_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8554819Z copying torch\include\ATen\ops\_cslt_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8561168Z copying torch\include\ATen\ops\_cslt_sparse_mm_search.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8568144Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8575204Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8582034Z copying torch\include\ATen\ops\_cslt_sparse_mm_search_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8589530Z copying torch\include\ATen\ops\_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8596299Z copying torch\include\ATen\ops\_ctc_loss_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8603399Z copying torch\include\ATen\ops\_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8610213Z copying torch\include\ATen\ops\_ctc_loss_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8617573Z copying torch\include\ATen\ops\_ctc_loss_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8624327Z copying torch\include\ATen\ops\_ctc_loss_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8636974Z copying torch\include\ATen\ops\_ctc_loss_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8643338Z copying torch\include\ATen\ops\_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8650316Z copying torch\include\ATen\ops\_ctc_loss_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8657954Z copying torch\include\ATen\ops\_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8665810Z copying torch\include\ATen\ops\_ctc_loss_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8677376Z copying torch\include\ATen\ops\_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8683606Z copying torch\include\ATen\ops\_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8690698Z copying torch\include\ATen\ops\_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8697559Z copying torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8705791Z copying torch\include\ATen\ops\_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8712101Z copying torch\include\ATen\ops\_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8718968Z copying torch\include\ATen\ops\_cudnn_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8726276Z copying torch\include\ATen\ops\_cudnn_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8734103Z copying torch\include\ATen\ops\_cudnn_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8740723Z copying torch\include\ATen\ops\_cudnn_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8747621Z copying torch\include\ATen\ops\_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8754688Z copying torch\include\ATen\ops\_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8762273Z copying torch\include\ATen\ops\_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8769896Z copying torch\include\ATen\ops\_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8796131Z copying torch\include\ATen\ops\_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8796938Z copying torch\include\ATen\ops\_cudnn_init_dropout_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8797893Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8804991Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8812175Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8820445Z copying torch\include\ATen\ops\_cudnn_init_dropout_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8826043Z copying torch\include\ATen\ops\_cudnn_rnn.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8833214Z copying torch\include\ATen\ops\_cudnn_rnn_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8840928Z copying torch\include\ATen\ops\_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8848040Z copying torch\include\ATen\ops\_cudnn_rnn_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8855005Z copying torch\include\ATen\ops\_cudnn_rnn_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8861815Z copying torch\include\ATen\ops\_cudnn_rnn_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8868793Z copying torch\include\ATen\ops\_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8875492Z copying torch\include\ATen\ops\_cudnn_rnn_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8882464Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8889449Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8896755Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8903712Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8910561Z copying torch\include\ATen\ops\_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8917385Z copying torch\include\ATen\ops\_cudnn_rnn_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8924164Z copying torch\include\ATen\ops\_cudnn_rnn_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8931260Z copying torch\include\ATen\ops\_cufft_clear_plan_cache.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8938766Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8946486Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8952615Z copying torch\include\ATen\ops\_cufft_clear_plan_cache_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8959528Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8966868Z 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-07-17T08:09:49.8974705Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8981395Z copying torch\include\ATen\ops\_cufft_get_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8988225Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.8995617Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9002397Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9009495Z copying torch\include\ATen\ops\_cufft_get_plan_cache_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9017001Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9032332Z 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-07-17T08:09:49.9041644Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9049873Z copying torch\include\ATen\ops\_cufft_set_plan_cache_max_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9059797Z copying torch\include\ATen\ops\_cummax_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9067970Z copying torch\include\ATen\ops\_cummax_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9078037Z copying torch\include\ATen\ops\_cummax_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9086622Z copying torch\include\ATen\ops\_cummax_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9096613Z copying torch\include\ATen\ops\_cummax_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9140576Z copying torch\include\ATen\ops\_cummin_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9147563Z copying torch\include\ATen\ops\_cummin_helper_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9154805Z copying torch\include\ATen\ops\_cummin_helper_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9161673Z copying torch\include\ATen\ops\_cummin_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9169377Z copying torch\include\ATen\ops\_cummin_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9176975Z copying torch\include\ATen\ops\_debug_has_internal_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9184026Z copying torch\include\ATen\ops\_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9190989Z copying torch\include\ATen\ops\_debug_has_internal_overlap_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9197952Z copying torch\include\ATen\ops\_debug_has_internal_overlap_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9205062Z copying torch\include\ATen\ops\_dimI.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9211670Z copying torch\include\ATen\ops\_dimI_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9218995Z copying torch\include\ATen\ops\_dimI_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9225855Z copying torch\include\ATen\ops\_dimV.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9232321Z copying torch\include\ATen\ops\_dimV_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9239143Z copying torch\include\ATen\ops\_dimV_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9245903Z copying torch\include\ATen\ops\_dim_arange.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9253030Z copying torch\include\ATen\ops\_dim_arange_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9260010Z copying torch\include\ATen\ops\_dim_arange_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9266436Z copying torch\include\ATen\ops\_dim_arange_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9273774Z copying torch\include\ATen\ops\_dirichlet_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9280834Z copying torch\include\ATen\ops\_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9287472Z copying torch\include\ATen\ops\_dirichlet_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9294892Z copying torch\include\ATen\ops\_dirichlet_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9301910Z copying torch\include\ATen\ops\_dirichlet_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9308129Z copying torch\include\ATen\ops\_dirichlet_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9314848Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9322511Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9329003Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9335918Z copying torch\include\ATen\ops\_dyn_quant_matmul_4bit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9343316Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9350306Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9357263Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9364245Z copying torch\include\ATen\ops\_dyn_quant_pack_4bit_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9371014Z copying torch\include\ATen\ops\_efficientzerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9378236Z copying torch\include\ATen\ops\_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9385543Z copying torch\include\ATen\ops\_efficientzerotensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9392739Z copying torch\include\ATen\ops\_efficientzerotensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9399522Z copying torch\include\ATen\ops\_efficientzerotensor_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9406798Z copying torch\include\ATen\ops\_efficientzerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9414017Z copying torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9420762Z copying torch\include\ATen\ops\_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9427759Z copying torch\include\ATen\ops\_efficient_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9434808Z copying torch\include\ATen\ops\_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9441532Z copying torch\include\ATen\ops\_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9448528Z copying torch\include\ATen\ops\_efficient_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9464828Z copying torch\include\ATen\ops\_efficient_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9472118Z copying torch\include\ATen\ops\_efficient_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9479017Z copying torch\include\ATen\ops\_efficient_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9485947Z copying torch\include\ATen\ops\_embedding_bag.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9492724Z copying torch\include\ATen\ops\_embedding_bag_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9501414Z copying torch\include\ATen\ops\_embedding_bag_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9507815Z copying torch\include\ATen\ops\_embedding_bag_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9514748Z copying torch\include\ATen\ops\_embedding_bag_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9521829Z copying torch\include\ATen\ops\_embedding_bag_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9530213Z copying torch\include\ATen\ops\_embedding_bag_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9536700Z copying torch\include\ATen\ops\_embedding_bag_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9543894Z copying torch\include\ATen\ops\_embedding_bag_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9551131Z copying torch\include\ATen\ops\_embedding_bag_dense_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9559006Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9565724Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9573298Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9580338Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9587904Z copying torch\include\ATen\ops\_embedding_bag_dense_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9595068Z copying torch\include\ATen\ops\_embedding_bag_forward_only.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9602642Z copying torch\include\ATen\ops\_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9610657Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9617153Z copying torch\include\ATen\ops\_embedding_bag_forward_only_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9624250Z copying torch\include\ATen\ops\_embedding_bag_forward_only_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9631413Z copying torch\include\ATen\ops\_embedding_bag_forward_only_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9639331Z copying torch\include\ATen\ops\_embedding_bag_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9645580Z copying torch\include\ATen\ops\_embedding_bag_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9652784Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9660399Z 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-07-17T08:09:49.9668700Z 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-07-17T08:09:49.9675013Z 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-07-17T08:09:49.9682929Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9691623Z copying torch\include\ATen\ops\_embedding_bag_per_sample_weights_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9698150Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9706469Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9714499Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9721024Z copying torch\include\ATen\ops\_embedding_bag_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9728069Z copying torch\include\ATen\ops\_empty_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9735381Z copying torch\include\ATen\ops\_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9743247Z copying torch\include\ATen\ops\_empty_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9749314Z copying torch\include\ATen\ops\_empty_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9756574Z copying torch\include\ATen\ops\_empty_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9763299Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9770668Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9778503Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9785654Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9792894Z copying torch\include\ATen\ops\_empty_per_channel_affine_quantized_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9799486Z copying torch\include\ATen\ops\_euclidean_dist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9807906Z copying torch\include\ATen\ops\_euclidean_dist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9813300Z copying torch\include\ATen\ops\_euclidean_dist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9820049Z copying torch\include\ATen\ops\_euclidean_dist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9827265Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9834203Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9841196Z 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-07-17T08:09:49.9847980Z 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-07-17T08:09:49.9855908Z 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-07-17T08:09:49.9864039Z 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-07-17T08:09:49.9872145Z 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-07-17T08:09:49.9879696Z 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-07-17T08:09:49.9887181Z 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-07-17T08:09:49.9895108Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9902938Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_channel_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9911285Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9922028Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:49.9932877Z 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-07-17T08:09:49.9943451Z 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-07-17T08:09:49.9953488Z 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-07-17T08:09:49.9963596Z 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-07-17T08:09:49.9972723Z 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-07-17T08:09:49.9980150Z 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-07-17T08:09:49.9987146Z 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-07-17T08:09:49.9993948Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0000881Z copying torch\include\ATen\ops\_fake_quantize_learnable_per_tensor_affine_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0008198Z 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-07-17T08:09:50.0015644Z 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-07-17T08:09:50.0022657Z 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-07-17T08:09:50.0029844Z 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-07-17T08:09:50.0037091Z 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-07-17T08:09:50.0043944Z 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-07-17T08:09:50.0050755Z copying torch\include\ATen\ops\_fft_c2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0057005Z copying torch\include\ATen\ops\_fft_c2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0063728Z copying torch\include\ATen\ops\_fft_c2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0070309Z copying torch\include\ATen\ops\_fft_c2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0077116Z copying torch\include\ATen\ops\_fft_c2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0083739Z copying torch\include\ATen\ops\_fft_c2r.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0090227Z copying torch\include\ATen\ops\_fft_c2r_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0097231Z copying torch\include\ATen\ops\_fft_c2r_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0146324Z copying torch\include\ATen\ops\_fft_c2r_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0155923Z copying torch\include\ATen\ops\_fft_c2r_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0163881Z copying torch\include\ATen\ops\_fft_r2c.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0173224Z copying torch\include\ATen\ops\_fft_r2c_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0181695Z copying torch\include\ATen\ops\_fft_r2c_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0191038Z copying torch\include\ATen\ops\_fft_r2c_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0198940Z copying torch\include\ATen\ops\_fft_r2c_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0208438Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0237139Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0245432Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0255043Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0263291Z copying torch\include\ATen\ops\_fill_mem_eff_dropout_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0272658Z copying torch\include\ATen\ops\_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0280975Z copying torch\include\ATen\ops\_flash_attention_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0309995Z copying torch\include\ATen\ops\_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0318776Z copying torch\include\ATen\ops\_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0329071Z copying torch\include\ATen\ops\_flash_attention_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0336298Z copying torch\include\ATen\ops\_flash_attention_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0344870Z copying torch\include\ATen\ops\_flash_attention_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0352379Z copying torch\include\ATen\ops\_flash_attention_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0361234Z copying torch\include\ATen\ops\_foobar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0368149Z copying torch\include\ATen\ops\_foobar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0374812Z copying torch\include\ATen\ops\_foobar_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0381375Z copying torch\include\ATen\ops\_foobar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0390032Z copying torch\include\ATen\ops\_foobar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0396704Z copying torch\include\ATen\ops\_foreach_abs.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0403679Z copying torch\include\ATen\ops\_foreach_abs_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0410398Z copying torch\include\ATen\ops\_foreach_abs_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0417221Z copying torch\include\ATen\ops\_foreach_abs_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0423925Z copying torch\include\ATen\ops\_foreach_abs_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0430666Z copying torch\include\ATen\ops\_foreach_acos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0437685Z copying torch\include\ATen\ops\_foreach_acos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0445973Z copying torch\include\ATen\ops\_foreach_acos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0455564Z copying torch\include\ATen\ops\_foreach_acos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0463689Z copying torch\include\ATen\ops\_foreach_acos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0473290Z copying torch\include\ATen\ops\_foreach_add.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0481438Z copying torch\include\ATen\ops\_foreach_addcdiv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0491216Z copying torch\include\ATen\ops\_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0500026Z copying torch\include\ATen\ops\_foreach_addcdiv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0509424Z copying torch\include\ATen\ops\_foreach_addcdiv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0518299Z copying torch\include\ATen\ops\_foreach_addcdiv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0527849Z copying torch\include\ATen\ops\_foreach_addcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0536443Z copying torch\include\ATen\ops\_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0545953Z copying torch\include\ATen\ops\_foreach_addcmul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0555480Z copying torch\include\ATen\ops\_foreach_addcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0563944Z copying torch\include\ATen\ops\_foreach_addcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0573717Z copying torch\include\ATen\ops\_foreach_add_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0581826Z copying torch\include\ATen\ops\_foreach_add_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0591187Z copying torch\include\ATen\ops\_foreach_add_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0599645Z copying torch\include\ATen\ops\_foreach_add_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0608941Z copying torch\include\ATen\ops\_foreach_asin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0617619Z copying torch\include\ATen\ops\_foreach_asin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0627163Z copying torch\include\ATen\ops\_foreach_asin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0635532Z copying torch\include\ATen\ops\_foreach_asin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0644858Z copying torch\include\ATen\ops\_foreach_asin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0653279Z copying torch\include\ATen\ops\_foreach_atan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0662922Z copying torch\include\ATen\ops\_foreach_atan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0671220Z copying torch\include\ATen\ops\_foreach_atan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0680679Z copying torch\include\ATen\ops\_foreach_atan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0689420Z copying torch\include\ATen\ops\_foreach_atan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0699133Z copying torch\include\ATen\ops\_foreach_ceil.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0707556Z copying torch\include\ATen\ops\_foreach_ceil_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0716809Z copying torch\include\ATen\ops\_foreach_ceil_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0724972Z copying torch\include\ATen\ops\_foreach_ceil_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0735828Z copying torch\include\ATen\ops\_foreach_ceil_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0744034Z copying torch\include\ATen\ops\_foreach_clamp_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0754098Z copying torch\include\ATen\ops\_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0762347Z copying torch\include\ATen\ops\_foreach_clamp_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0771970Z copying torch\include\ATen\ops\_foreach_clamp_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0780168Z copying torch\include\ATen\ops\_foreach_clamp_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0790051Z copying torch\include\ATen\ops\_foreach_clamp_min.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0805058Z copying torch\include\ATen\ops\_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0813909Z copying torch\include\ATen\ops\_foreach_clamp_min_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0824025Z copying torch\include\ATen\ops\_foreach_clamp_min_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0830829Z copying torch\include\ATen\ops\_foreach_clamp_min_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0839459Z copying torch\include\ATen\ops\_foreach_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0846573Z copying torch\include\ATen\ops\_foreach_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0855529Z copying torch\include\ATen\ops\_foreach_copy_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0862314Z copying torch\include\ATen\ops\_foreach_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0869033Z copying torch\include\ATen\ops\_foreach_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0875988Z copying torch\include\ATen\ops\_foreach_cos.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0884569Z copying torch\include\ATen\ops\_foreach_cosh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0891773Z copying torch\include\ATen\ops\_foreach_cosh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0903500Z copying torch\include\ATen\ops\_foreach_cosh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0906729Z copying torch\include\ATen\ops\_foreach_cosh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0913360Z copying torch\include\ATen\ops\_foreach_cosh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0920712Z copying torch\include\ATen\ops\_foreach_cos_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0927924Z copying torch\include\ATen\ops\_foreach_cos_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0934619Z copying torch\include\ATen\ops\_foreach_cos_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0941564Z copying torch\include\ATen\ops\_foreach_cos_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0948340Z copying torch\include\ATen\ops\_foreach_div.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0955432Z copying torch\include\ATen\ops\_foreach_div_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0962391Z copying torch\include\ATen\ops\_foreach_div_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0969140Z copying torch\include\ATen\ops\_foreach_div_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0976057Z copying torch\include\ATen\ops\_foreach_div_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0982834Z copying torch\include\ATen\ops\_foreach_erf.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0989578Z copying torch\include\ATen\ops\_foreach_erfc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.0996525Z copying torch\include\ATen\ops\_foreach_erfc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1003330Z copying torch\include\ATen\ops\_foreach_erfc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1010137Z copying torch\include\ATen\ops\_foreach_erfc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1017239Z copying torch\include\ATen\ops\_foreach_erfc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1024523Z copying torch\include\ATen\ops\_foreach_erf_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1031294Z copying torch\include\ATen\ops\_foreach_erf_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1038050Z copying torch\include\ATen\ops\_foreach_erf_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1044944Z copying torch\include\ATen\ops\_foreach_erf_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1051762Z copying torch\include\ATen\ops\_foreach_exp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1058479Z copying torch\include\ATen\ops\_foreach_expm1.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1065682Z copying torch\include\ATen\ops\_foreach_expm1_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1080743Z copying torch\include\ATen\ops\_foreach_expm1_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1087654Z copying torch\include\ATen\ops\_foreach_expm1_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1094416Z copying torch\include\ATen\ops\_foreach_expm1_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1101983Z copying torch\include\ATen\ops\_foreach_exp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1108622Z copying torch\include\ATen\ops\_foreach_exp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1116011Z copying torch\include\ATen\ops\_foreach_exp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1122705Z copying torch\include\ATen\ops\_foreach_exp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1129534Z copying torch\include\ATen\ops\_foreach_floor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1136626Z copying torch\include\ATen\ops\_foreach_floor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1143323Z copying torch\include\ATen\ops\_foreach_floor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1150141Z copying torch\include\ATen\ops\_foreach_floor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1156603Z copying torch\include\ATen\ops\_foreach_floor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1187188Z copying torch\include\ATen\ops\_foreach_frac.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1194187Z copying torch\include\ATen\ops\_foreach_frac_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1201144Z copying torch\include\ATen\ops\_foreach_frac_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1208111Z copying torch\include\ATen\ops\_foreach_frac_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1215766Z copying torch\include\ATen\ops\_foreach_frac_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1223617Z copying torch\include\ATen\ops\_foreach_lerp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1230180Z copying torch\include\ATen\ops\_foreach_lerp_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1237008Z copying torch\include\ATen\ops\_foreach_lerp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1243904Z copying torch\include\ATen\ops\_foreach_lerp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1250776Z copying torch\include\ATen\ops\_foreach_lerp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1258816Z copying torch\include\ATen\ops\_foreach_lgamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1265407Z copying torch\include\ATen\ops\_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1272359Z copying torch\include\ATen\ops\_foreach_lgamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1279662Z copying torch\include\ATen\ops\_foreach_lgamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1287640Z copying torch\include\ATen\ops\_foreach_lgamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1323840Z copying torch\include\ATen\ops\_foreach_log.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1324590Z copying torch\include\ATen\ops\_foreach_log10.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1325467Z copying torch\include\ATen\ops\_foreach_log10_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1326394Z copying torch\include\ATen\ops\_foreach_log10_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1327196Z copying torch\include\ATen\ops\_foreach_log10_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1331228Z copying torch\include\ATen\ops\_foreach_log10_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1338545Z copying torch\include\ATen\ops\_foreach_log1p.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1345652Z copying torch\include\ATen\ops\_foreach_log1p_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1352833Z copying torch\include\ATen\ops\_foreach_log1p_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1359702Z copying torch\include\ATen\ops\_foreach_log1p_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1366451Z copying torch\include\ATen\ops\_foreach_log1p_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1373401Z copying torch\include\ATen\ops\_foreach_log2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1380690Z copying torch\include\ATen\ops\_foreach_log2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1387994Z copying torch\include\ATen\ops\_foreach_log2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1394806Z copying torch\include\ATen\ops\_foreach_log2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1402002Z copying torch\include\ATen\ops\_foreach_log2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1409178Z copying torch\include\ATen\ops\_foreach_log_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1416114Z copying torch\include\ATen\ops\_foreach_log_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1422883Z copying torch\include\ATen\ops\_foreach_log_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1429812Z copying torch\include\ATen\ops\_foreach_log_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1436707Z copying torch\include\ATen\ops\_foreach_max.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1443538Z copying torch\include\ATen\ops\_foreach_maximum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1450791Z copying torch\include\ATen\ops\_foreach_maximum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1457955Z copying torch\include\ATen\ops\_foreach_maximum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1464867Z copying torch\include\ATen\ops\_foreach_maximum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1471742Z copying torch\include\ATen\ops\_foreach_maximum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1479174Z copying torch\include\ATen\ops\_foreach_max_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1486077Z copying torch\include\ATen\ops\_foreach_max_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1493160Z copying torch\include\ATen\ops\_foreach_max_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1499998Z copying torch\include\ATen\ops\_foreach_max_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1506704Z copying torch\include\ATen\ops\_foreach_minimum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1513752Z copying torch\include\ATen\ops\_foreach_minimum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1520579Z copying torch\include\ATen\ops\_foreach_minimum_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1527549Z copying torch\include\ATen\ops\_foreach_minimum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1534484Z copying torch\include\ATen\ops\_foreach_minimum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1541321Z copying torch\include\ATen\ops\_foreach_mul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1548520Z copying torch\include\ATen\ops\_foreach_mul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1555284Z copying torch\include\ATen\ops\_foreach_mul_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1562158Z copying torch\include\ATen\ops\_foreach_mul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1568999Z copying torch\include\ATen\ops\_foreach_mul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1576194Z copying torch\include\ATen\ops\_foreach_neg.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1583248Z copying torch\include\ATen\ops\_foreach_neg_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1590000Z copying torch\include\ATen\ops\_foreach_neg_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1596903Z copying torch\include\ATen\ops\_foreach_neg_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1603855Z copying torch\include\ATen\ops\_foreach_neg_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1611105Z copying torch\include\ATen\ops\_foreach_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1618689Z copying torch\include\ATen\ops\_foreach_norm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1627147Z copying torch\include\ATen\ops\_foreach_norm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1633739Z copying torch\include\ATen\ops\_foreach_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1640646Z copying torch\include\ATen\ops\_foreach_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1648000Z copying torch\include\ATen\ops\_foreach_pow.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1656378Z copying torch\include\ATen\ops\_foreach_pow_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1663323Z copying torch\include\ATen\ops\_foreach_pow_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1670448Z copying torch\include\ATen\ops\_foreach_pow_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1677465Z copying torch\include\ATen\ops\_foreach_pow_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1684754Z copying torch\include\ATen\ops\_foreach_reciprocal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1691986Z copying torch\include\ATen\ops\_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1698924Z copying torch\include\ATen\ops\_foreach_reciprocal_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1706152Z copying torch\include\ATen\ops\_foreach_reciprocal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1713502Z copying torch\include\ATen\ops\_foreach_reciprocal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1720013Z copying torch\include\ATen\ops\_foreach_round.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1727452Z copying torch\include\ATen\ops\_foreach_round_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1734428Z copying torch\include\ATen\ops\_foreach_round_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1742255Z copying torch\include\ATen\ops\_foreach_round_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1748947Z copying torch\include\ATen\ops\_foreach_round_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1755768Z copying torch\include\ATen\ops\_foreach_rsqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1763085Z copying torch\include\ATen\ops\_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1771471Z copying torch\include\ATen\ops\_foreach_rsqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1777675Z copying torch\include\ATen\ops\_foreach_rsqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1807562Z copying torch\include\ATen\ops\_foreach_rsqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1832114Z copying torch\include\ATen\ops\_foreach_sigmoid.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1839229Z copying torch\include\ATen\ops\_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1847176Z copying torch\include\ATen\ops\_foreach_sigmoid_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1853354Z copying torch\include\ATen\ops\_foreach_sigmoid_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1860467Z copying torch\include\ATen\ops\_foreach_sigmoid_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1867425Z copying torch\include\ATen\ops\_foreach_sign.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1874570Z copying torch\include\ATen\ops\_foreach_sign_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1881355Z copying torch\include\ATen\ops\_foreach_sign_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1888157Z copying torch\include\ATen\ops\_foreach_sign_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1895123Z copying torch\include\ATen\ops\_foreach_sign_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1901801Z copying torch\include\ATen\ops\_foreach_sin.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1910107Z copying torch\include\ATen\ops\_foreach_sinh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1917031Z copying torch\include\ATen\ops\_foreach_sinh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1923917Z copying torch\include\ATen\ops\_foreach_sinh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1930743Z copying torch\include\ATen\ops\_foreach_sinh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1937667Z copying torch\include\ATen\ops\_foreach_sinh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1944882Z copying torch\include\ATen\ops\_foreach_sin_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1951877Z copying torch\include\ATen\ops\_foreach_sin_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1959453Z copying torch\include\ATen\ops\_foreach_sin_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1966756Z copying torch\include\ATen\ops\_foreach_sin_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1973712Z copying torch\include\ATen\ops\_foreach_sqrt.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1980726Z copying torch\include\ATen\ops\_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1987559Z copying torch\include\ATen\ops\_foreach_sqrt_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.1994293Z copying torch\include\ATen\ops\_foreach_sqrt_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2001099Z copying torch\include\ATen\ops\_foreach_sqrt_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2008150Z copying torch\include\ATen\ops\_foreach_sub.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2015402Z copying torch\include\ATen\ops\_foreach_sub_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2022207Z copying torch\include\ATen\ops\_foreach_sub_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2029359Z copying torch\include\ATen\ops\_foreach_sub_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2036474Z copying torch\include\ATen\ops\_foreach_sub_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2043296Z copying torch\include\ATen\ops\_foreach_tan.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2050771Z copying torch\include\ATen\ops\_foreach_tanh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2057851Z copying torch\include\ATen\ops\_foreach_tanh_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2064834Z copying torch\include\ATen\ops\_foreach_tanh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2072303Z copying torch\include\ATen\ops\_foreach_tanh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2079715Z copying torch\include\ATen\ops\_foreach_tanh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2086634Z copying torch\include\ATen\ops\_foreach_tan_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2093689Z copying torch\include\ATen\ops\_foreach_tan_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2100669Z copying torch\include\ATen\ops\_foreach_tan_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2108745Z copying torch\include\ATen\ops\_foreach_tan_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2114606Z copying torch\include\ATen\ops\_foreach_trunc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2121770Z copying torch\include\ATen\ops\_foreach_trunc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2128632Z copying torch\include\ATen\ops\_foreach_trunc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2135863Z copying torch\include\ATen\ops\_foreach_trunc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2143181Z copying torch\include\ATen\ops\_foreach_trunc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2149985Z copying torch\include\ATen\ops\_foreach_zero.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2157385Z copying torch\include\ATen\ops\_foreach_zero_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2164423Z copying torch\include\ATen\ops\_foreach_zero_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2171918Z copying torch\include\ATen\ops\_foreach_zero_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2178788Z copying torch\include\ATen\ops\_foreach_zero_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2185880Z copying torch\include\ATen\ops\_functional_assert_async.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2192635Z copying torch\include\ATen\ops\_functional_assert_async_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2200908Z copying torch\include\ATen\ops\_functional_assert_async_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2207184Z copying torch\include\ATen\ops\_functional_assert_async_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2214198Z copying torch\include\ATen\ops\_functional_assert_scalar.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2221862Z copying torch\include\ATen\ops\_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2229882Z copying torch\include\ATen\ops\_functional_assert_scalar_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2236723Z copying torch\include\ATen\ops\_functional_assert_scalar_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2244044Z copying torch\include\ATen\ops\_functional_sym_constrain_range.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2266408Z copying torch\include\ATen\ops\_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2273507Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2281820Z 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-07-17T08:09:50.2288453Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2295831Z copying torch\include\ATen\ops\_functional_sym_constrain_range_for_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2303149Z copying torch\include\ATen\ops\_functional_sym_constrain_range_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2311076Z copying torch\include\ATen\ops\_functional_sym_constrain_range_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2317910Z copying torch\include\ATen\ops\_fused_adagrad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2326004Z copying torch\include\ATen\ops\_fused_adagrad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2332101Z copying torch\include\ATen\ops\_fused_adagrad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2339356Z copying torch\include\ATen\ops\_fused_adagrad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2346318Z copying torch\include\ATen\ops\_fused_adagrad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2353319Z copying torch\include\ATen\ops\_fused_adam.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2359969Z copying torch\include\ATen\ops\_fused_adamw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2367309Z copying torch\include\ATen\ops\_fused_adamw_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2374209Z copying torch\include\ATen\ops\_fused_adamw_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2381098Z copying torch\include\ATen\ops\_fused_adamw_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2388616Z copying torch\include\ATen\ops\_fused_adamw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2395845Z copying torch\include\ATen\ops\_fused_adamw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2402409Z copying torch\include\ATen\ops\_fused_adam_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2408946Z copying torch\include\ATen\ops\_fused_adam_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2415911Z copying torch\include\ATen\ops\_fused_adam_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2422473Z copying torch\include\ATen\ops\_fused_adam_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2429139Z copying torch\include\ATen\ops\_fused_adam_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2436143Z copying torch\include\ATen\ops\_fused_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2443288Z copying torch\include\ATen\ops\_fused_dropout_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2450836Z copying torch\include\ATen\ops\_fused_dropout_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2457211Z copying torch\include\ATen\ops\_fused_dropout_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2463895Z copying torch\include\ATen\ops\_fused_dropout_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2470739Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2477996Z 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-07-17T08:09:50.2485462Z 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-07-17T08:09:50.2492347Z 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-07-17T08:09:50.2498942Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2505951Z copying torch\include\ATen\ops\_fused_moving_avg_obs_fq_helper_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2512613Z copying torch\include\ATen\ops\_fused_rms_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2519687Z copying torch\include\ATen\ops\_fused_rms_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2526350Z copying torch\include\ATen\ops\_fused_rms_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2533285Z copying torch\include\ATen\ops\_fused_sdp_choice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2540311Z copying torch\include\ATen\ops\_fused_sdp_choice_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2547179Z copying torch\include\ATen\ops\_fused_sdp_choice_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2554171Z copying torch\include\ATen\ops\_fused_sdp_choice_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2561055Z copying torch\include\ATen\ops\_fused_sdp_choice_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2568148Z copying torch\include\ATen\ops\_fused_sdp_choice_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2575604Z copying torch\include\ATen\ops\_fused_sgd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2582730Z copying torch\include\ATen\ops\_fused_sgd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2589524Z copying torch\include\ATen\ops\_fused_sgd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2596598Z copying torch\include\ATen\ops\_fused_sgd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2604321Z copying torch\include\ATen\ops\_fused_sgd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2610673Z copying torch\include\ATen\ops\_fused_sgd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2617871Z copying torch\include\ATen\ops\_fw_primal.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2624662Z copying torch\include\ATen\ops\_fw_primal_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2631452Z copying torch\include\ATen\ops\_fw_primal_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2639312Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2645967Z copying torch\include\ATen\ops\_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2653016Z copying torch\include\ATen\ops\_fw_primal_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2660127Z copying torch\include\ATen\ops\_fw_primal_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2667819Z copying torch\include\ATen\ops\_fw_primal_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2673631Z copying torch\include\ATen\ops\_fw_primal_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2680638Z copying torch\include\ATen\ops\_gather_sparse_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2687743Z copying torch\include\ATen\ops\_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2694833Z copying torch\include\ATen\ops\_gather_sparse_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2702838Z copying torch\include\ATen\ops\_gather_sparse_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2708938Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2715816Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2723320Z 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-07-17T08:09:50.2731158Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2737792Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2745218Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2752067Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2760056Z copying torch\include\ATen\ops\_grid_sampler_2d_cpu_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2766127Z copying torch\include\ATen\ops\_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2773016Z copying torch\include\ATen\ops\_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2779638Z copying torch\include\ATen\ops\_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2826327Z copying torch\include\ATen\ops\_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2832867Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2839599Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2846271Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2853124Z copying torch\include\ATen\ops\_has_compatible_shallow_copy_type_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2860220Z copying torch\include\ATen\ops\_has_same_storage_numel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2867962Z copying torch\include\ATen\ops\_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2876023Z copying torch\include\ATen\ops\_has_same_storage_numel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2882450Z copying torch\include\ATen\ops\_has_same_storage_numel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2889224Z copying torch\include\ATen\ops\_histogramdd_bin_edges.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2897194Z copying torch\include\ATen\ops\_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2903391Z copying torch\include\ATen\ops\_histogramdd_bin_edges_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2910493Z copying torch\include\ATen\ops\_histogramdd_bin_edges_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2917432Z copying torch\include\ATen\ops\_histogramdd_bin_edges_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2924329Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2931490Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2938383Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2945323Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2952918Z copying torch\include\ATen\ops\_histogramdd_from_bin_cts_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2959331Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2966653Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2973665Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2980647Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2988018Z copying torch\include\ATen\ops\_histogramdd_from_bin_tensors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.2994554Z copying torch\include\ATen\ops\_index_put_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3001544Z copying torch\include\ATen\ops\_index_put_impl_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3008239Z copying torch\include\ATen\ops\_index_put_impl_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3015180Z copying torch\include\ATen\ops\_index_put_impl_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3022118Z copying torch\include\ATen\ops\_index_put_impl_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3029449Z copying torch\include\ATen\ops\_index_put_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3036385Z copying torch\include\ATen\ops\_index_put_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3043256Z copying torch\include\ATen\ops\_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3049574Z copying torch\include\ATen\ops\_indices_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3056924Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3063711Z copying torch\include\ATen\ops\_indices_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3070391Z copying torch\include\ATen\ops\_indices_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3077109Z copying torch\include\ATen\ops\_indices_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3083982Z copying torch\include\ATen\ops\_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3090543Z copying torch\include\ATen\ops\_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3097397Z copying torch\include\ATen\ops\_int_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3103893Z copying torch\include\ATen\ops\_int_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3111765Z copying torch\include\ATen\ops\_int_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3125720Z copying torch\include\ATen\ops\_int_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3132209Z copying torch\include\ATen\ops\_int_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3138966Z copying torch\include\ATen\ops\_is_all_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3145986Z copying torch\include\ATen\ops\_is_all_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3152601Z copying torch\include\ATen\ops\_is_all_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3159715Z copying torch\include\ATen\ops\_is_all_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3166491Z copying torch\include\ATen\ops\_is_any_true.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3173564Z copying torch\include\ATen\ops\_is_any_true_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3180479Z copying torch\include\ATen\ops\_is_any_true_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3187048Z copying torch\include\ATen\ops\_is_any_true_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3194156Z copying torch\include\ATen\ops\_is_zerotensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3201082Z copying torch\include\ATen\ops\_is_zerotensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3207705Z copying torch\include\ATen\ops\_is_zerotensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3214385Z copying torch\include\ATen\ops\_is_zerotensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3221206Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3228032Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3235269Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3242079Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3248929Z copying torch\include\ATen\ops\_jagged_to_padded_dense_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3256113Z copying torch\include\ATen\ops\_lazy_clone.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3263032Z copying torch\include\ATen\ops\_lazy_clone_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3269726Z copying torch\include\ATen\ops\_lazy_clone_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3277150Z copying torch\include\ATen\ops\_lazy_clone_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3284897Z copying torch\include\ATen\ops\_linalg_check_errors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3292089Z copying torch\include\ATen\ops\_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3299033Z copying torch\include\ATen\ops\_linalg_check_errors_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3306439Z copying torch\include\ATen\ops\_linalg_check_errors_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3350449Z copying torch\include\ATen\ops\_linalg_det.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3351407Z copying torch\include\ATen\ops\_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3352392Z copying torch\include\ATen\ops\_linalg_det_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3353194Z copying torch\include\ATen\ops\_linalg_det_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3353970Z copying torch\include\ATen\ops\_linalg_det_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3356152Z copying torch\include\ATen\ops\_linalg_det_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3359468Z copying torch\include\ATen\ops\_linalg_det_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3366432Z copying torch\include\ATen\ops\_linalg_det_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3374579Z copying torch\include\ATen\ops\_linalg_eigh.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3380722Z copying torch\include\ATen\ops\_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3387649Z copying torch\include\ATen\ops\_linalg_eigh_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3394287Z copying torch\include\ATen\ops\_linalg_eigh_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3401755Z copying torch\include\ATen\ops\_linalg_eigh_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3408045Z copying torch\include\ATen\ops\_linalg_eigh_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3414807Z copying torch\include\ATen\ops\_linalg_eigh_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3421507Z copying torch\include\ATen\ops\_linalg_eigh_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3428559Z copying torch\include\ATen\ops\_linalg_eigvals.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3435527Z copying torch\include\ATen\ops\_linalg_eigvals_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3442341Z copying torch\include\ATen\ops\_linalg_eigvals_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3449137Z copying torch\include\ATen\ops\_linalg_eigvals_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3455756Z copying torch\include\ATen\ops\_linalg_eigvals_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3462679Z copying torch\include\ATen\ops\_linalg_slogdet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3469763Z copying torch\include\ATen\ops\_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3476559Z copying torch\include\ATen\ops\_linalg_slogdet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3483489Z copying torch\include\ATen\ops\_linalg_slogdet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3490327Z copying torch\include\ATen\ops\_linalg_slogdet_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3497928Z copying torch\include\ATen\ops\_linalg_slogdet_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3504799Z copying torch\include\ATen\ops\_linalg_slogdet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3511648Z copying torch\include\ATen\ops\_linalg_slogdet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3518640Z copying torch\include\ATen\ops\_linalg_solve_ex.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3526012Z copying torch\include\ATen\ops\_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3532900Z copying torch\include\ATen\ops\_linalg_solve_ex_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3539824Z copying torch\include\ATen\ops\_linalg_solve_ex_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3546931Z copying torch\include\ATen\ops\_linalg_solve_ex_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3553885Z copying torch\include\ATen\ops\_linalg_solve_ex_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3560615Z copying torch\include\ATen\ops\_linalg_solve_ex_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3567541Z copying torch\include\ATen\ops\_linalg_solve_ex_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3574386Z copying torch\include\ATen\ops\_linalg_svd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3581607Z copying torch\include\ATen\ops\_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3588111Z copying torch\include\ATen\ops\_linalg_svd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3595632Z copying torch\include\ATen\ops\_linalg_svd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3602024Z copying torch\include\ATen\ops\_linalg_svd_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3609014Z copying torch\include\ATen\ops\_linalg_svd_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3616802Z copying torch\include\ATen\ops\_linalg_svd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3624640Z copying torch\include\ATen\ops\_linalg_svd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3630623Z copying torch\include\ATen\ops\_local_scalar_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3637633Z copying torch\include\ATen\ops\_local_scalar_dense_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3644527Z copying torch\include\ATen\ops\_local_scalar_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3651597Z copying torch\include\ATen\ops\_local_scalar_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3659098Z copying torch\include\ATen\ops\_local_scalar_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3665670Z copying torch\include\ATen\ops\_logcumsumexp.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3672591Z copying torch\include\ATen\ops\_logcumsumexp_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3679429Z copying torch\include\ATen\ops\_logcumsumexp_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3686256Z copying torch\include\ATen\ops\_logcumsumexp_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3693619Z copying torch\include\ATen\ops\_logcumsumexp_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3700579Z copying torch\include\ATen\ops\_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3707379Z copying torch\include\ATen\ops\_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3714858Z copying torch\include\ATen\ops\_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3722328Z copying torch\include\ATen\ops\_log_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3728806Z copying torch\include\ATen\ops\_log_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3735792Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3742805Z copying torch\include\ATen\ops\_log_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3750847Z copying torch\include\ATen\ops\_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3757184Z copying torch\include\ATen\ops\_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3764469Z copying torch\include\ATen\ops\_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3771470Z copying torch\include\ATen\ops\_log_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3778422Z copying torch\include\ATen\ops\_log_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3785723Z copying torch\include\ATen\ops\_log_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3792589Z copying torch\include\ATen\ops\_log_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3800078Z copying torch\include\ATen\ops\_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3820459Z copying torch\include\ATen\ops\_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3821251Z copying torch\include\ATen\ops\_lstm_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3822549Z copying torch\include\ATen\ops\_lstm_mps_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3829081Z copying torch\include\ATen\ops\_lstm_mps_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3879186Z copying torch\include\ATen\ops\_lstm_mps_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3885887Z copying torch\include\ATen\ops\_lu_with_info.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3893165Z copying torch\include\ATen\ops\_lu_with_info_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3899826Z copying torch\include\ATen\ops\_lu_with_info_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3906582Z copying torch\include\ATen\ops\_lu_with_info_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3913192Z copying torch\include\ATen\ops\_make_dep_token.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3919788Z copying torch\include\ATen\ops\_make_dep_token_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3926430Z copying torch\include\ATen\ops\_make_dep_token_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3933301Z copying torch\include\ATen\ops\_make_dep_token_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3939934Z copying torch\include\ATen\ops\_make_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3947197Z copying torch\include\ATen\ops\_make_dual_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3953768Z copying torch\include\ATen\ops\_make_dual_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3960996Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3968094Z copying torch\include\ATen\ops\_make_dual_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3975228Z copying torch\include\ATen\ops\_make_dual_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3981893Z copying torch\include\ATen\ops\_make_dual_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3988879Z copying torch\include\ATen\ops\_make_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.3995749Z copying torch\include\ATen\ops\_make_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4002656Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4010122Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4017193Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4024438Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4032238Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4039238Z copying torch\include\ATen\ops\_make_per_channel_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4046562Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4053782Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4060665Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4067962Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4075469Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4082502Z copying torch\include\ATen\ops\_make_per_tensor_quantized_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4089364Z copying torch\include\ATen\ops\_masked_scale.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4096892Z copying torch\include\ATen\ops\_masked_scale_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4105312Z copying torch\include\ATen\ops\_masked_scale_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4111224Z copying torch\include\ATen\ops\_masked_scale_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4118487Z copying torch\include\ATen\ops\_masked_scale_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4125729Z copying torch\include\ATen\ops\_masked_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4134398Z copying torch\include\ATen\ops\_masked_softmax_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4140472Z copying torch\include\ATen\ops\_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4147631Z copying torch\include\ATen\ops\_masked_softmax_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4174315Z copying torch\include\ATen\ops\_masked_softmax_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4180445Z copying torch\include\ATen\ops\_masked_softmax_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4187683Z copying torch\include\ATen\ops\_masked_softmax_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4194927Z copying torch\include\ATen\ops\_masked_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4203318Z copying torch\include\ATen\ops\_masked_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4209596Z copying torch\include\ATen\ops\_masked_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4217472Z copying torch\include\ATen\ops\_masked_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4223999Z copying torch\include\ATen\ops\_masked_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4232039Z copying torch\include\ATen\ops\_mixed_dtypes_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4238167Z copying torch\include\ATen\ops\_mixed_dtypes_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4245098Z copying torch\include\ATen\ops\_mixed_dtypes_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4252147Z copying torch\include\ATen\ops\_mixed_dtypes_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4259104Z copying torch\include\ATen\ops\_mkldnn_reshape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4267337Z copying torch\include\ATen\ops\_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4273107Z copying torch\include\ATen\ops\_mkldnn_reshape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4279892Z copying torch\include\ATen\ops\_mkldnn_reshape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4286796Z copying torch\include\ATen\ops\_mkldnn_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4294012Z copying torch\include\ATen\ops\_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4301112Z copying torch\include\ATen\ops\_mkldnn_transpose_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4307922Z copying torch\include\ATen\ops\_mkldnn_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4314731Z copying torch\include\ATen\ops\_mkldnn_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4321678Z copying torch\include\ATen\ops\_mps_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4329058Z copying torch\include\ATen\ops\_mps_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4335789Z copying torch\include\ATen\ops\_mps_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4342614Z copying torch\include\ATen\ops\_mps_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4349584Z copying torch\include\ATen\ops\_mps_convolution_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4356996Z copying torch\include\ATen\ops\_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4363839Z copying torch\include\ATen\ops\_mps_convolution_transpose_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4371525Z copying torch\include\ATen\ops\_mps_convolution_transpose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4378328Z copying torch\include\ATen\ops\_native_batch_norm_legit.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4385370Z copying torch\include\ATen\ops\_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4392442Z copying torch\include\ATen\ops\_native_batch_norm_legit_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4399165Z copying torch\include\ATen\ops\_native_batch_norm_legit_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4406243Z copying torch\include\ATen\ops\_native_batch_norm_legit_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4413058Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4420200Z 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-07-17T08:09:50.4427397Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4434612Z copying torch\include\ATen\ops\_native_batch_norm_legit_no_training_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4441534Z copying torch\include\ATen\ops\_native_batch_norm_legit_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4448720Z copying torch\include\ATen\ops\_native_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4455980Z copying torch\include\ATen\ops\_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4462777Z copying torch\include\ATen\ops\_native_multi_head_attention_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4469950Z copying torch\include\ATen\ops\_native_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4476834Z copying torch\include\ATen\ops\_native_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4483710Z copying torch\include\ATen\ops\_native_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4490505Z copying torch\include\ATen\ops\_neg_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4497553Z copying torch\include\ATen\ops\_neg_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4504165Z copying torch\include\ATen\ops\_neg_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4511403Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4518693Z copying torch\include\ATen\ops\_neg_view_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4525352Z copying torch\include\ATen\ops\_neg_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4531926Z copying torch\include\ATen\ops\_neg_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4538660Z copying torch\include\ATen\ops\_neg_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4545173Z copying torch\include\ATen\ops\_neg_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4551927Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4559015Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4566164Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4573252Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4580144Z copying torch\include\ATen\ops\_nested_compute_contiguous_strides_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4586928Z copying torch\include\ATen\ops\_nested_from_padded.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4594040Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4601229Z 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-07-17T08:09:50.4607985Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4615002Z copying torch\include\ATen\ops\_nested_from_padded_and_nested_example_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4622794Z copying torch\include\ATen\ops\_nested_from_padded_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4630080Z copying torch\include\ATen\ops\_nested_from_padded_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4637008Z copying torch\include\ATen\ops\_nested_from_padded_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4644751Z copying torch\include\ATen\ops\_nested_from_padded_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4651086Z copying torch\include\ATen\ops\_nested_from_padded_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4658147Z copying torch\include\ATen\ops\_nested_from_padded_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4665032Z copying torch\include\ATen\ops\_nested_from_padded_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4671950Z copying torch\include\ATen\ops\_nested_from_padded_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4679462Z copying torch\include\ATen\ops\_nested_get_jagged_dummy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4686094Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4693003Z copying torch\include\ATen\ops\_nested_get_jagged_dummy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4700094Z copying torch\include\ATen\ops\_nested_get_lengths.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4708191Z copying torch\include\ATen\ops\_nested_get_lengths_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4713994Z copying torch\include\ATen\ops\_nested_get_lengths_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4721209Z copying torch\include\ATen\ops\_nested_get_max_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4728449Z copying torch\include\ATen\ops\_nested_get_max_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4735292Z copying torch\include\ATen\ops\_nested_get_max_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4742721Z copying torch\include\ATen\ops\_nested_get_min_seqlen.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4749542Z copying torch\include\ATen\ops\_nested_get_min_seqlen_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4756273Z copying torch\include\ATen\ops\_nested_get_min_seqlen_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4763296Z copying torch\include\ATen\ops\_nested_get_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4771434Z copying torch\include\ATen\ops\_nested_get_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4777493Z copying torch\include\ATen\ops\_nested_get_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4784360Z copying torch\include\ATen\ops\_nested_get_ragged_idx.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4791293Z copying torch\include\ATen\ops\_nested_get_ragged_idx_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4798427Z copying torch\include\ATen\ops\_nested_get_ragged_idx_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4806134Z copying torch\include\ATen\ops\_nested_get_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4830074Z copying torch\include\ATen\ops\_nested_get_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4830670Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4831266Z copying torch\include\ATen\ops\_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4836618Z copying torch\include\ATen\ops\_nested_get_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4843753Z copying torch\include\ATen\ops\_nested_get_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4850814Z copying torch\include\ATen\ops\_nested_get_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4857673Z copying torch\include\ATen\ops\_nested_get_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4865469Z copying torch\include\ATen\ops\_nested_select_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4871609Z copying torch\include\ATen\ops\_nested_select_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4878484Z copying torch\include\ATen\ops\_nested_select_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4886219Z copying torch\include\ATen\ops\_nested_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4893072Z copying torch\include\ATen\ops\_nested_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4899968Z copying torch\include\ATen\ops\_nested_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4907079Z copying torch\include\ATen\ops\_nested_tensor_from_mask.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4914374Z copying torch\include\ATen\ops\_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4921223Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4928103Z copying torch\include\ATen\ops\_nested_tensor_from_mask_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4935032Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4941744Z 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-07-17T08:09:50.4972248Z 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-07-17T08:09:50.4979206Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4986095Z copying torch\include\ATen\ops\_nested_tensor_from_mask_left_aligned_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.4993693Z copying torch\include\ATen\ops\_nested_tensor_from_mask_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5000532Z copying torch\include\ATen\ops\_nested_tensor_from_mask_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5007683Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5015099Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5021866Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5028955Z copying torch\include\ATen\ops\_nested_tensor_from_tensor_list_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5035704Z copying torch\include\ATen\ops\_nested_tensor_size.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5042777Z copying torch\include\ATen\ops\_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5049631Z copying torch\include\ATen\ops\_nested_tensor_size_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5056501Z copying torch\include\ATen\ops\_nested_tensor_size_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5063366Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5070591Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5077429Z copying torch\include\ATen\ops\_nested_tensor_softmax_with_shape_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5084191Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5091701Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5098567Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5105546Z copying torch\include\ATen\ops\_nested_tensor_storage_offsets_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5112649Z copying torch\include\ATen\ops\_nested_tensor_strides.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5119637Z copying torch\include\ATen\ops\_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5126553Z copying torch\include\ATen\ops\_nested_tensor_strides_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5133393Z copying torch\include\ATen\ops\_nested_tensor_strides_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5140074Z copying torch\include\ATen\ops\_nested_view_from_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5147313Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5154562Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5161516Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5169107Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5175389Z copying torch\include\ATen\ops\_nested_view_from_buffer_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5182329Z copying torch\include\ATen\ops\_nested_view_from_buffer_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5189276Z copying torch\include\ATen\ops\_nested_view_from_buffer_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5196087Z copying torch\include\ATen\ops\_nested_view_from_buffer_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5203380Z copying torch\include\ATen\ops\_nested_view_from_buffer_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5210359Z copying torch\include\ATen\ops\_nested_view_from_jagged.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5217234Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5224541Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5231370Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5238729Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5245539Z copying torch\include\ATen\ops\_nested_view_from_jagged_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5252459Z copying torch\include\ATen\ops\_nested_view_from_jagged_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5259092Z copying torch\include\ATen\ops\_nested_view_from_jagged_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5266000Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5273336Z 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-07-17T08:09:50.5280367Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5287120Z copying torch\include\ATen\ops\_new_zeros_with_same_feature_meta_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5293844Z copying torch\include\ATen\ops\_nnpack_available.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5300808Z copying torch\include\ATen\ops\_nnpack_available_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5307341Z copying torch\include\ATen\ops\_nnpack_available_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5313963Z copying torch\include\ATen\ops\_nnpack_available_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5320779Z copying torch\include\ATen\ops\_nnpack_spatial_convolution.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5328053Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5334889Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5341623Z copying torch\include\ATen\ops\_nnpack_spatial_convolution_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5348171Z copying torch\include\ATen\ops\_nnz.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5354349Z copying torch\include\ATen\ops\_nnz_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5360741Z copying torch\include\ATen\ops\_nnz_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5367323Z copying torch\include\ATen\ops\_pack_padded_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5375548Z copying torch\include\ATen\ops\_pack_padded_sequence_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5419223Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5419630Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5420613Z copying torch\include\ATen\ops\_pack_padded_sequence_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5421110Z copying torch\include\ATen\ops\_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5421474Z copying torch\include\ATen\ops\_pack_padded_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5421831Z copying torch\include\ATen\ops\_pack_padded_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5428726Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5437016Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5443357Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5449733Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5456827Z copying torch\include\ATen\ops\_padded_dense_to_jagged_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5463607Z copying torch\include\ATen\ops\_pad_circular.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5470711Z copying torch\include\ATen\ops\_pad_circular_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5477124Z copying torch\include\ATen\ops\_pad_circular_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5483502Z copying torch\include\ATen\ops\_pad_circular_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5490262Z copying torch\include\ATen\ops\_pad_enum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5497296Z copying torch\include\ATen\ops\_pad_enum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5503927Z copying torch\include\ATen\ops\_pad_enum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5510471Z copying torch\include\ATen\ops\_pad_enum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5517328Z copying torch\include\ATen\ops\_pad_packed_sequence.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5524266Z copying torch\include\ATen\ops\_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5530982Z copying torch\include\ATen\ops\_pad_packed_sequence_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5537983Z copying torch\include\ATen\ops\_pad_packed_sequence_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5553018Z copying torch\include\ATen\ops\_pdist_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5560818Z copying torch\include\ATen\ops\_pdist_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5567134Z copying torch\include\ATen\ops\_pdist_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5573957Z copying torch\include\ATen\ops\_pdist_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5580735Z copying torch\include\ATen\ops\_pdist_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5587500Z copying torch\include\ATen\ops\_pdist_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5594437Z copying torch\include\ATen\ops\_pdist_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5601693Z copying torch\include\ATen\ops\_pdist_forward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5608300Z copying torch\include\ATen\ops\_pdist_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5615273Z copying torch\include\ATen\ops\_pdist_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5621965Z copying torch\include\ATen\ops\_pdist_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5628633Z copying torch\include\ATen\ops\_pdist_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5635211Z copying torch\include\ATen\ops\_pin_memory.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5642365Z copying torch\include\ATen\ops\_pin_memory_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5648770Z copying torch\include\ATen\ops\_pin_memory_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5655396Z copying torch\include\ATen\ops\_pin_memory_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5663077Z copying torch\include\ATen\ops\_prelu_kernel.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5685026Z copying torch\include\ATen\ops\_prelu_kernel_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5691656Z copying torch\include\ATen\ops\_prelu_kernel_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5699242Z copying torch\include\ATen\ops\_prelu_kernel_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5705889Z copying torch\include\ATen\ops\_prelu_kernel_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5712946Z copying torch\include\ATen\ops\_prelu_kernel_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5719871Z copying torch\include\ATen\ops\_prelu_kernel_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5727763Z copying torch\include\ATen\ops\_prelu_kernel_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5733896Z copying torch\include\ATen\ops\_prelu_kernel_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5740851Z copying torch\include\ATen\ops\_prelu_kernel_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5747625Z copying torch\include\ATen\ops\_print.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5754378Z copying torch\include\ATen\ops\_print_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5762405Z copying torch\include\ATen\ops\_print_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5768242Z copying torch\include\ATen\ops\_print_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5774742Z copying torch\include\ATen\ops\_propagate_xla_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5781973Z copying torch\include\ATen\ops\_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5788634Z copying torch\include\ATen\ops\_propagate_xla_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5795627Z copying torch\include\ATen\ops\_propagate_xla_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5803322Z copying torch\include\ATen\ops\_remove_batch_dim.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5810054Z copying torch\include\ATen\ops\_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5817780Z copying torch\include\ATen\ops\_remove_batch_dim_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5824567Z copying torch\include\ATen\ops\_remove_batch_dim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5831681Z copying torch\include\ATen\ops\_reshape_alias.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5839778Z copying torch\include\ATen\ops\_reshape_alias_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5845930Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5853320Z copying torch\include\ATen\ops\_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5860301Z copying torch\include\ATen\ops\_reshape_alias_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5868577Z copying torch\include\ATen\ops\_reshape_alias_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5874337Z copying torch\include\ATen\ops\_reshape_alias_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5881679Z copying torch\include\ATen\ops\_reshape_alias_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5888429Z copying torch\include\ATen\ops\_reshape_alias_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5895261Z copying torch\include\ATen\ops\_reshape_alias_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5901771Z copying torch\include\ATen\ops\_reshape_alias_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5908374Z copying torch\include\ATen\ops\_reshape_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5916076Z copying torch\include\ATen\ops\_reshape_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5922315Z copying torch\include\ATen\ops\_reshape_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5928814Z copying torch\include\ATen\ops\_reshape_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5936152Z copying torch\include\ATen\ops\_reshape_from_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.5943003Z copying torch\include\ATen\ops\_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6009225Z copying torch\include\ATen\ops\_reshape_from_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6015841Z copying torch\include\ATen\ops\_reshape_from_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6022951Z copying torch\include\ATen\ops\_resize_output.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6031347Z copying torch\include\ATen\ops\_resize_output_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6037027Z copying torch\include\ATen\ops\_resize_output_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6044075Z copying torch\include\ATen\ops\_resize_output_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6050984Z copying torch\include\ATen\ops\_resize_output_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6058253Z copying torch\include\ATen\ops\_rowwise_prune.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6066040Z copying torch\include\ATen\ops\_rowwise_prune_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6087354Z copying torch\include\ATen\ops\_rowwise_prune_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6094621Z copying torch\include\ATen\ops\_rowwise_prune_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6101421Z copying torch\include\ATen\ops\_safe_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6108854Z copying torch\include\ATen\ops\_safe_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6115616Z copying torch\include\ATen\ops\_safe_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6123181Z copying torch\include\ATen\ops\_safe_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6129587Z copying torch\include\ATen\ops\_sample_dirichlet.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6136875Z copying torch\include\ATen\ops\_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6143743Z copying torch\include\ATen\ops\_sample_dirichlet_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6152199Z copying torch\include\ATen\ops\_sample_dirichlet_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6158479Z copying torch\include\ATen\ops\_sample_dirichlet_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6165365Z copying torch\include\ATen\ops\_sample_dirichlet_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6172721Z copying torch\include\ATen\ops\_saturate_weight_to_fp16.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6181101Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6186788Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6193680Z copying torch\include\ATen\ops\_saturate_weight_to_fp16_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6200341Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6207471Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6215549Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_for_mps.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6221912Z 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-07-17T08:09:50.6228659Z 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-07-17T08:09:50.6236066Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6244077Z copying torch\include\ATen\ops\_scaled_dot_product_attention_math_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6250442Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6257853Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6265086Z 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-07-17T08:09:50.6273036Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6280131Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6287274Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6295918Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6302302Z copying torch\include\ATen\ops\_scaled_dot_product_cudnn_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6309502Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6316744Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6324801Z 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-07-17T08:09:50.6332081Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6339201Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6347583Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6353939Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6361066Z copying torch\include\ATen\ops\_scaled_dot_product_efficient_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6367908Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6375166Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6382527Z 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-07-17T08:09:50.6389619Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6396651Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6403607Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6410734Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6418172Z 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-07-17T08:09:50.6425407Z 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-07-17T08:09:50.6432852Z 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-07-17T08:09:50.6439879Z 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-07-17T08:09:50.6447047Z 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-07-17T08:09:50.6454087Z 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-07-17T08:09:50.6467063Z 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-07-17T08:09:50.6469197Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6476417Z copying torch\include\ATen\ops\_scaled_dot_product_flash_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6484277Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6491404Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6499119Z 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-07-17T08:09:50.6507421Z 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-07-17T08:09:50.6513952Z 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-07-17T08:09:50.6521897Z 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-07-17T08:09:50.6529467Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6536787Z copying torch\include\ATen\ops\_scaled_dot_product_fused_attention_overrideable_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6543828Z copying torch\include\ATen\ops\_scaled_grouped_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6551537Z copying torch\include\ATen\ops\_scaled_grouped_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6559139Z copying torch\include\ATen\ops\_scaled_grouped_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6565738Z copying torch\include\ATen\ops\_scaled_grouped_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6572815Z copying torch\include\ATen\ops\_scaled_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6579997Z copying torch\include\ATen\ops\_scaled_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6587895Z copying torch\include\ATen\ops\_scaled_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6594563Z copying torch\include\ATen\ops\_scaled_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6601609Z copying torch\include\ATen\ops\_scaled_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6608638Z copying torch\include\ATen\ops\_segment_reduce_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6616889Z copying torch\include\ATen\ops\_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6623057Z copying torch\include\ATen\ops\_segment_reduce_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6630631Z copying torch\include\ATen\ops\_segment_reduce_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6637653Z copying torch\include\ATen\ops\_segment_reduce_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6645235Z copying torch\include\ATen\ops\_segment_reduce_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6664499Z copying torch\include\ATen\ops\_shape_as_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6665426Z copying torch\include\ATen\ops\_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6668376Z copying torch\include\ATen\ops\_shape_as_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6676750Z copying torch\include\ATen\ops\_shape_as_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6682813Z copying torch\include\ATen\ops\_slow_conv2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6690197Z copying torch\include\ATen\ops\_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6697674Z copying torch\include\ATen\ops\_slow_conv2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6704779Z copying torch\include\ATen\ops\_slow_conv2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6711464Z copying torch\include\ATen\ops\_slow_conv2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6718336Z copying torch\include\ATen\ops\_slow_conv2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6725469Z copying torch\include\ATen\ops\_slow_conv2d_forward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6732554Z copying torch\include\ATen\ops\_slow_conv2d_forward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6792101Z copying torch\include\ATen\ops\_slow_conv2d_forward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6798719Z copying torch\include\ATen\ops\_slow_conv2d_forward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6805854Z copying torch\include\ATen\ops\_slow_conv2d_forward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6812955Z copying torch\include\ATen\ops\_sobol_engine_draw.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6820302Z copying torch\include\ATen\ops\_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6827143Z copying torch\include\ATen\ops\_sobol_engine_draw_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6834166Z copying torch\include\ATen\ops\_sobol_engine_draw_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6841289Z copying torch\include\ATen\ops\_sobol_engine_ff.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6848426Z copying torch\include\ATen\ops\_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6855499Z copying torch\include\ATen\ops\_sobol_engine_ff_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6862271Z copying torch\include\ATen\ops\_sobol_engine_ff_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6869569Z copying torch\include\ATen\ops\_sobol_engine_initialize_state.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6876923Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6884305Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6891312Z copying torch\include\ATen\ops\_sobol_engine_initialize_state_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6898347Z copying torch\include\ATen\ops\_sobol_engine_scramble.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6905958Z copying torch\include\ATen\ops\_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6913273Z copying torch\include\ATen\ops\_sobol_engine_scramble_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6920158Z copying torch\include\ATen\ops\_sobol_engine_scramble_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6927010Z copying torch\include\ATen\ops\_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6933614Z copying torch\include\ATen\ops\_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6941185Z copying torch\include\ATen\ops\_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6955173Z copying torch\include\ATen\ops\_softmax_backward_data_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6956114Z copying torch\include\ATen\ops\_softmax_backward_data_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6967507Z copying torch\include\ATen\ops\_softmax_backward_data_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6971291Z copying torch\include\ATen\ops\_softmax_backward_data_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6979146Z copying torch\include\ATen\ops\_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6986277Z copying torch\include\ATen\ops\_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.6993779Z copying torch\include\ATen\ops\_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7002097Z copying torch\include\ATen\ops\_softmax_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7008955Z copying torch\include\ATen\ops\_softmax_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7016131Z copying torch\include\ATen\ops\_softmax_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7023278Z copying torch\include\ATen\ops\_softmax_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7031071Z copying torch\include\ATen\ops\_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7037888Z copying torch\include\ATen\ops\_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7045300Z copying torch\include\ATen\ops\_sparse_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7053329Z copying torch\include\ATen\ops\_sparse_addmm_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7059998Z copying torch\include\ATen\ops\_sparse_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7067096Z copying torch\include\ATen\ops\_sparse_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7074046Z copying torch\include\ATen\ops\_sparse_broadcast_to.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7081409Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7089091Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7096683Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7104066Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7112144Z copying torch\include\ATen\ops\_sparse_broadcast_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7118431Z copying torch\include\ATen\ops\_sparse_broadcast_to_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7125125Z copying torch\include\ATen\ops\_sparse_broadcast_to_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7132358Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7140764Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7147145Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7154637Z copying torch\include\ATen\ops\_sparse_bsc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7161661Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7169789Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7176555Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7183625Z copying torch\include\ATen\ops\_sparse_bsr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7192254Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7198861Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7205938Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7213260Z copying torch\include\ATen\ops\_sparse_compressed_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7221401Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7228010Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7235187Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7242295Z copying torch\include\ATen\ops\_sparse_compressed_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7249323Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7257279Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7264489Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7271502Z copying torch\include\ATen\ops\_sparse_coo_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7278470Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7286072Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_and_tensors.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7293665Z 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-07-17T08:09:50.7300626Z 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-07-17T08:09:50.7308377Z 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-07-17T08:09:50.7315547Z 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-07-17T08:09:50.7322994Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7329749Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7336797Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7344983Z copying torch\include\ATen\ops\_sparse_coo_tensor_with_dims_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7388684Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7389670Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7390660Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7391498Z copying torch\include\ATen\ops\_sparse_csc_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7392292Z copying torch\include\ATen\ops\_sparse_csr_prod.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7400669Z copying torch\include\ATen\ops\_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7406903Z copying torch\include\ATen\ops\_sparse_csr_prod_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7413611Z copying torch\include\ATen\ops\_sparse_csr_prod_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7420919Z copying torch\include\ATen\ops\_sparse_csr_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7428634Z copying torch\include\ATen\ops\_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7435869Z copying torch\include\ATen\ops\_sparse_csr_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7443206Z copying torch\include\ATen\ops\_sparse_csr_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7450135Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7457514Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7464639Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7471734Z copying torch\include\ATen\ops\_sparse_csr_tensor_unsafe_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7479283Z copying torch\include\ATen\ops\_sparse_log_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7486422Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7493780Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7500801Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7507902Z copying torch\include\ATen\ops\_sparse_log_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7514994Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7522488Z copying torch\include\ATen\ops\_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7529731Z copying torch\include\ATen\ops\_sparse_log_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7536718Z copying torch\include\ATen\ops\_sparse_log_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7543919Z copying torch\include\ATen\ops\_sparse_mask_projection.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7551216Z copying torch\include\ATen\ops\_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7558086Z copying torch\include\ATen\ops\_sparse_mask_projection_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7565227Z copying torch\include\ATen\ops\_sparse_mask_projection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7571949Z copying torch\include\ATen\ops\_sparse_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7579016Z copying torch\include\ATen\ops\_sparse_mm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7585845Z copying torch\include\ATen\ops\_sparse_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7592746Z copying torch\include\ATen\ops\_sparse_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7599425Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7606363Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7614036Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7621244Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7628319Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7635156Z copying torch\include\ATen\ops\_sparse_mm_reduce_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7642108Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7649148Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7657395Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7664354Z copying torch\include\ATen\ops\_sparse_semi_structured_addmm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7671285Z copying torch\include\ATen\ops\_sparse_semi_structured_apply.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7678255Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7685565Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7692634Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7726402Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7727459Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7729782Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7730668Z copying torch\include\ATen\ops\_sparse_semi_structured_apply_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7731605Z copying torch\include\ATen\ops\_sparse_semi_structured_linear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7736009Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7743516Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7750676Z copying torch\include\ATen\ops\_sparse_semi_structured_linear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7758355Z copying torch\include\ATen\ops\_sparse_semi_structured_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7765541Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7772592Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7781253Z copying torch\include\ATen\ops\_sparse_semi_structured_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7787994Z copying torch\include\ATen\ops\_sparse_semi_structured_tile.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7795250Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7802469Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7809921Z copying torch\include\ATen\ops\_sparse_semi_structured_tile_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7816653Z copying torch\include\ATen\ops\_sparse_softmax.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7824060Z copying torch\include\ATen\ops\_sparse_softmax_backward_data.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7832632Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7847115Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7848772Z copying torch\include\ATen\ops\_sparse_softmax_backward_data_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7857063Z copying torch\include\ATen\ops\_sparse_softmax_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7864633Z copying torch\include\ATen\ops\_sparse_softmax_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7872596Z copying torch\include\ATen\ops\_sparse_softmax_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7879965Z copying torch\include\ATen\ops\_sparse_softmax_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7887655Z copying torch\include\ATen\ops\_sparse_sparse_matmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7896224Z copying torch\include\ATen\ops\_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7902365Z copying torch\include\ATen\ops\_sparse_sparse_matmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7909184Z copying torch\include\ATen\ops\_sparse_sparse_matmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7916419Z copying torch\include\ATen\ops\_sparse_sum.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7923174Z copying torch\include\ATen\ops\_sparse_sum_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7930800Z copying torch\include\ATen\ops\_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7938180Z copying torch\include\ATen\ops\_sparse_sum_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7945282Z copying torch\include\ATen\ops\_sparse_sum_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7991516Z copying torch\include\ATen\ops\_sparse_sum_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.7998395Z copying torch\include\ATen\ops\_sparse_sum_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8005783Z copying torch\include\ATen\ops\_sparse_sum_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8012750Z copying torch\include\ATen\ops\_sparse_sum_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8019578Z copying torch\include\ATen\ops\_spdiags.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8026503Z copying torch\include\ATen\ops\_spdiags_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8033169Z copying torch\include\ATen\ops\_spdiags_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8059130Z copying torch\include\ATen\ops\_spdiags_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8066149Z copying torch\include\ATen\ops\_spdiags_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8073190Z copying torch\include\ATen\ops\_spsolve.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8079997Z copying torch\include\ATen\ops\_spsolve_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8086774Z copying torch\include\ATen\ops\_spsolve_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8093879Z copying torch\include\ATen\ops\_stack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8100941Z copying torch\include\ATen\ops\_stack_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8107895Z copying torch\include\ATen\ops\_stack_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8114511Z copying torch\include\ATen\ops\_stack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8121091Z copying torch\include\ATen\ops\_stack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8127992Z copying torch\include\ATen\ops\_standard_gamma.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8135952Z copying torch\include\ATen\ops\_standard_gamma_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8143094Z copying torch\include\ATen\ops\_standard_gamma_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8149897Z copying torch\include\ATen\ops\_standard_gamma_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8158286Z copying torch\include\ATen\ops\_standard_gamma_grad.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8165588Z copying torch\include\ATen\ops\_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8173229Z copying torch\include\ATen\ops\_standard_gamma_grad_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8180141Z copying torch\include\ATen\ops\_standard_gamma_grad_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8187624Z copying torch\include\ATen\ops\_standard_gamma_grad_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8194566Z copying torch\include\ATen\ops\_standard_gamma_grad_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8201641Z copying torch\include\ATen\ops\_standard_gamma_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8208823Z copying torch\include\ATen\ops\_standard_gamma_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8216339Z copying torch\include\ATen\ops\_test_ambiguous_defaults.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8223377Z copying torch\include\ATen\ops\_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8230133Z copying torch\include\ATen\ops\_test_ambiguous_defaults_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8237111Z copying torch\include\ATen\ops\_test_ambiguous_defaults_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8245242Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8256853Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8264084Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8270993Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8279409Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8285780Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8293645Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8300966Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8308897Z 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-07-17T08:09:50.8322782Z 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-07-17T08:09:50.8330829Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8338664Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8346277Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8353310Z copying torch\include\ATen\ops\_test_autograd_multiple_dispatch_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8360408Z copying torch\include\ATen\ops\_test_check_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8369057Z copying torch\include\ATen\ops\_test_check_tensor_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8374958Z copying torch\include\ATen\ops\_test_check_tensor_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8382029Z copying torch\include\ATen\ops\_test_check_tensor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8388930Z copying torch\include\ATen\ops\_test_functorch_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8396781Z copying torch\include\ATen\ops\_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8403335Z copying torch\include\ATen\ops\_test_functorch_fallback_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8410165Z copying torch\include\ATen\ops\_test_functorch_fallback_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8417131Z copying torch\include\ATen\ops\_test_functorch_fallback_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8424119Z copying torch\include\ATen\ops\_test_optional_filled_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8431559Z copying torch\include\ATen\ops\_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8438381Z copying torch\include\ATen\ops\_test_optional_filled_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8445324Z copying torch\include\ATen\ops\_test_optional_filled_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8452156Z copying torch\include\ATen\ops\_test_optional_filled_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8459377Z copying torch\include\ATen\ops\_test_optional_floatlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8466632Z copying torch\include\ATen\ops\_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8473599Z copying torch\include\ATen\ops\_test_optional_floatlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8480375Z copying torch\include\ATen\ops\_test_optional_floatlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8488009Z copying torch\include\ATen\ops\_test_optional_floatlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8494841Z copying torch\include\ATen\ops\_test_optional_intlist.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8502030Z copying torch\include\ATen\ops\_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8509191Z copying torch\include\ATen\ops\_test_optional_intlist_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8516093Z copying torch\include\ATen\ops\_test_optional_intlist_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8522899Z copying torch\include\ATen\ops\_test_optional_intlist_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8530049Z copying torch\include\ATen\ops\_test_parallel_materialize.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8537488Z copying torch\include\ATen\ops\_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8544507Z copying torch\include\ATen\ops\_test_parallel_materialize_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8551093Z copying torch\include\ATen\ops\_test_parallel_materialize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8558220Z copying torch\include\ATen\ops\_test_serialization_subcmul.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8565996Z copying torch\include\ATen\ops\_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8572692Z copying torch\include\ATen\ops\_test_serialization_subcmul_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8580130Z copying torch\include\ATen\ops\_test_serialization_subcmul_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8587585Z copying torch\include\ATen\ops\_test_string_default.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8595870Z copying torch\include\ATen\ops\_test_string_default_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8601802Z copying torch\include\ATen\ops\_test_string_default_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8608364Z copying torch\include\ATen\ops\_test_string_default_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8615449Z copying torch\include\ATen\ops\_test_warn_in_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8624631Z copying torch\include\ATen\ops\_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8631042Z copying torch\include\ATen\ops\_test_warn_in_autograd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8638113Z copying torch\include\ATen\ops\_test_warn_in_autograd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8645134Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8653743Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8660133Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8667150Z copying torch\include\ATen\ops\_thnn_differentiable_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8674084Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8682469Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8688647Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8695807Z copying torch\include\ATen\ops\_thnn_differentiable_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8702872Z copying torch\include\ATen\ops\_thnn_fused_gru_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8710846Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8717528Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8724500Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8731810Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8739935Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8746272Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8753132Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8760114Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8768231Z copying torch\include\ATen\ops\_thnn_fused_gru_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8774669Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8781723Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8789049Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8797502Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8804093Z 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-07-17T08:09:50.8811154Z 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-07-17T08:09:50.8818536Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8826161Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_impl_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8836141Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8846032Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8848641Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8855965Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8864241Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8870447Z copying torch\include\ATen\ops\_thnn_fused_lstm_cell_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8877446Z copying torch\include\ATen\ops\_to_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8884260Z copying torch\include\ATen\ops\_to_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8890907Z copying torch\include\ATen\ops\_to_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8898046Z copying torch\include\ATen\ops\_to_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8904898Z copying torch\include\ATen\ops\_to_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8911762Z copying torch\include\ATen\ops\_to_cpu_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8918340Z copying torch\include\ATen\ops\_to_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8924702Z copying torch\include\ATen\ops\_to_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8931307Z copying torch\include\ATen\ops\_to_dense.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8938356Z copying torch\include\ATen\ops\_to_dense_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8944935Z copying torch\include\ATen\ops\_to_dense_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8951854Z copying torch\include\ATen\ops\_to_dense_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8958658Z copying torch\include\ATen\ops\_to_sparse.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.8965467Z copying torch\include\ATen\ops\_to_sparse_bsc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9000154Z copying torch\include\ATen\ops\_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9006545Z copying torch\include\ATen\ops\_to_sparse_bsc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9013348Z copying torch\include\ATen\ops\_to_sparse_bsc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9020246Z copying torch\include\ATen\ops\_to_sparse_bsc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9026871Z copying torch\include\ATen\ops\_to_sparse_bsc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9033493Z copying torch\include\ATen\ops\_to_sparse_bsr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9040707Z copying torch\include\ATen\ops\_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9047414Z copying torch\include\ATen\ops\_to_sparse_bsr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9054401Z copying torch\include\ATen\ops\_to_sparse_bsr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9060952Z copying torch\include\ATen\ops\_to_sparse_bsr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9067672Z copying torch\include\ATen\ops\_to_sparse_bsr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9074541Z copying torch\include\ATen\ops\_to_sparse_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9081406Z copying torch\include\ATen\ops\_to_sparse_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9087989Z copying torch\include\ATen\ops\_to_sparse_csc.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9095865Z copying torch\include\ATen\ops\_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9102545Z copying torch\include\ATen\ops\_to_sparse_csc_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9109533Z copying torch\include\ATen\ops\_to_sparse_csc_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9116437Z copying torch\include\ATen\ops\_to_sparse_csc_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9124396Z copying torch\include\ATen\ops\_to_sparse_csc_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9130663Z copying torch\include\ATen\ops\_to_sparse_csr.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9138824Z copying torch\include\ATen\ops\_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9145366Z copying torch\include\ATen\ops\_to_sparse_csr_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9153263Z copying torch\include\ATen\ops\_to_sparse_csr_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9159359Z copying torch\include\ATen\ops\_to_sparse_csr_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9166174Z copying torch\include\ATen\ops\_to_sparse_csr_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9173368Z copying torch\include\ATen\ops\_to_sparse_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9180455Z copying torch\include\ATen\ops\_to_sparse_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9187929Z copying torch\include\ATen\ops\_to_sparse_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9194387Z copying torch\include\ATen\ops\_to_sparse_semi_structured.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9201355Z copying torch\include\ATen\ops\_to_sparse_semi_structured_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9208821Z copying torch\include\ATen\ops\_to_sparse_semi_structured_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9217144Z copying torch\include\ATen\ops\_to_sparse_semi_structured_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9223886Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9231162Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9238061Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9246277Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9252960Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9260001Z copying torch\include\ATen\ops\_transformer_encoder_layer_fwd_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9267257Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9275158Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9281520Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9288574Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9295703Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9303941Z copying torch\include\ATen\ops\_transform_bias_rescale_qkv_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9310086Z copying torch\include\ATen\ops\_trilinear.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9317410Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9325159Z copying torch\include\ATen\ops\_trilinear_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9331990Z copying torch\include\ATen\ops\_trilinear_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9338782Z copying torch\include\ATen\ops\_trilinear_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9345935Z copying torch\include\ATen\ops\_triton_multi_head_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9353136Z copying torch\include\ATen\ops\_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9360130Z copying torch\include\ATen\ops\_triton_multi_head_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9367182Z copying torch\include\ATen\ops\_triton_multi_head_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9374125Z copying torch\include\ATen\ops\_triton_multi_head_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9380972Z copying torch\include\ATen\ops\_triton_scaled_dot_attention.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9388521Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9395431Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9402356Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9409114Z copying torch\include\ATen\ops\_triton_scaled_dot_attention_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9416126Z copying torch\include\ATen\ops\_unique.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9422493Z copying torch\include\ATen\ops\_unique2.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9429285Z copying torch\include\ATen\ops\_unique2_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9435908Z copying torch\include\ATen\ops\_unique2_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9442588Z copying torch\include\ATen\ops\_unique2_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9449288Z copying torch\include\ATen\ops\_unique2_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9456092Z copying torch\include\ATen\ops\_unique2_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9462964Z copying torch\include\ATen\ops\_unique_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9470274Z copying torch\include\ATen\ops\_unique_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9476924Z copying torch\include\ATen\ops\_unique_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9483484Z copying torch\include\ATen\ops\_unique_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9490103Z copying torch\include\ATen\ops\_unique_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9502469Z copying torch\include\ATen\ops\_unpack_dual.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9509306Z copying torch\include\ATen\ops\_unpack_dual_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9515856Z copying torch\include\ATen\ops\_unpack_dual_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9522487Z copying torch\include\ATen\ops\_unpack_dual_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9528898Z copying torch\include\ATen\ops\_unsafe_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9535892Z copying torch\include\ATen\ops\_unsafe_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9542242Z copying torch\include\ATen\ops\_unsafe_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9548586Z copying torch\include\ATen\ops\_unsafe_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9555270Z copying torch\include\ATen\ops\_unsafe_index_put.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9562271Z copying torch\include\ATen\ops\_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9568821Z copying torch\include\ATen\ops\_unsafe_index_put_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9575754Z copying torch\include\ATen\ops\_unsafe_index_put_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9582403Z copying torch\include\ATen\ops\_unsafe_masked_index.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9589486Z copying torch\include\ATen\ops\_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9596021Z copying torch\include\ATen\ops\_unsafe_masked_index_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9602608Z copying torch\include\ATen\ops\_unsafe_masked_index_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9609273Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9616438Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9623222Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9635158Z copying torch\include\ATen\ops\_unsafe_masked_index_put_accumulate_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9641635Z copying torch\include\ATen\ops\_unsafe_view.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9648957Z copying torch\include\ATen\ops\_unsafe_view_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9655678Z copying torch\include\ATen\ops\_unsafe_view_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9662486Z copying torch\include\ATen\ops\_unsafe_view_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9669318Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9676102Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9683490Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9690107Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9697043Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9704228Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9711316Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9718098Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9724948Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9750159Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9757482Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9765110Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9772335Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9779193Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9786076Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9793325Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9800179Z copying torch\include\ATen\ops\_upsample_bicubic2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9807300Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9814342Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9821928Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9828806Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9837078Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9874650Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9875212Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9875623Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9876020Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9876599Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9882738Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9889712Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9896761Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9903605Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9910779Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9917723Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9926075Z copying torch\include\ATen\ops\_upsample_bilinear2d_aa_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9931678Z copying torch\include\ATen\ops\_upsample_nearest_exact1d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9954496Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9962148Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9969171Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9976166Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9982928Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9990264Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:50.9997370Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0003986Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0011446Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0018335Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0025289Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0032542Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0039895Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0046865Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0053769Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0060711Z copying torch\include\ATen\ops\_upsample_nearest_exact1d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0067526Z copying torch\include\ATen\ops\_upsample_nearest_exact2d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0074812Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0082807Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0091880Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0098295Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0105128Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0112045Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0119164Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0125956Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0133553Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0140452Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0147266Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0154552Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0161367Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0168389Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0175528Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0182248Z copying torch\include\ATen\ops\_upsample_nearest_exact2d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0189058Z copying torch\include\ATen\ops\_upsample_nearest_exact3d.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0196512Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0204093Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0211245Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0218648Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0225491Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0232622Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0239564Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0246439Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0254677Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0261048Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0268256Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0275047Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0282440Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0289278Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_meta_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0296412Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0303352Z copying torch\include\ATen\ops\_upsample_nearest_exact3d_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0310062Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0316817Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0323571Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0330300Z copying torch\include\ATen\ops\_use_cudnn_ctc_loss_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0337148Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0344399Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0351424Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0358285Z copying torch\include\ATen\ops\_use_cudnn_rnn_flatten_weight_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0365385Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0372488Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0379376Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0386525Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0393238Z copying torch\include\ATen\ops\_validate_compressed_sparse_indices_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0400440Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0407443Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0415479Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0422864Z copying torch\include\ATen\ops\_validate_sparse_bsc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0429729Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0437010Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0443896Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0450933Z copying torch\include\ATen\ops\_validate_sparse_bsr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0458371Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0465552Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0473370Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0480075Z copying torch\include\ATen\ops\_validate_sparse_compressed_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0487247Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0494871Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0501799Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0508603Z copying torch\include\ATen\ops\_validate_sparse_coo_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0515546Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0523456Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0530067Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0537461Z copying torch\include\ATen\ops\_validate_sparse_csc_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0544411Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0551519Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0559565Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0565781Z copying torch\include\ATen\ops\_validate_sparse_csr_tensor_args_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0572618Z copying torch\include\ATen\ops\_values.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0578962Z copying torch\include\ATen\ops\_values_copy.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0586177Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0604213Z copying torch\include\ATen\ops\_values_copy_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0611826Z copying torch\include\ATen\ops\_values_copy_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0618350Z copying torch\include\ATen\ops\_values_copy_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0625335Z copying torch\include\ATen\ops\_values_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0631875Z copying torch\include\ATen\ops\_values_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0638600Z copying torch\include\ATen\ops\_version.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0646092Z copying torch\include\ATen\ops\_version_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0652078Z copying torch\include\ATen\ops\_version_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0658538Z copying torch\include\ATen\ops\_version_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0665409Z copying torch\include\ATen\ops\_weight_int4pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0672568Z copying torch\include\ATen\ops\_weight_int4pack_mm_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0679641Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0686557Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0693962Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0700803Z copying torch\include\ATen\ops\_weight_int4pack_mm_for_cpu_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0707749Z copying torch\include\ATen\ops\_weight_int4pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0714577Z copying torch\include\ATen\ops\_weight_int4pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0722854Z copying torch\include\ATen\ops\_weight_int4pack_mm_with_scales_and_zeros.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0729099Z 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-07-17T08:09:51.0736133Z 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-07-17T08:09:51.0743771Z copying torch\include\ATen\ops\_weight_int8pack_mm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0751627Z copying torch\include\ATen\ops\_weight_int8pack_mm_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0757548Z copying torch\include\ATen\ops\_weight_int8pack_mm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0764389Z copying torch\include\ATen\ops\_weight_int8pack_mm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0771146Z copying torch\include\ATen\ops\_weight_norm.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0778768Z copying torch\include\ATen\ops\_weight_norm_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0786493Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0793178Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0800634Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0807862Z copying torch\include\ATen\ops\_weight_norm_differentiable_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0815075Z copying torch\include\ATen\ops\_weight_norm_interface.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0822235Z copying torch\include\ATen\ops\_weight_norm_interface_backward.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0829541Z copying torch\include\ATen\ops\_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0836536Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0843968Z copying torch\include\ATen\ops\_weight_norm_interface_backward_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0858209Z copying torch\include\ATen\ops\_weight_norm_interface_backward_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0859698Z copying torch\include\ATen\ops\_weight_norm_interface_backward_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0867066Z copying torch\include\ATen\ops\_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0876329Z copying torch\include\ATen\ops\_weight_norm_interface_cpu_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0882379Z copying torch\include\ATen\ops\_weight_norm_interface_cuda_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0889443Z copying torch\include\ATen\ops\_weight_norm_interface_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0896779Z copying torch\include\ATen\ops\_weight_norm_interface_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0903399Z copying torch\include\ATen\ops\_weight_norm_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0910254Z copying torch\include\ATen\ops\_weight_norm_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0917115Z copying torch\include\ATen\ops\_wrapped_linear_prepack.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0924056Z copying torch\include\ATen\ops\_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0931017Z copying torch\include\ATen\ops\_wrapped_linear_prepack_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0937831Z copying torch\include\ATen\ops\_wrapped_linear_prepack_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0944829Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0951972Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0958861Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_native.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0966038Z copying torch\include\ATen\ops\_wrapped_quantized_linear_prepacked_ops.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\ops 2025-07-17T08:09:51.0972050Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-17T08:09:51.0975067Z copying torch\include\ATen\quantized\QTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-17T08:09:51.0981313Z copying torch\include\ATen\quantized\Quantizer.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\quantized 2025-07-17T08:09:51.0986829Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-17T08:09:51.0989777Z copying torch\include\ATen\xpu\CachingHostAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-17T08:09:51.0996599Z copying torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-17T08:09:51.1002369Z copying torch\include\ATen\xpu\XPUContext.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-17T08:09:51.1008581Z copying torch\include\ATen\xpu\XPUDevice.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-17T08:09:51.1023756Z copying torch\include\ATen\xpu\XPUEvent.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-17T08:09:51.1029987Z copying torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu 2025-07-17T08:09:51.1035543Z creating build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-07-17T08:09:51.1038345Z copying torch\include\ATen\xpu\detail\XPUHooks.h -> build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\detail 2025-07-17T08:09:51.1043734Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1048279Z copying torch\include\c10\core\alignment.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1054368Z copying torch\include\c10\core\Allocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1061030Z copying torch\include\c10\core\AutogradState.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1067158Z copying torch\include\c10\core\Backend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1080541Z copying torch\include\c10\core\CachingDeviceAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1087120Z copying torch\include\c10\core\CompileTimeFunctionPointer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1093816Z copying torch\include\c10\core\ConstantSymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1099991Z copying torch\include\c10\core\Contiguity.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1106510Z copying torch\include\c10\core\CopyBytes.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1113233Z copying torch\include\c10\core\CPUAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1120948Z copying torch\include\c10\core\DefaultDtype.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1127072Z copying torch\include\c10\core\DefaultTensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1133053Z copying torch\include\c10\core\Device.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1139416Z copying torch\include\c10\core\DeviceArray.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1150219Z copying torch\include\c10\core\DeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1156578Z copying torch\include\c10\core\DeviceType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1163171Z copying torch\include\c10\core\DispatchKey.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1175437Z copying torch\include\c10\core\DispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1182449Z copying torch\include\c10\core\DynamicCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1188819Z copying torch\include\c10\core\Event.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1265898Z copying torch\include\c10\core\GeneratorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1272803Z copying torch\include\c10\core\GradMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1279250Z copying torch\include\c10\core\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1285815Z copying torch\include\c10\core\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1293334Z copying torch\include\c10\core\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1299474Z copying torch\include\c10\core\OptionalRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1305244Z copying torch\include\c10\core\PyHandleCache.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1311821Z copying torch\include\c10\core\QEngine.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1318087Z copying torch\include\c10\core\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1368789Z copying torch\include\c10\core\RefcountedDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1369606Z copying torch\include\c10\core\SafePyObject.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1370307Z copying torch\include\c10\core\Scalar.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1372270Z copying torch\include\c10\core\ScalarType.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1467567Z copying torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1473648Z copying torch\include\c10\core\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1479879Z copying torch\include\c10\core\StorageImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1486446Z copying torch\include\c10\core\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1492882Z copying torch\include\c10\core\StreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1499476Z copying torch\include\c10\core\SymbolicShapeMeta.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1506157Z copying torch\include\c10\core\SymBool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1512176Z copying torch\include\c10\core\SymFloat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1518693Z copying torch\include\c10\core\SymInt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1525501Z copying torch\include\c10\core\SymIntArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1532188Z copying torch\include\c10\core\SymNodeImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1538887Z copying torch\include\c10\core\TensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1551871Z copying torch\include\c10\core\TensorOptions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1558831Z copying torch\include\c10\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1566100Z copying torch\include\c10\core\UndefinedTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1572889Z copying torch\include\c10\core\WrapDimMinimal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core 2025-07-17T08:09:51.1578391Z creating build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1581301Z copying torch\include\c10\core\impl\alloc_cpu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1587998Z copying torch\include\c10\core\impl\COW.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1594259Z copying torch\include\c10\core\impl\COWDeleter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1600712Z copying torch\include\c10\core\impl\DeviceGuardImplInterface.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1611282Z copying torch\include\c10\core\impl\FakeGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1618227Z copying torch\include\c10\core\impl\GPUTrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1624528Z copying torch\include\c10\core\impl\HermeticPyObjectTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1630966Z copying torch\include\c10\core\impl\InlineDeviceGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1637494Z copying torch\include\c10\core\impl\InlineEvent.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1644011Z copying torch\include\c10\core\impl\InlineStreamGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1650922Z copying torch\include\c10\core\impl\LocalDispatchKeySet.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1657609Z copying torch\include\c10\core\impl\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1670230Z copying torch\include\c10\core\impl\PyObjectSlot.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1705279Z copying torch\include\c10\core\impl\PythonDispatcherTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1711918Z copying torch\include\c10\core\impl\SizesAndStrides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1718707Z copying torch\include\c10\core\impl\TorchDispatchModeTLS.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1725201Z copying torch\include\c10\core\impl\VirtualGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\core\impl 2025-07-17T08:09:51.1730703Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1733690Z copying torch\include\c10\cuda\CUDAAlgorithm.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1746916Z copying torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1753359Z copying torch\include\c10\cuda\CUDACachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1760483Z copying torch\include\c10\cuda\CUDADeviceAssertion.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1771105Z copying torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1777536Z copying torch\include\c10\cuda\CUDAException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1784440Z copying torch\include\c10\cuda\CUDAFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1790615Z copying torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1796918Z copying torch\include\c10\cuda\CUDAGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1803961Z copying torch\include\c10\cuda\CUDAMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1810830Z copying torch\include\c10\cuda\CUDAMathCompat.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1817367Z copying torch\include\c10\cuda\CUDAMiscFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1823735Z copying torch\include\c10\cuda\CUDAStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1830038Z copying torch\include\c10\cuda\driver_api.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda 2025-07-17T08:09:51.1836268Z creating build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-17T08:09:51.1840124Z copying torch\include\c10\cuda\impl\CUDAGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-17T08:09:51.1845907Z copying torch\include\c10\cuda\impl\CUDATest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-17T08:09:51.1851947Z copying torch\include\c10\cuda\impl\cuda_cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\cuda\impl 2025-07-17T08:09:51.1891800Z creating build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-17T08:09:51.1892441Z copying torch\include\c10\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-17T08:09:51.1893178Z copying torch\include\c10\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-17T08:09:51.1893988Z copying torch\include\c10\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\macros 2025-07-17T08:09:51.1894574Z creating build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1895141Z copying torch\include\c10\metal\atomic.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1895827Z copying torch\include\c10\metal\common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1897956Z copying torch\include\c10\metal\expm1f.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1904088Z copying torch\include\c10\metal\indexing.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1911102Z copying torch\include\c10\metal\random.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1917501Z copying torch\include\c10\metal\reduction_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1930647Z copying torch\include\c10\metal\special_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1937941Z copying torch\include\c10\metal\utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\metal 2025-07-17T08:09:51.1943830Z creating build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-17T08:09:51.1946755Z copying torch\include\c10\mobile\CPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-17T08:09:51.1971093Z copying torch\include\c10\mobile\CPUProfilingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\mobile 2025-07-17T08:09:51.1976593Z creating build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-17T08:09:51.1980855Z copying torch\include\c10\test\util\complex_math_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-17T08:09:51.1988290Z copying torch\include\c10\test\util\complex_test_common.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-17T08:09:51.1996153Z copying torch\include\c10\test\util\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\test\util 2025-07-17T08:09:51.2001616Z creating build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2004800Z copying torch\include\c10\util\AbortHandler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2011301Z copying torch\include\c10\util\accumulate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2017745Z copying torch\include\c10\util\AlignOf.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2024056Z copying torch\include\c10\util\ApproximateClock.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2036887Z copying torch\include\c10\util\Array.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2042956Z copying torch\include\c10\util\ArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2049564Z copying torch\include\c10\util\Backtrace.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2056094Z copying torch\include\c10\util\BFloat16-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2062841Z copying torch\include\c10\util\BFloat16-math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2069535Z copying torch\include\c10\util\BFloat16.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2077029Z copying torch\include\c10\util\bits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2082807Z copying torch\include\c10\util\Bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2088883Z copying torch\include\c10\util\bit_cast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2095601Z copying torch\include\c10\util\C++17.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2102087Z copying torch\include\c10\util\CallOnce.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2108503Z copying torch\include\c10\util\complex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2115738Z copying torch\include\c10\util\complex_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2123089Z copying torch\include\c10\util\complex_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2129094Z copying torch\include\c10\util\ConstexprCrc.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2135679Z copying torch\include\c10\util\copysign.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2142320Z copying torch\include\c10\util\DeadlockDetection.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2149578Z copying torch\include\c10\util\Deprecated.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2157235Z copying torch\include\c10\util\DimVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2163363Z copying torch\include\c10\util\DynamicCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2174930Z copying torch\include\c10\util\Enumerate.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2181526Z copying torch\include\c10\util\env.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2187819Z copying torch\include\c10\util\error.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2194470Z copying torch\include\c10\util\Exception.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2201930Z copying torch\include\c10\util\ExclusivelyOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2209203Z copying torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2215861Z copying torch\include\c10\util\FbcodeMaps.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2222214Z copying torch\include\c10\util\Flags.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2228871Z copying torch\include\c10\util\flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2237110Z copying torch\include\c10\util\Float4_e2m1fn_x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2243839Z copying torch\include\c10\util\Float8_e4m3fn-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2256767Z copying torch\include\c10\util\Float8_e4m3fn.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2263763Z copying torch\include\c10\util\Float8_e4m3fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2270812Z copying torch\include\c10\util\Float8_e4m3fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2277541Z copying torch\include\c10\util\Float8_e5m2-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2284315Z copying torch\include\c10\util\Float8_e5m2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2291170Z copying torch\include\c10\util\Float8_e5m2fnuz-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2298083Z copying torch\include\c10\util\Float8_e5m2fnuz.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2305112Z copying torch\include\c10\util\Float8_e8m0fnu-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2311815Z copying torch\include\c10\util\Float8_e8m0fnu.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2323548Z copying torch\include\c10\util\Float8_fnuz_cvt.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2330148Z copying torch\include\c10\util\floating_point_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2337134Z copying torch\include\c10\util\FunctionRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2344944Z copying torch\include\c10\util\Gauge.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2350721Z copying torch\include\c10\util\generic_math.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2357550Z copying torch\include\c10\util\Half-inl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2364119Z copying torch\include\c10\util\Half.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2371282Z copying torch\include\c10\util\hash.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2378355Z copying torch\include\c10\util\IdWrapper.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2385532Z copying torch\include\c10\util\int128.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2391946Z copying torch\include\c10\util\IntrusiveList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2398525Z copying torch\include\c10\util\intrusive_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2405897Z copying torch\include\c10\util\irange.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2417554Z copying torch\include\c10\util\Lazy.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2424199Z copying torch\include\c10\util\LeftRight.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2431228Z copying torch\include\c10\util\llvmMathExtras.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2438047Z copying torch\include\c10\util\Load.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2444486Z copying torch\include\c10\util\Logging.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2451448Z copying torch\include\c10\util\logging_is_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2458267Z copying torch\include\c10\util\logging_is_not_google_glog.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2465173Z copying torch\include\c10\util\MathConstants.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2474573Z copying torch\include\c10\util\MaybeOwned.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2506195Z copying torch\include\c10\util\Metaprogramming.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2507023Z copying torch\include\c10\util\NetworkFlow.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2507715Z copying torch\include\c10\util\numa.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2509552Z copying torch\include\c10\util\Optional.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2516164Z copying torch\include\c10\util\OptionalArrayRef.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2523546Z copying torch\include\c10\util\order_preserving_flat_hash_map.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2531309Z copying torch\include\c10\util\overflows.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2538198Z copying torch\include\c10\util\overloaded.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2546081Z copying torch\include\c10\util\ParallelGuard.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2555734Z copying torch\include\c10\util\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2561295Z copying torch\include\c10\util\qint32.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2566923Z copying torch\include\c10\util\qint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2573022Z copying torch\include\c10\util\quint2x4.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2584277Z copying torch\include\c10\util\quint4x2.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2594658Z copying torch\include\c10\util\quint8.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2601146Z copying torch\include\c10\util\Registry.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2608057Z copying torch\include\c10\util\safe_numerics.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2614911Z copying torch\include\c10\util\ScopeExit.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2621532Z copying torch\include\c10\util\Semaphore.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2628449Z copying torch\include\c10\util\signal_handler.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2635151Z copying torch\include\c10\util\SmallBuffer.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2641670Z copying torch\include\c10\util\SmallVector.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2649346Z copying torch\include\c10\util\sparse_bitset.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2656453Z copying torch\include\c10\util\ssize.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2664439Z copying torch\include\c10\util\static_tracepoint.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2670186Z copying torch\include\c10\util\static_tracepoint_elfx86.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2681250Z copying torch\include\c10\util\strides.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2687522Z copying torch\include\c10\util\StringUtil.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2698911Z copying torch\include\c10\util\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2705494Z copying torch\include\c10\util\string_view.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2712570Z copying torch\include\c10\util\strong_type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2720286Z copying torch\include\c10\util\Synchronized.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2726678Z copying torch\include\c10\util\tempfile.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2733754Z copying torch\include\c10\util\ThreadLocal.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2740763Z copying torch\include\c10\util\ThreadLocalDebugInfo.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2747662Z copying torch\include\c10\util\thread_name.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2754051Z copying torch\include\c10\util\Type.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2760649Z copying torch\include\c10\util\TypeCast.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2767086Z copying torch\include\c10\util\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2774267Z copying torch\include\c10\util\TypeIndex.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2781159Z copying torch\include\c10\util\TypeList.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2787919Z copying torch\include\c10\util\TypeSafeSignMath.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2794703Z copying torch\include\c10\util\TypeTraits.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2807056Z copying torch\include\c10\util\Unicode.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2813263Z copying torch\include\c10\util\UniqueVoidPtr.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2819978Z copying torch\include\c10\util\Unroll.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2827288Z copying torch\include\c10\util\WaitCounter.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2833505Z copying torch\include\c10\util\WaitCounterDynamicBackend.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2840019Z copying torch\include\c10\util\win32-headers.h -> build\lib.win-amd64-cpython-39\torch\include\c10\util 2025-07-17T08:09:51.2851744Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-17T08:09:51.2858301Z copying torch\include\c10\xpu\XPUCachingAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-17T08:09:51.2865069Z copying torch\include\c10\xpu\XPUDeviceProp.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-17T08:09:51.2872323Z copying torch\include\c10\xpu\XPUException.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-17T08:09:51.2879093Z copying torch\include\c10\xpu\XPUFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-17T08:09:51.2891610Z copying torch\include\c10\xpu\XPUMacros.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-17T08:09:51.2898701Z copying torch\include\c10\xpu\XPUStream.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu 2025-07-17T08:09:51.2904960Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-07-17T08:09:51.2907916Z copying torch\include\c10\xpu\impl\XPUGuardImpl.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\impl 2025-07-17T08:09:51.2913983Z creating build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-07-17T08:09:51.2917846Z copying torch\include\c10\xpu\test\impl\XPUTest.h -> build\lib.win-amd64-cpython-39\torch\include\c10\xpu\test\impl 2025-07-17T08:09:51.2923566Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-17T08:09:51.2927588Z copying torch\include\caffe2\core\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-17T08:09:51.2934426Z copying torch\include\caffe2\core\macros.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-17T08:09:51.2940627Z copying torch\include\caffe2\core\timer.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\core 2025-07-17T08:09:51.2946568Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-17T08:09:51.2949489Z copying torch\include\caffe2\perfkernels\batch_box_cox_vec.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-17T08:09:51.2955902Z copying torch\include\caffe2\perfkernels\common.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-17T08:09:51.2962460Z copying torch\include\caffe2\perfkernels\embedding_lookup_idx.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels 2025-07-17T08:09:51.2967968Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.2970882Z copying torch\include\caffe2\serialize\crc_alt.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.2978371Z copying torch\include\caffe2\serialize\file_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.2984934Z copying torch\include\caffe2\serialize\inline_container.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.2991756Z copying torch\include\caffe2\serialize\in_memory_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.3002551Z copying torch\include\caffe2\serialize\istream_adapter.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.3009417Z copying torch\include\caffe2\serialize\read_adapter_interface.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.3016287Z copying torch\include\caffe2\serialize\versions.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize 2025-07-17T08:09:51.3021958Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-17T08:09:51.3024828Z copying torch\include\caffe2\utils\fixed_divisor.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-17T08:09:51.3031390Z copying torch\include\caffe2\utils\proto_wrap.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-17T08:09:51.3037773Z copying torch\include\caffe2\utils\string_utils.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils 2025-07-17T08:09:51.3043647Z creating build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-17T08:09:51.3051003Z copying torch\include\caffe2\utils\threadpool\pthreadpool-cpp.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-17T08:09:51.3057690Z copying torch\include\caffe2\utils\threadpool\pthreadpool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-17T08:09:51.3063864Z copying torch\include\caffe2\utils\threadpool\ThreadPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-17T08:09:51.3076199Z copying torch\include\caffe2\utils\threadpool\ThreadPoolCommon.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-17T08:09:51.3146755Z copying torch\include\caffe2\utils\threadpool\thread_pool_guard.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-17T08:09:51.3153178Z copying torch\include\caffe2\utils\threadpool\WorkersPool.h -> build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\threadpool 2025-07-17T08:09:51.3158706Z creating build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3161546Z copying torch\include\fbgemm\ConvUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3167763Z copying torch\include\fbgemm\Fbgemm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3174858Z copying torch\include\fbgemm\FbgemmBuild.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3181131Z copying torch\include\fbgemm\FbgemmConvert.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3196384Z copying torch\include\fbgemm\FbgemmEmbedding.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3203072Z copying torch\include\fbgemm\FbgemmFP16.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3209334Z copying torch\include\fbgemm\FbgemmFP32.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3218732Z copying torch\include\fbgemm\FbgemmFPCommon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3225147Z copying torch\include\fbgemm\FbgemmI64.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3231302Z copying torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3238009Z copying torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3244440Z copying torch\include\fbgemm\FbgemmI8Spmdm.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3251589Z copying torch\include\fbgemm\FbgemmPackMatrixB.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3258918Z copying torch\include\fbgemm\FbgemmSparse.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3265610Z copying torch\include\fbgemm\FloatConversion.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3272766Z copying torch\include\fbgemm\OutputProcessing-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3279288Z copying torch\include\fbgemm\PackingTraits-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3286176Z copying torch\include\fbgemm\QuantUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3293023Z copying torch\include\fbgemm\QuantUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3306284Z copying torch\include\fbgemm\QuantUtilsAvx512.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3312291Z copying torch\include\fbgemm\QuantUtilsNeon.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3318579Z copying torch\include\fbgemm\SimdUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3330815Z copying torch\include\fbgemm\spmmUtils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3377119Z copying torch\include\fbgemm\spmmUtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3384856Z copying torch\include\fbgemm\Types.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3391509Z copying torch\include\fbgemm\Utils.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3397812Z copying torch\include\fbgemm\UtilsAvx2.h -> build\lib.win-amd64-cpython-39\torch\include\fbgemm 2025-07-17T08:09:51.3410557Z creating build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3413271Z copying torch\include\fmt\args.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3420475Z copying torch\include\fmt\base.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3428069Z copying torch\include\fmt\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3435164Z copying torch\include\fmt\color.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3442325Z copying torch\include\fmt\compile.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3448688Z copying torch\include\fmt\core.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3455155Z copying torch\include\fmt\format-inl.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3512947Z copying torch\include\fmt\format.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3521095Z copying torch\include\fmt\os.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3527656Z copying torch\include\fmt\ostream.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3534155Z copying torch\include\fmt\printf.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3540819Z copying torch\include\fmt\ranges.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3547288Z copying torch\include\fmt\std.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3553919Z copying torch\include\fmt\xchar.h -> build\lib.win-amd64-cpython-39\torch\include\fmt 2025-07-17T08:09:51.3559528Z creating build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-17T08:09:51.3562304Z copying torch\include\fp16\bitcasts.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-17T08:09:51.3583807Z copying torch\include\fp16\fp16.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-17T08:09:51.3591285Z copying torch\include\fp16\psimd.h -> build\lib.win-amd64-cpython-39\torch\include\fp16 2025-07-17T08:09:51.3597227Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3601459Z copying torch\include\google\protobuf\any.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3608787Z copying torch\include\google\protobuf\any.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3616118Z copying torch\include\google\protobuf\api.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3631759Z copying torch\include\google\protobuf\arena.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3638804Z copying torch\include\google\protobuf\arenastring.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3650547Z copying torch\include\google\protobuf\arena_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3657289Z copying torch\include\google\protobuf\descriptor.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3665912Z copying torch\include\google\protobuf\descriptor.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3677515Z copying torch\include\google\protobuf\descriptor_database.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3684000Z copying torch\include\google\protobuf\duration.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3690428Z copying torch\include\google\protobuf\dynamic_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3697079Z copying torch\include\google\protobuf\empty.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3703742Z copying torch\include\google\protobuf\extension_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3711018Z copying torch\include\google\protobuf\extension_set_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3717566Z copying torch\include\google\protobuf\field_mask.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3724226Z copying torch\include\google\protobuf\generated_enum_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3730980Z copying torch\include\google\protobuf\generated_enum_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3737646Z copying torch\include\google\protobuf\generated_message_reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3744277Z copying torch\include\google\protobuf\generated_message_table_driven.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3750949Z copying torch\include\google\protobuf\generated_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3762872Z copying torch\include\google\protobuf\has_bits.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3771123Z copying torch\include\google\protobuf\implicit_weak_message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3777046Z copying torch\include\google\protobuf\inlined_string_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3783379Z copying torch\include\google\protobuf\map.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3790316Z copying torch\include\google\protobuf\map_entry.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3796809Z copying torch\include\google\protobuf\map_entry_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3803858Z copying torch\include\google\protobuf\map_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3811485Z copying torch\include\google\protobuf\map_field_inl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3817949Z copying torch\include\google\protobuf\map_field_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3824395Z copying torch\include\google\protobuf\map_type_handler.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3836838Z copying torch\include\google\protobuf\message.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3844027Z copying torch\include\google\protobuf\message_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3851818Z copying torch\include\google\protobuf\metadata.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3857902Z copying torch\include\google\protobuf\metadata_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3864514Z copying torch\include\google\protobuf\parse_context.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3871988Z copying torch\include\google\protobuf\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3878297Z copying torch\include\google\protobuf\reflection.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3892417Z copying torch\include\google\protobuf\reflection_ops.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3899102Z copying torch\include\google\protobuf\repeated_field.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3906777Z copying torch\include\google\protobuf\service.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3913306Z copying torch\include\google\protobuf\source_context.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3919899Z copying torch\include\google\protobuf\struct.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3931086Z copying torch\include\google\protobuf\text_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3938053Z copying torch\include\google\protobuf\timestamp.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3944364Z copying torch\include\google\protobuf\type.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3967312Z copying torch\include\google\protobuf\unknown_field_set.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3973855Z copying torch\include\google\protobuf\wire_format.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3980684Z copying torch\include\google\protobuf\wire_format_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3988325Z copying torch\include\google\protobuf\wrappers.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf 2025-07-17T08:09:51.3994976Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-17T08:09:51.3997946Z copying torch\include\google\protobuf\compiler\code_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-17T08:09:51.4004276Z copying torch\include\google\protobuf\compiler\command_line_interface.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-17T08:09:51.4011026Z copying torch\include\google\protobuf\compiler\importer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-17T08:09:51.4046916Z copying torch\include\google\protobuf\compiler\parser.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-17T08:09:51.4053752Z copying torch\include\google\protobuf\compiler\plugin.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-17T08:09:51.4064280Z copying torch\include\google\protobuf\compiler\plugin.pb.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler 2025-07-17T08:09:51.4070962Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-07-17T08:09:51.4074516Z copying torch\include\google\protobuf\compiler\cpp\cpp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\cpp 2025-07-17T08:09:51.4080053Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-17T08:09:51.4083082Z copying torch\include\google\protobuf\compiler\csharp\csharp_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-17T08:09:51.4090508Z copying torch\include\google\protobuf\compiler\csharp\csharp_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\csharp 2025-07-17T08:09:51.4096027Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-17T08:09:51.4098369Z copying torch\include\google\protobuf\compiler\java\java_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-17T08:09:51.4104747Z copying torch\include\google\protobuf\compiler\java\java_names.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\java 2025-07-17T08:09:51.4110234Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-17T08:09:51.4113621Z copying torch\include\google\protobuf\compiler\js\js_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\js 2025-07-17T08:09:51.4126508Z 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-07-17T08:09:51.4132051Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-17T08:09:51.4136182Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-17T08:09:51.4142319Z copying torch\include\google\protobuf\compiler\objectivec\objectivec_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\objectivec 2025-07-17T08:09:51.4147073Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-07-17T08:09:51.4150240Z copying torch\include\google\protobuf\compiler\php\php_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\php 2025-07-17T08:09:51.4155867Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-07-17T08:09:51.4159047Z copying torch\include\google\protobuf\compiler\python\python_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\python 2025-07-17T08:09:51.4164544Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-07-17T08:09:51.4167549Z copying torch\include\google\protobuf\compiler\ruby\ruby_generator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\compiler\ruby 2025-07-17T08:09:51.4173035Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4176007Z copying torch\include\google\protobuf\io\coded_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4183461Z copying torch\include\google\protobuf\io\gzip_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4189838Z copying torch\include\google\protobuf\io\io_win32.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4196044Z copying torch\include\google\protobuf\io\printer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4202428Z copying torch\include\google\protobuf\io\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4213064Z copying torch\include\google\protobuf\io\tokenizer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4219978Z copying torch\include\google\protobuf\io\zero_copy_stream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4226602Z copying torch\include\google\protobuf\io\zero_copy_stream_impl.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4233270Z copying torch\include\google\protobuf\io\zero_copy_stream_impl_lite.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\io 2025-07-17T08:09:51.4239298Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4242235Z copying torch\include\google\protobuf\stubs\bytestream.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4248559Z copying torch\include\google\protobuf\stubs\callback.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4255356Z copying torch\include\google\protobuf\stubs\casts.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4261544Z copying torch\include\google\protobuf\stubs\common.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4267930Z copying torch\include\google\protobuf\stubs\fastmem.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4274219Z copying torch\include\google\protobuf\stubs\hash.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4285266Z copying torch\include\google\protobuf\stubs\logging.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4291493Z copying torch\include\google\protobuf\stubs\macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4297817Z copying torch\include\google\protobuf\stubs\map_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4305511Z copying torch\include\google\protobuf\stubs\mutex.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4312268Z copying torch\include\google\protobuf\stubs\once.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4319223Z copying torch\include\google\protobuf\stubs\platform_macros.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4325595Z copying torch\include\google\protobuf\stubs\port.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4332093Z copying torch\include\google\protobuf\stubs\status.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4338280Z copying torch\include\google\protobuf\stubs\stl_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4344964Z copying torch\include\google\protobuf\stubs\stringpiece.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4351685Z copying torch\include\google\protobuf\stubs\strutil.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4359300Z copying torch\include\google\protobuf\stubs\template_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\stubs 2025-07-17T08:09:51.4364948Z creating build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4367905Z copying torch\include\google\protobuf\util\delimited_message_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4374266Z copying torch\include\google\protobuf\util\field_comparator.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4380597Z copying torch\include\google\protobuf\util\field_mask_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4391750Z copying torch\include\google\protobuf\util\json_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4398182Z copying torch\include\google\protobuf\util\message_differencer.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4405067Z copying torch\include\google\protobuf\util\time_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4411532Z copying torch\include\google\protobuf\util\type_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4418128Z copying torch\include\google\protobuf\util\type_resolver_util.h -> build\lib.win-amd64-cpython-39\torch\include\google\protobuf\util 2025-07-17T08:09:51.4423556Z creating build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4426396Z copying torch\include\kineto\AbstractConfig.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4432631Z copying torch\include\kineto\ActivityProfilerInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4438847Z copying torch\include\kineto\ActivityTraceInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4449894Z copying torch\include\kineto\ActivityType.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4456258Z copying torch\include\kineto\ClientInterface.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4466917Z copying torch\include\kineto\Config.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4473207Z copying torch\include\kineto\GenericTraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4479692Z copying torch\include\kineto\IActivityProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4485981Z copying torch\include\kineto\ILoggerObserver.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4492268Z copying torch\include\kineto\ITraceActivity.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4498508Z copying torch\include\kineto\libkineto.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4504778Z copying torch\include\kineto\LoggingAPI.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4510800Z copying torch\include\kineto\output_base.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4517059Z copying torch\include\kineto\ThreadUtil.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4523423Z copying torch\include\kineto\time_since_epoch.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4534837Z copying torch\include\kineto\TraceSpan.h -> build\lib.win-amd64-cpython-39\torch\include\kineto 2025-07-17T08:09:51.4540396Z creating build\lib.win-amd64-cpython-39\torch\include\legacy 2025-07-17T08:09:51.4567548Z copying torch\include\legacy\ittnotify.h -> build\lib.win-amd64-cpython-39\torch\include\legacy 2025-07-17T08:09:51.4568304Z creating build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-17T08:09:51.4568991Z copying torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-17T08:09:51.4569843Z copying torch\include\mimalloc-2.2\mimalloc-override.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-17T08:09:51.4570673Z copying torch\include\mimalloc-2.2\mimalloc-stats.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-17T08:09:51.4575798Z copying torch\include\mimalloc-2.2\mimalloc.h -> build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2 2025-07-17T08:09:51.4581836Z creating build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4585722Z copying torch\include\oneapi\dnnl\dnnl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4593952Z copying torch\include\oneapi\dnnl\dnnl_common.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4600625Z copying torch\include\oneapi\dnnl\dnnl_common_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4606840Z copying torch\include\oneapi\dnnl\dnnl_config.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4618737Z copying torch\include\oneapi\dnnl\dnnl_debug.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4625056Z copying torch\include\oneapi\dnnl\dnnl_graph.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4632572Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4639397Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4645742Z copying torch\include\oneapi\dnnl\dnnl_graph_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4652931Z copying torch\include\oneapi\dnnl\dnnl_ocl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4659380Z copying torch\include\oneapi\dnnl\dnnl_ocl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4666014Z copying torch\include\oneapi\dnnl\dnnl_sycl.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4672601Z copying torch\include\oneapi\dnnl\dnnl_sycl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4679376Z copying torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4685793Z copying torch\include\oneapi\dnnl\dnnl_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4693822Z copying torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4701490Z copying torch\include\oneapi\dnnl\dnnl_ukernel_types.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4708095Z copying torch\include\oneapi\dnnl\dnnl_version.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4714651Z copying torch\include\oneapi\dnnl\dnnl_version_hash.h -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:51.4720503Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4723340Z copying torch\include\pybind11\attr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4730077Z copying torch\include\pybind11\buffer_info.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4736761Z copying torch\include\pybind11\cast.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4744070Z copying torch\include\pybind11\chrono.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4750528Z copying torch\include\pybind11\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4757107Z copying torch\include\pybind11\complex.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4768369Z copying torch\include\pybind11\eigen.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4774163Z copying torch\include\pybind11\embed.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4780078Z copying torch\include\pybind11\eval.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4786415Z copying torch\include\pybind11\functional.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4792940Z copying torch\include\pybind11\gil.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4799508Z copying torch\include\pybind11\gil_safe_call_once.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4810777Z copying torch\include\pybind11\iostream.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4817113Z copying torch\include\pybind11\numpy.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4824422Z copying torch\include\pybind11\operators.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4831745Z copying torch\include\pybind11\options.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4837546Z copying torch\include\pybind11\pybind11.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4845097Z copying torch\include\pybind11\pytypes.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4852519Z copying torch\include\pybind11\stl.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4858863Z copying torch\include\pybind11\stl_bind.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4866613Z copying torch\include\pybind11\type_caster_pyobject_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4894456Z copying torch\include\pybind11\typing.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11 2025-07-17T08:09:51.4894673Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4895009Z copying torch\include\pybind11\detail\class.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4895471Z copying torch\include\pybind11\detail\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4902394Z copying torch\include\pybind11\detail\cpp_conduit.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4908662Z copying torch\include\pybind11\detail\descr.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4915203Z copying torch\include\pybind11\detail\exception_translation.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4930596Z copying torch\include\pybind11\detail\init.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4937680Z copying torch\include\pybind11\detail\internals.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4945939Z copying torch\include\pybind11\detail\typeid.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4951716Z copying torch\include\pybind11\detail\type_caster_base.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4958977Z copying torch\include\pybind11\detail\value_and_holder.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\detail 2025-07-17T08:09:51.4964614Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-17T08:09:51.4967418Z copying torch\include\pybind11\eigen\common.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-17T08:09:51.4973501Z copying torch\include\pybind11\eigen\matrix.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-17T08:09:51.4980343Z copying torch\include\pybind11\eigen\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen 2025-07-17T08:09:51.4986092Z creating build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-07-17T08:09:51.4988960Z copying torch\include\pybind11\stl\filesystem.h -> build\lib.win-amd64-cpython-39\torch\include\pybind11\stl 2025-07-17T08:09:51.4994450Z creating build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-17T08:09:51.4997266Z copying torch\include\torch\custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-17T08:09:51.5012122Z copying torch\include\torch\custom_class_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-17T08:09:51.5018295Z copying torch\include\torch\extension.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-17T08:09:51.5024303Z copying torch\include\torch\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-17T08:09:51.5035701Z copying torch\include\torch\script.h -> build\lib.win-amd64-cpython-39\torch\include\torch 2025-07-17T08:09:51.5040775Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5043594Z copying torch\include\torch\csrc\copy_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5049819Z copying torch\include\torch\csrc\CudaIPCTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5056178Z copying torch\include\torch\csrc\DataLoader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5062094Z copying torch\include\torch\csrc\Device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5077705Z copying torch\include\torch\csrc\DeviceAccelerator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5083818Z copying torch\include\torch\csrc\Dtype.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5090205Z copying torch\include\torch\csrc\DynamicTypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5096476Z copying torch\include\torch\csrc\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5102428Z copying torch\include\torch\csrc\Exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5108848Z copying torch\include\torch\csrc\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5114658Z copying torch\include\torch\csrc\Generator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5120903Z copying torch\include\torch\csrc\itt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5126854Z copying torch\include\torch\csrc\itt_wrapper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5134240Z copying torch\include\torch\csrc\Layout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5139998Z copying torch\include\torch\csrc\MemoryFormat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5145919Z copying torch\include\torch\csrc\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5152030Z copying torch\include\torch\csrc\PyInterpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5158309Z copying torch\include\torch\csrc\python_dimname.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5164506Z copying torch\include\torch\csrc\python_headers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5170844Z copying torch\include\torch\csrc\QScheme.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5229817Z copying torch\include\torch\csrc\serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5236030Z copying torch\include\torch\csrc\Size.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5242075Z copying torch\include\torch\csrc\Storage.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5248492Z copying torch\include\torch\csrc\StorageMethods.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5260614Z copying torch\include\torch\csrc\StorageSharing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5267766Z copying torch\include\torch\csrc\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5273804Z copying torch\include\torch\csrc\THConcat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5279507Z copying torch\include\torch\csrc\THP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5285917Z copying torch\include\torch\csrc\TypeInfo.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5291901Z copying torch\include\torch\csrc\Types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5297932Z copying torch\include\torch\csrc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc 2025-07-17T08:09:51.5303770Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5309005Z copying torch\include\torch\csrc\api\include\torch\all.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5315127Z copying torch\include\torch\csrc\api\include\torch\arg.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5321696Z copying torch\include\torch\csrc\api\include\torch\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5327844Z copying torch\include\torch\csrc\api\include\torch\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5334137Z copying torch\include\torch\csrc\api\include\torch\data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5340716Z copying torch\include\torch\csrc\api\include\torch\enum.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5348278Z 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-07-17T08:09:51.5358373Z copying torch\include\torch\csrc\api\include\torch\fft.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5365794Z copying torch\include\torch\csrc\api\include\torch\imethod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5371660Z copying torch\include\torch\csrc\api\include\torch\jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5377794Z copying torch\include\torch\csrc\api\include\torch\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5397020Z copying torch\include\torch\csrc\api\include\torch\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5397439Z copying torch\include\torch\csrc\api\include\torch\nn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5398171Z copying torch\include\torch\csrc\api\include\torch\optim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5404745Z 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-07-17T08:09:51.5411669Z copying torch\include\torch\csrc\api\include\torch\python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5418094Z copying torch\include\torch\csrc\api\include\torch\serialize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5425105Z copying torch\include\torch\csrc\api\include\torch\sparse.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5432420Z copying torch\include\torch\csrc\api\include\torch\special.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5438352Z copying torch\include\torch\csrc\api\include\torch\torch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5444408Z copying torch\include\torch\csrc\api\include\torch\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5450805Z copying torch\include\torch\csrc\api\include\torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5457461Z copying torch\include\torch\csrc\api\include\torch\version.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5463617Z copying torch\include\torch\csrc\api\include\torch\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch 2025-07-17T08:09:51.5468815Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data 2025-07-17T08:09:51.5471843Z 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-07-17T08:09:51.5479288Z 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-07-17T08:09:51.5484753Z 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-07-17T08:09:51.5490707Z 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-07-17T08:09:51.5497448Z 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-07-17T08:09:51.5512596Z 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-07-17T08:09:51.5518704Z 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-07-17T08:09:51.5524785Z 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-07-17T08:09:51.5530549Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-17T08:09:51.5533780Z 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-07-17T08:09:51.5540068Z 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-07-17T08:09:51.5546303Z 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-07-17T08:09:51.5551798Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-17T08:09:51.5554805Z 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-07-17T08:09:51.5561085Z 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-07-17T08:09:51.5567721Z 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-07-17T08:09:51.5574129Z 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-07-17T08:09:51.5580351Z 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-07-17T08:09:51.5586689Z 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-07-17T08:09:51.5593467Z 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-07-17T08:09:51.5604180Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-17T08:09:51.5607188Z 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-07-17T08:09:51.5614113Z 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-07-17T08:09:51.5625601Z 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-07-17T08:09:51.5631096Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-17T08:09:51.5634133Z 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-07-17T08:09:51.5640545Z 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-07-17T08:09:51.5646665Z 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-07-17T08:09:51.5653167Z 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-07-17T08:09:51.5659421Z 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-07-17T08:09:51.5671277Z 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-07-17T08:09:51.5677586Z 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-07-17T08:09:51.5682935Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-17T08:09:51.5686945Z 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-07-17T08:09:51.5697031Z 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-07-17T08:09:51.5703324Z 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-07-17T08:09:51.5730934Z 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-07-17T08:09:51.5737317Z 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-07-17T08:09:51.5742582Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\detail 2025-07-17T08:09:51.5745559Z 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-07-17T08:09:51.5751962Z 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-07-17T08:09:51.5757652Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn 2025-07-17T08:09:51.5760858Z 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-07-17T08:09:51.5767039Z 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-07-17T08:09:51.5773783Z 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-07-17T08:09:51.5780032Z 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-07-17T08:09:51.5792618Z 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-07-17T08:09:51.5805109Z 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-07-17T08:09:51.5811175Z 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-07-17T08:09:51.5817665Z 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-07-17T08:09:51.5823906Z 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-07-17T08:09:51.5829309Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-17T08:09:51.5832430Z 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-07-17T08:09:51.5839317Z 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-07-17T08:09:51.5845559Z 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-07-17T08:09:51.5851907Z 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-07-17T08:09:51.5862841Z 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-07-17T08:09:51.5869704Z 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-07-17T08:09:51.5876150Z 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-07-17T08:09:51.5882527Z 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-07-17T08:09:51.5889850Z 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-07-17T08:09:51.5895488Z 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-07-17T08:09:51.5903903Z 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-07-17T08:09:51.5911140Z 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-07-17T08:09:51.5918270Z 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-07-17T08:09:51.5926700Z 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-07-17T08:09:51.5934160Z 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-07-17T08:09:51.5941733Z 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-07-17T08:09:51.5947561Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-17T08:09:51.5949448Z 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-07-17T08:09:51.5956666Z 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-07-17T08:09:51.5963445Z 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-07-17T08:09:51.5971014Z 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-07-17T08:09:51.5976726Z 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-07-17T08:09:51.5990151Z 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-07-17T08:09:51.6002229Z 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-07-17T08:09:51.6008802Z 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-07-17T08:09:51.6015184Z 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-07-17T08:09:51.6021656Z 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-07-17T08:09:51.6027959Z 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-07-17T08:09:51.6034454Z 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-07-17T08:09:51.6041348Z 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-07-17T08:09:51.6047912Z 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-07-17T08:09:51.6054437Z 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-07-17T08:09:51.6060750Z 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-07-17T08:09:51.6067539Z 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-07-17T08:09:51.6074575Z 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-07-17T08:09:51.6080650Z 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-07-17T08:09:51.6087190Z 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-07-17T08:09:51.6093686Z 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-07-17T08:09:51.6100062Z 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-07-17T08:09:51.6107008Z 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-07-17T08:09:51.6112823Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-17T08:09:51.6116028Z 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-07-17T08:09:51.6122541Z 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-07-17T08:09:51.6128838Z 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-07-17T08:09:51.6135463Z 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-07-17T08:09:51.6147753Z 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-07-17T08:09:51.6154265Z 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-07-17T08:09:51.6160705Z 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-07-17T08:09:51.6167313Z 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-07-17T08:09:51.6175177Z 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-07-17T08:09:51.6181252Z 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-07-17T08:09:51.6186763Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-17T08:09:51.6189480Z 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-07-17T08:09:51.6196364Z 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-07-17T08:09:51.6203796Z 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-07-17T08:09:51.6210046Z 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-07-17T08:09:51.6216152Z 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-07-17T08:09:51.6261043Z 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-07-17T08:09:51.6267400Z 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-07-17T08:09:51.6273193Z 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-07-17T08:09:51.6279764Z 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-07-17T08:09:51.6286285Z 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-07-17T08:09:51.6292735Z 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-07-17T08:09:51.6299687Z 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-07-17T08:09:51.6306177Z 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-07-17T08:09:51.6313598Z 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-07-17T08:09:51.6319789Z 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-07-17T08:09:51.6326589Z 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-07-17T08:09:51.6338254Z 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-07-17T08:09:51.6344808Z 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-07-17T08:09:51.6351670Z 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-07-17T08:09:51.6359295Z 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-07-17T08:09:51.6365553Z 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-07-17T08:09:51.6371086Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-17T08:09:51.6373826Z 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-07-17T08:09:51.6379384Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-17T08:09:51.6382896Z 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-07-17T08:09:51.6390163Z 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-07-17T08:09:51.6397157Z 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-07-17T08:09:51.6402761Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim 2025-07-17T08:09:51.6405768Z 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-07-17T08:09:51.6413859Z 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-07-17T08:09:51.6419929Z 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-07-17T08:09:51.6425346Z 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-07-17T08:09:51.6431991Z 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-07-17T08:09:51.6438322Z 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-07-17T08:09:51.6449942Z 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-07-17T08:09:51.6456278Z 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-07-17T08:09:51.6461781Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-17T08:09:51.6464948Z 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-07-17T08:09:51.6471457Z 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-07-17T08:09:51.6478200Z 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-07-17T08:09:51.6487875Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\python 2025-07-17T08:09:51.6490853Z 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-07-17T08:09:51.6496030Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\api\include\torch\serialize 2025-07-17T08:09:51.6499343Z 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-07-17T08:09:51.6505785Z 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-07-17T08:09:51.6512198Z 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-07-17T08:09:51.6518517Z 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-07-17T08:09:51.6528207Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6531116Z copying torch\include\torch\csrc\autograd\anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6538847Z copying torch\include\torch\csrc\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6544725Z copying torch\include\torch\csrc\autograd\autograd_not_implemented_fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6550913Z copying torch\include\torch\csrc\autograd\cpp_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6561864Z copying torch\include\torch\csrc\autograd\custom_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6568582Z copying torch\include\torch\csrc\autograd\edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6574820Z copying torch\include\torch\csrc\autograd\engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6581160Z copying torch\include\torch\csrc\autograd\forward_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6587499Z copying torch\include\torch\csrc\autograd\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6594823Z copying torch\include\torch\csrc\autograd\FunctionsManual.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6601801Z copying torch\include\torch\csrc\autograd\function_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6608415Z copying torch\include\torch\csrc\autograd\grad_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6614596Z copying torch\include\torch\csrc\autograd\graph_task.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6621060Z copying torch\include\torch\csrc\autograd\InferenceMode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6627150Z copying torch\include\torch\csrc\autograd\input_buffer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6644186Z copying torch\include\torch\csrc\autograd\input_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6650844Z copying torch\include\torch\csrc\autograd\jit_decomp_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6657724Z copying torch\include\torch\csrc\autograd\profiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6663958Z copying torch\include\torch\csrc\autograd\profiler_kineto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6671018Z copying torch\include\torch\csrc\autograd\profiler_legacy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6678191Z copying torch\include\torch\csrc\autograd\profiler_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6684936Z copying torch\include\torch\csrc\autograd\python_anomaly_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6696524Z copying torch\include\torch\csrc\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6702650Z copying torch\include\torch\csrc\autograd\python_cpp_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6709275Z copying torch\include\torch\csrc\autograd\python_engine.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6717209Z copying torch\include\torch\csrc\autograd\python_enum_tag.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6722300Z copying torch\include\torch\csrc\autograd\python_fft_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6728793Z copying torch\include\torch\csrc\autograd\python_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6735421Z copying torch\include\torch\csrc\autograd\python_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6741926Z copying torch\include\torch\csrc\autograd\python_legacy_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6749110Z copying torch\include\torch\csrc\autograd\python_linalg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6764277Z copying torch\include\torch\csrc\autograd\python_nested_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6770420Z copying torch\include\torch\csrc\autograd\python_nn_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6777033Z copying torch\include\torch\csrc\autograd\python_saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6783405Z copying torch\include\torch\csrc\autograd\python_sparse_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6789604Z copying torch\include\torch\csrc\autograd\python_special_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6796335Z copying torch\include\torch\csrc\autograd\python_torch_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6802668Z copying torch\include\torch\csrc\autograd\python_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6809200Z copying torch\include\torch\csrc\autograd\python_variable_indexing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6815754Z copying torch\include\torch\csrc\autograd\record_function_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6822229Z copying torch\include\torch\csrc\autograd\saved_variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6828727Z copying torch\include\torch\csrc\autograd\saved_variable_hooks.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6839591Z copying torch\include\torch\csrc\autograd\symbolic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6845622Z copying torch\include\torch\csrc\autograd\variable.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6852958Z copying torch\include\torch\csrc\autograd\VariableTypeUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6859518Z copying torch\include\torch\csrc\autograd\variable_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd 2025-07-17T08:09:51.6864965Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-17T08:09:51.6868011Z copying torch\include\torch\csrc\autograd\functions\accumulate_grad.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-17T08:09:51.6874346Z copying torch\include\torch\csrc\autograd\functions\basic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-17T08:09:51.6880564Z copying torch\include\torch\csrc\autograd\functions\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-17T08:09:51.6886731Z copying torch\include\torch\csrc\autograd\functions\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-17T08:09:51.6898005Z copying torch\include\torch\csrc\autograd\functions\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-17T08:09:51.6904252Z copying torch\include\torch\csrc\autograd\functions\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\functions 2025-07-17T08:09:51.6909542Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-17T08:09:51.6912793Z copying torch\include\torch\csrc\autograd\generated\Functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-17T08:09:51.6924015Z copying torch\include\torch\csrc\autograd\generated\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-17T08:09:51.6930244Z copying torch\include\torch\csrc\autograd\generated\python_return_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-17T08:09:51.6942651Z copying torch\include\torch\csrc\autograd\generated\VariableType.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-17T08:09:51.6949031Z copying torch\include\torch\csrc\autograd\generated\variable_factories.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-17T08:09:51.6957128Z copying torch\include\torch\csrc\autograd\generated\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\generated 2025-07-17T08:09:51.6963277Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-17T08:09:51.7004367Z copying torch\include\torch\csrc\autograd\utils\error_messages.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-17T08:09:51.7005499Z copying torch\include\torch\csrc\autograd\utils\grad_layout_contract.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-17T08:09:51.7006518Z copying torch\include\torch\csrc\autograd\utils\lambda_post_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-17T08:09:51.7007534Z copying torch\include\torch\csrc\autograd\utils\python_arg_parsing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-17T08:09:51.7009930Z copying torch\include\torch\csrc\autograd\utils\warnings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-17T08:09:51.7010991Z copying torch\include\torch\csrc\autograd\utils\wrap_outputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\autograd\utils 2025-07-17T08:09:51.7012221Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-07-17T08:09:51.7016386Z copying torch\include\torch\csrc\cpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cpu 2025-07-17T08:09:51.7020424Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7023458Z copying torch\include\torch\csrc\cuda\comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7029955Z copying torch\include\torch\csrc\cuda\CUDAPluggableAllocator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7036111Z copying torch\include\torch\csrc\cuda\device_set.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7042016Z copying torch\include\torch\csrc\cuda\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7048334Z copying torch\include\torch\csrc\cuda\GdsFile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7059810Z copying torch\include\torch\csrc\cuda\memory_snapshot.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7065782Z copying torch\include\torch\csrc\cuda\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7076067Z copying torch\include\torch\csrc\cuda\nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7082240Z copying torch\include\torch\csrc\cuda\python_comm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7088294Z copying torch\include\torch\csrc\cuda\python_nccl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7094963Z copying torch\include\torch\csrc\cuda\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7100692Z copying torch\include\torch\csrc\cuda\THCP.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7106560Z copying torch\include\torch\csrc\cuda\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda 2025-07-17T08:09:51.7111851Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-17T08:09:51.7116176Z copying torch\include\torch\csrc\distributed\autograd\autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-17T08:09:51.7122474Z copying torch\include\torch\csrc\distributed\autograd\python_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-17T08:09:51.7128400Z copying torch\include\torch\csrc\distributed\autograd\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd 2025-07-17T08:09:51.7134260Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-17T08:09:51.7137317Z copying torch\include\torch\csrc\distributed\autograd\context\container.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-17T08:09:51.7144019Z copying torch\include\torch\csrc\distributed\autograd\context\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\context 2025-07-17T08:09:51.7149137Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\engine 2025-07-17T08:09:51.7152352Z 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-07-17T08:09:51.7157802Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\functions 2025-07-17T08:09:51.7165947Z 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-07-17T08:09:51.7172488Z 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-07-17T08:09:51.7178257Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-17T08:09:51.7181553Z 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-07-17T08:09:51.7188198Z 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-07-17T08:09:51.7194712Z 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-07-17T08:09:51.7205702Z 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-07-17T08:09:51.7216901Z 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-07-17T08:09:51.7228057Z 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-07-17T08:09:51.7234717Z 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-07-17T08:09:51.7242032Z 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-07-17T08:09:51.7248253Z 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-07-17T08:09:51.7256712Z 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-07-17T08:09:51.7261003Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7264092Z copying torch\include\torch\csrc\distributed\c10d\c10d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7270261Z copying torch\include\torch\csrc\distributed\c10d\debug.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7276334Z copying torch\include\torch\csrc\distributed\c10d\error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7282647Z copying torch\include\torch\csrc\distributed\c10d\exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7293674Z copying torch\include\torch\csrc\distributed\c10d\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7300006Z copying torch\include\torch\csrc\distributed\c10d\python_comm_hook.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7310925Z copying torch\include\torch\csrc\distributed\c10d\socket.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7317329Z copying torch\include\torch\csrc\distributed\c10d\socket_fmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7323851Z copying torch\include\torch\csrc\distributed\c10d\TraceUtils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:51.7329496Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-17T08:09:51.7332919Z copying torch\include\torch\csrc\distributed\c10d\quantization\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-17T08:09:51.7339234Z 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-07-17T08:09:51.7345493Z 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-07-17T08:09:51.7381663Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:51.7384867Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:51.7402821Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7403641Z copying torch\include\torch\csrc\distributed\rpc\agent_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7404630Z copying torch\include\torch\csrc\distributed\rpc\message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7409143Z copying torch\include\torch\csrc\distributed\rpc\python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7415258Z copying torch\include\torch\csrc\distributed\rpc\python_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7426927Z copying torch\include\torch\csrc\distributed\rpc\python_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7431840Z copying torch\include\torch\csrc\distributed\rpc\python_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7438543Z copying torch\include\torch\csrc\distributed\rpc\python_rpc_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7444888Z copying torch\include\torch\csrc\distributed\rpc\py_rref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7456206Z copying torch\include\torch\csrc\distributed\rpc\request_callback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7463232Z copying torch\include\torch\csrc\distributed\rpc\request_callback_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7469595Z 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-07-17T08:09:51.7475911Z copying torch\include\torch\csrc\distributed\rpc\rpc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7481880Z copying torch\include\torch\csrc\distributed\rpc\rpc_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7488859Z copying torch\include\torch\csrc\distributed\rpc\rpc_command_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7495257Z copying torch\include\torch\csrc\distributed\rpc\rref_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7501693Z copying torch\include\torch\csrc\distributed\rpc\rref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7523445Z copying torch\include\torch\csrc\distributed\rpc\rref_proto.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7529798Z copying torch\include\torch\csrc\distributed\rpc\script_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7536634Z copying torch\include\torch\csrc\distributed\rpc\script_remote_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7543233Z copying torch\include\torch\csrc\distributed\rpc\script_resp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7554031Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_agent.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7560901Z copying torch\include\torch\csrc\distributed\rpc\tensorpipe_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7567396Z copying torch\include\torch\csrc\distributed\rpc\torchscript_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7573838Z copying torch\include\torch\csrc\distributed\rpc\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7580286Z copying torch\include\torch\csrc\distributed\rpc\unpickled_python_call.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7586794Z 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-07-17T08:09:51.7593340Z copying torch\include\torch\csrc\distributed\rpc\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:09:51.7598977Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-17T08:09:51.7602109Z copying torch\include\torch\csrc\distributed\rpc\metrics\RpcMetricsHandler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-17T08:09:51.7611799Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-17T08:09:51.7614872Z 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-07-17T08:09:51.7621388Z 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-07-17T08:09:51.7626722Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-17T08:09:51.7629817Z 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-07-17T08:09:51.7636205Z copying torch\include\torch\csrc\distributed\rpc\testing\testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\rpc\testing 2025-07-17T08:09:51.7641152Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7647845Z copying torch\include\torch\csrc\dynamo\cache_entry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7651693Z copying torch\include\torch\csrc\dynamo\compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7659512Z copying torch\include\torch\csrc\dynamo\cpp_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7665548Z copying torch\include\torch\csrc\dynamo\cpython_defs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7676778Z copying torch\include\torch\csrc\dynamo\cpython_includes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7682998Z copying torch\include\torch\csrc\dynamo\debug_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7689437Z copying torch\include\torch\csrc\dynamo\eval_frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7696115Z copying torch\include\torch\csrc\dynamo\eval_frame_cpp.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7702463Z copying torch\include\torch\csrc\dynamo\extra_state.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7709369Z copying torch\include\torch\csrc\dynamo\framelocals_mapping.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7717055Z copying torch\include\torch\csrc\dynamo\guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7723073Z copying torch\include\torch\csrc\dynamo\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7728964Z copying torch\include\torch\csrc\dynamo\python_compiled_autograd.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7740390Z copying torch\include\torch\csrc\dynamo\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\dynamo 2025-07-17T08:09:51.7745981Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-17T08:09:51.7748191Z copying torch\include\torch\csrc\export\example_upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-17T08:09:51.7754949Z copying torch\include\torch\csrc\export\pt2_archive_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-17T08:09:51.7761283Z copying torch\include\torch\csrc\export\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-17T08:09:51.7769269Z copying torch\include\torch\csrc\export\upgrader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export 2025-07-17T08:09:51.7774982Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-07-17T08:09:51.7777230Z copying torch\include\torch\csrc\functorch\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\functorch 2025-07-17T08:09:51.7782456Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-07-17T08:09:51.7786267Z copying torch\include\torch\csrc\fx\node.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\fx 2025-07-17T08:09:51.7790597Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-17T08:09:51.7793725Z copying torch\include\torch\csrc\inductor\array_ref_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-17T08:09:51.7800316Z copying torch\include\torch\csrc\inductor\cpp_prefix.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-17T08:09:51.7807367Z copying torch\include\torch\csrc\inductor\inductor_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-17T08:09:51.7815268Z copying torch\include\torch\csrc\inductor\static_cuda_launcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor 2025-07-17T08:09:51.7824523Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_eager 2025-07-17T08:09:51.7827649Z 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-07-17T08:09:51.7834236Z 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-07-17T08:09:51.7839939Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:09:51.7843939Z 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-07-17T08:09:51.7849945Z copying torch\include\torch\csrc\inductor\aoti_include\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:09:51.7855640Z copying torch\include\torch\csrc\inductor\aoti_include\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:09:51.7861483Z copying torch\include\torch\csrc\inductor\aoti_include\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:09:51.7867326Z copying torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:09:51.7878707Z copying torch\include\torch\csrc\inductor\aoti_include\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:09:51.7884218Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-17T08:09:51.7886704Z 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-07-17T08:09:51.7893172Z copying torch\include\torch\csrc\inductor\aoti_package\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_package 2025-07-17T08:09:51.7898882Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-17T08:09:51.7902189Z 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-07-17T08:09:51.7909337Z 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-07-17T08:09:51.7915826Z 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-07-17T08:09:51.7964754Z copying torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-17T08:09:51.7965951Z 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-07-17T08:09:51.7967061Z copying torch\include\torch\csrc\inductor\aoti_runner\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner 2025-07-17T08:09:51.7967893Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-17T08:09:51.7970201Z 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-07-17T08:09:51.7971397Z 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-07-17T08:09:51.7972485Z 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-07-17T08:09:51.7977170Z copying torch\include\torch\csrc\inductor\aoti_runtime\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-17T08:09:51.7983795Z 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-07-17T08:09:51.7990283Z copying torch\include\torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-17T08:09:51.7996317Z copying torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-17T08:09:51.8004084Z 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-07-17T08:09:51.8010843Z 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-07-17T08:09:51.8017587Z 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-07-17T08:09:51.8024789Z 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-07-17T08:09:51.8031186Z copying torch\include\torch\csrc\inductor\aoti_runtime\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-17T08:09:51.8037414Z 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-07-17T08:09:51.8043822Z 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-07-17T08:09:51.8049739Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-17T08:09:51.8053153Z 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-07-17T08:09:51.8059265Z 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-07-17T08:09:51.8071535Z 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-07-17T08:09:51.8081963Z 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-07-17T08:09:51.8088123Z copying torch\include\torch\csrc\inductor\aoti_torch\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch 2025-07-17T08:09:51.8093912Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-17T08:09:51.8096734Z 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-07-17T08:09:51.8103782Z 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-07-17T08:09:51.8110689Z copying torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-17T08:09:51.8116538Z 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-07-17T08:09:51.8121888Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-17T08:09:51.8124933Z 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-07-17T08:09:51.8131785Z 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-07-17T08:09:51.8138946Z copying torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-17T08:09:51.8150071Z 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-07-17T08:09:51.8155473Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:09:51.8158691Z 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-07-17T08:09:51.8164579Z copying torch\include\torch\csrc\inductor\cpp_wrapper\common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:09:51.8170618Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:09:51.8176648Z copying torch\include\torch\csrc\inductor\cpp_wrapper\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:09:51.8182409Z copying torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:09:51.8193123Z copying torch\include\torch\csrc\inductor\cpp_wrapper\xpu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:09:51.8204219Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-17T08:09:51.8206653Z 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-07-17T08:09:51.8212888Z 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-07-17T08:09:51.8219436Z copying torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-17T08:09:51.8225517Z 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-07-17T08:09:51.8230656Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-07-17T08:09:51.8234032Z copying torch\include\torch\csrc\instruction_counter\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\instruction_counter 2025-07-17T08:09:51.8239226Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-17T08:09:51.8241981Z copying torch\include\torch\csrc\jit\jit_log.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-17T08:09:51.8249895Z copying torch\include\torch\csrc\jit\jit_opt_limit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-17T08:09:51.8255967Z copying torch\include\torch\csrc\jit\resource_guard.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit 2025-07-17T08:09:51.8261565Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-17T08:09:51.8263759Z copying torch\include\torch\csrc\jit\api\compilation_unit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-17T08:09:51.8270329Z copying torch\include\torch\csrc\jit\api\function_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-17T08:09:51.8277238Z copying torch\include\torch\csrc\jit\api\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-17T08:09:51.8290168Z copying torch\include\torch\csrc\jit\api\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-17T08:09:51.8297715Z copying torch\include\torch\csrc\jit\api\object.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\api 2025-07-17T08:09:51.8308343Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8315697Z copying torch\include\torch\csrc\jit\backends\backend.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8322043Z copying torch\include\torch\csrc\jit\backends\backend_debug_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8328552Z copying torch\include\torch\csrc\jit\backends\backend_debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8335140Z copying torch\include\torch\csrc\jit\backends\backend_detail.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8346511Z copying torch\include\torch\csrc\jit\backends\backend_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8352923Z copying torch\include\torch\csrc\jit\backends\backend_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8359289Z copying torch\include\torch\csrc\jit\backends\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8366729Z copying torch\include\torch\csrc\jit\backends\backend_preprocess.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8373275Z copying torch\include\torch\csrc\jit\backends\backend_resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends 2025-07-17T08:09:51.8383863Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-17T08:09:51.8387751Z 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-07-17T08:09:51.8393286Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-17T08:09:51.8396416Z 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-07-17T08:09:51.8408652Z 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-07-17T08:09:51.8409886Z 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-07-17T08:09:51.8420505Z 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-07-17T08:09:51.8427096Z 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-07-17T08:09:51.8432752Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-17T08:09:51.8436417Z 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-07-17T08:09:51.8442760Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-17T08:09:51.8447072Z 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-07-17T08:09:51.8451237Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-17T08:09:51.8454566Z 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-07-17T08:09:51.8459895Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-17T08:09:51.8464430Z 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-07-17T08:09:51.8468604Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-07-17T08:09:51.8472653Z copying torch\include\torch\csrc\jit\codegen\cuda\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\cuda 2025-07-17T08:09:51.8478013Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-17T08:09:51.8481133Z 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-07-17T08:09:51.8487455Z copying torch\include\torch\csrc\jit\codegen\fuser\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-17T08:09:51.8493729Z copying torch\include\torch\csrc\jit\codegen\fuser\compiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-17T08:09:51.8499906Z copying torch\include\torch\csrc\jit\codegen\fuser\executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-17T08:09:51.8505830Z copying torch\include\torch\csrc\jit\codegen\fuser\fallback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-17T08:09:51.8511931Z 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-07-17T08:09:51.8553262Z copying torch\include\torch\csrc\jit\codegen\fuser\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser 2025-07-17T08:09:51.8559733Z 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-07-17T08:09:51.8566073Z 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-07-17T08:09:51.8572696Z 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-07-17T08:09:51.8579011Z 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-07-17T08:09:51.8585739Z 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-07-17T08:09:51.8591562Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-17T08:09:51.8594011Z 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-07-17T08:09:51.8600371Z 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-07-17T08:09:51.8606626Z 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-07-17T08:09:51.8612181Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-17T08:09:51.8615206Z 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-07-17T08:09:51.8621905Z 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-07-17T08:09:51.8627731Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-17T08:09:51.8630716Z 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-07-17T08:09:51.8636946Z 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-07-17T08:09:51.8643198Z 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-07-17T08:09:51.8649486Z 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-07-17T08:09:51.8664805Z 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-07-17T08:09:51.8671192Z copying torch\include\torch\csrc\jit\codegen\onednn\interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-17T08:09:51.8678067Z copying torch\include\torch\csrc\jit\codegen\onednn\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-17T08:09:51.8685846Z 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-07-17T08:09:51.8692142Z copying torch\include\torch\csrc\jit\codegen\onednn\LlgaTensorImpl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-17T08:09:51.8703574Z copying torch\include\torch\csrc\jit\codegen\onednn\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\codegen\onednn 2025-07-17T08:09:51.8709448Z 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-07-17T08:09:51.8714924Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-07-17T08:09:51.8717769Z copying torch\include\torch\csrc\jit\cuda\cuda.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\cuda 2025-07-17T08:09:51.8723436Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8726612Z copying torch\include\torch\csrc\jit\frontend\builtin_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8732917Z copying torch\include\torch\csrc\jit\frontend\canonicalize_modified_loop.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8739072Z copying torch\include\torch\csrc\jit\frontend\concrete_module_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8750859Z copying torch\include\torch\csrc\jit\frontend\convert_to_ssa.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8756992Z copying torch\include\torch\csrc\jit\frontend\edit_distance.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8763241Z copying torch\include\torch\csrc\jit\frontend\error_report.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8774999Z copying torch\include\torch\csrc\jit\frontend\exit_transforms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8781506Z copying torch\include\torch\csrc\jit\frontend\function_schema_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8788093Z copying torch\include\torch\csrc\jit\frontend\inline_loop_condition.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8794336Z copying torch\include\torch\csrc\jit\frontend\ir_emitter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8801520Z copying torch\include\torch\csrc\jit\frontend\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8807677Z copying torch\include\torch\csrc\jit\frontend\mini_environment.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8814345Z copying torch\include\torch\csrc\jit\frontend\name_mangler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8820802Z copying torch\include\torch\csrc\jit\frontend\parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8826998Z copying torch\include\torch\csrc\jit\frontend\parser_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8833587Z copying torch\include\torch\csrc\jit\frontend\parse_string_literal.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8844642Z copying torch\include\torch\csrc\jit\frontend\resolver.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8851475Z copying torch\include\torch\csrc\jit\frontend\schema_matching.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8859081Z copying torch\include\torch\csrc\jit\frontend\schema_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8865066Z copying torch\include\torch\csrc\jit\frontend\script_type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8876590Z copying torch\include\torch\csrc\jit\frontend\source_range.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8883132Z copying torch\include\torch\csrc\jit\frontend\source_ref.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8889685Z copying torch\include\torch\csrc\jit\frontend\strtod.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8896038Z copying torch\include\torch\csrc\jit\frontend\sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8903191Z copying torch\include\torch\csrc\jit\frontend\tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8921406Z copying torch\include\torch\csrc\jit\frontend\tree.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8922312Z copying torch\include\torch\csrc\jit\frontend\tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8927539Z copying torch\include\torch\csrc\jit\frontend\versioned_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\frontend 2025-07-17T08:09:51.8933352Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8936229Z copying torch\include\torch\csrc\jit\ir\alias_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8942645Z copying torch\include\torch\csrc\jit\ir\attributes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8949004Z copying torch\include\torch\csrc\jit\ir\constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8956686Z copying torch\include\torch\csrc\jit\ir\graph_node_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8966324Z copying torch\include\torch\csrc\jit\ir\graph_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8972942Z copying torch\include\torch\csrc\jit\ir\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8980443Z copying torch\include\torch\csrc\jit\ir\irparser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8992111Z copying torch\include\torch\csrc\jit\ir\ir_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.8998352Z copying torch\include\torch\csrc\jit\ir\named_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.9004906Z copying torch\include\torch\csrc\jit\ir\node_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.9011080Z copying torch\include\torch\csrc\jit\ir\scope.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.9017476Z copying torch\include\torch\csrc\jit\ir\subgraph_matcher.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.9023797Z copying torch\include\torch\csrc\jit\ir\type_hashing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\ir 2025-07-17T08:09:51.9029267Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9032097Z copying torch\include\torch\csrc\jit\mobile\code.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9038496Z copying torch\include\torch\csrc\jit\mobile\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9044810Z copying torch\include\torch\csrc\jit\mobile\file_format.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9051206Z copying torch\include\torch\csrc\jit\mobile\flatbuffer_loader.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9062473Z copying torch\include\torch\csrc\jit\mobile\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9068705Z copying torch\include\torch\csrc\jit\mobile\function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9074965Z copying torch\include\torch\csrc\jit\mobile\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9081974Z copying torch\include\torch\csrc\jit\mobile\import_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9088664Z copying torch\include\torch\csrc\jit\mobile\import_export_common.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9094509Z copying torch\include\torch\csrc\jit\mobile\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9101123Z copying torch\include\torch\csrc\jit\mobile\method.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9107455Z copying torch\include\torch\csrc\jit\mobile\module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9113756Z copying torch\include\torch\csrc\jit\mobile\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9125831Z copying torch\include\torch\csrc\jit\mobile\parse_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9132445Z copying torch\include\torch\csrc\jit\mobile\parse_operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9139984Z copying torch\include\torch\csrc\jit\mobile\prim_ops_registery.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9146081Z copying torch\include\torch\csrc\jit\mobile\profiler_edge.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9152209Z copying torch\include\torch\csrc\jit\mobile\promoted_prim_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9158719Z copying torch\include\torch\csrc\jit\mobile\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9165750Z 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-07-17T08:09:51.9171947Z copying torch\include\torch\csrc\jit\mobile\type_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9178790Z copying torch\include\torch\csrc\jit\mobile\upgrader_mobile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile 2025-07-17T08:09:51.9189805Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-17T08:09:51.9192866Z copying torch\include\torch\csrc\jit\mobile\compatibility\backport.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-17T08:09:51.9199158Z 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-07-17T08:09:51.9223949Z 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-07-17T08:09:51.9236059Z 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-07-17T08:09:51.9241956Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-17T08:09:51.9245198Z 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-07-17T08:09:51.9252074Z 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-07-17T08:09:51.9258636Z 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-07-17T08:09:51.9269439Z 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-07-17T08:09:51.9276009Z 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-07-17T08:09:51.9287322Z 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-07-17T08:09:51.9294125Z 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-07-17T08:09:51.9300576Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-17T08:09:51.9303667Z 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-07-17T08:09:51.9310173Z copying torch\include\torch\csrc\jit\mobile\nnc\context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-17T08:09:51.9317040Z copying torch\include\torch\csrc\jit\mobile\nnc\registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\nnc 2025-07-17T08:09:51.9322330Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-17T08:09:51.9328977Z 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-07-17T08:09:51.9335825Z copying torch\include\torch\csrc\jit\mobile\train\random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-17T08:09:51.9342811Z copying torch\include\torch\csrc\jit\mobile\train\sequential.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train 2025-07-17T08:09:51.9348699Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-17T08:09:51.9351856Z 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-07-17T08:09:51.9357639Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-17T08:09:51.9360699Z copying torch\include\torch\csrc\jit\operator_upgraders\upgraders.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-17T08:09:51.9367271Z 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-07-17T08:09:51.9373447Z copying torch\include\torch\csrc\jit\operator_upgraders\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\operator_upgraders 2025-07-17T08:09:51.9381248Z 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-07-17T08:09:51.9390376Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9393341Z 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-07-17T08:09:51.9399411Z copying torch\include\torch\csrc\jit\passes\annotate_warns.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9405312Z copying torch\include\torch\csrc\jit\passes\autocast.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9411437Z copying torch\include\torch\csrc\jit\passes\bailout_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9422321Z copying torch\include\torch\csrc\jit\passes\batch_mm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9428662Z copying torch\include\torch\csrc\jit\passes\canonicalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9434734Z 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-07-17T08:09:51.9441069Z copying torch\include\torch\csrc\jit\passes\check_strict_fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9447221Z copying torch\include\torch\csrc\jit\passes\clear_profiling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9453844Z copying torch\include\torch\csrc\jit\passes\clear_undefinedness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9460745Z copying torch\include\torch\csrc\jit\passes\common_subexpression_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9466748Z copying torch\include\torch\csrc\jit\passes\concat_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9473053Z copying torch\include\torch\csrc\jit\passes\constant_pooling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9479274Z copying torch\include\torch\csrc\jit\passes\constant_propagation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9485728Z copying torch\include\torch\csrc\jit\passes\create_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9499302Z copying torch\include\torch\csrc\jit\passes\create_functional_graphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9506258Z copying torch\include\torch\csrc\jit\passes\dead_code_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9512783Z copying torch\include\torch\csrc\jit\passes\decompose_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9519110Z copying torch\include\torch\csrc\jit\passes\device_type_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9529568Z copying torch\include\torch\csrc\jit\passes\dtype_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9535987Z copying torch\include\torch\csrc\jit\passes\eliminate_no_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9542282Z copying torch\include\torch\csrc\jit\passes\erase_number_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9554096Z 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-07-17T08:09:51.9560641Z copying torch\include\torch\csrc\jit\passes\fold_conv_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9567210Z copying torch\include\torch\csrc\jit\passes\fold_linear_bn.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9574497Z copying torch\include\torch\csrc\jit\passes\freeze_module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9580852Z copying torch\include\torch\csrc\jit\passes\frozen_concat_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9586976Z 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-07-17T08:09:51.9598872Z copying torch\include\torch\csrc\jit\passes\frozen_conv_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9605638Z copying torch\include\torch\csrc\jit\passes\frozen_graph_optimizations.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9611826Z copying torch\include\torch\csrc\jit\passes\frozen_linear_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9618313Z copying torch\include\torch\csrc\jit\passes\frozen_linear_transpose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9624607Z 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-07-17T08:09:51.9630802Z copying torch\include\torch\csrc\jit\passes\fuse_linear.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9637171Z copying torch\include\torch\csrc\jit\passes\fuse_relu.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9643413Z copying torch\include\torch\csrc\jit\passes\graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9649920Z copying torch\include\torch\csrc\jit\passes\graph_rewrite_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9661173Z copying torch\include\torch\csrc\jit\passes\guard_elimination.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9667199Z 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-07-17T08:09:51.9674100Z copying torch\include\torch\csrc\jit\passes\inliner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9680280Z copying torch\include\torch\csrc\jit\passes\inline_autodiff_subgraphs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9686449Z copying torch\include\torch\csrc\jit\passes\inline_forked_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9692784Z copying torch\include\torch\csrc\jit\passes\inline_fork_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9698946Z copying torch\include\torch\csrc\jit\passes\inplace_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9705106Z copying torch\include\torch\csrc\jit\passes\insert_guards.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9712769Z copying torch\include\torch\csrc\jit\passes\integer_value_refinement.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9723169Z copying torch\include\torch\csrc\jit\passes\lift_closures.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9729373Z copying torch\include\torch\csrc\jit\passes\liveness.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9735493Z copying torch\include\torch\csrc\jit\passes\loop_unrolling.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9741832Z copying torch\include\torch\csrc\jit\passes\lower_grad_of.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9752522Z copying torch\include\torch\csrc\jit\passes\lower_graph.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9758833Z copying torch\include\torch\csrc\jit\passes\lower_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9765151Z copying torch\include\torch\csrc\jit\passes\metal_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9771302Z copying torch\include\torch\csrc\jit\passes\mkldnn_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9777854Z copying torch\include\torch\csrc\jit\passes\mobile_optimizer_type.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9788790Z copying torch\include\torch\csrc\jit\passes\normalize_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9804379Z copying torch\include\torch\csrc\jit\passes\onednn_graph_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9810983Z copying torch\include\torch\csrc\jit\passes\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9817494Z copying torch\include\torch\csrc\jit\passes\pass_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9824130Z copying torch\include\torch\csrc\jit\passes\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9830375Z copying torch\include\torch\csrc\jit\passes\peephole_alias_sensitive.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9836691Z copying torch\include\torch\csrc\jit\passes\peephole_dict_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9844005Z copying torch\include\torch\csrc\jit\passes\peephole_list_idioms.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9897323Z copying torch\include\torch\csrc\jit\passes\peephole_non_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9903321Z copying torch\include\torch\csrc\jit\passes\prepack_folding.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9941658Z copying torch\include\torch\csrc\jit\passes\refine_tuple_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9942083Z copying torch\include\torch\csrc\jit\passes\remove_dropout.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9942515Z copying torch\include\torch\csrc\jit\passes\remove_exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9942922Z copying torch\include\torch\csrc\jit\passes\remove_expands.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9944766Z copying torch\include\torch\csrc\jit\passes\remove_inplace_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9955871Z copying torch\include\torch\csrc\jit\passes\remove_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9963283Z copying torch\include\torch\csrc\jit\passes\remove_redundant_profiles.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9969571Z 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-07-17T08:09:51.9977112Z copying torch\include\torch\csrc\jit\passes\requires_grad_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9982206Z copying torch\include\torch\csrc\jit\passes\restore_mutation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:51.9993269Z copying torch\include\torch\csrc\jit\passes\shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0004094Z copying torch\include\torch\csrc\jit\passes\specialize_autogradzero.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0010468Z copying torch\include\torch\csrc\jit\passes\subgraph_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0017149Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0023961Z copying torch\include\torch\csrc\jit\passes\symbolic_shape_cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0030603Z 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-07-17T08:09:52.0037030Z copying torch\include\torch\csrc\jit\passes\tensorexpr_fuser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0043747Z 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-07-17T08:09:52.0050355Z copying torch\include\torch\csrc\jit\passes\value_refinement_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0057012Z copying torch\include\torch\csrc\jit\passes\variadic_ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0064397Z copying torch\include\torch\csrc\jit\passes\vulkan_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0070291Z copying torch\include\torch\csrc\jit\passes\xnnpack_rewrite.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes 2025-07-17T08:09:52.0076172Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-17T08:09:52.0079421Z 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-07-17T08:09:52.0084563Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-17T08:09:52.0087730Z 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-07-17T08:09:52.0093916Z 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-07-17T08:09:52.0106998Z 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-07-17T08:09:52.0113412Z 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-07-17T08:09:52.0123969Z 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-07-17T08:09:52.0130201Z 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-07-17T08:09:52.0136631Z 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-07-17T08:09:52.0142788Z 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-07-17T08:09:52.0149419Z 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-07-17T08:09:52.0155624Z copying torch\include\torch\csrc\jit\passes\onnx\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-17T08:09:52.0161946Z 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-07-17T08:09:52.0172569Z copying torch\include\torch\csrc\jit\passes\onnx\naming.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-17T08:09:52.0178786Z 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-07-17T08:09:52.0184799Z copying torch\include\torch\csrc\jit\passes\onnx\peephole.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx 2025-07-17T08:09:52.0190980Z 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-07-17T08:09:52.0197473Z 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-07-17T08:09:52.0208077Z 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-07-17T08:09:52.0214362Z 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-07-17T08:09:52.0221620Z 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-07-17T08:09:52.0227949Z 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-07-17T08:09:52.0238517Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-17T08:09:52.0241688Z 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-07-17T08:09:52.0247955Z 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-07-17T08:09:52.0254171Z 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-07-17T08:09:52.0265446Z 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-07-17T08:09:52.0270930Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-17T08:09:52.0274277Z 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-07-17T08:09:52.0285446Z copying torch\include\torch\csrc\jit\passes\quantization\finalize.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-17T08:09:52.0291904Z 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-07-17T08:09:52.0297811Z copying torch\include\torch\csrc\jit\passes\quantization\helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\quantization 2025-07-17T08:09:52.0308886Z 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-07-17T08:09:52.0320066Z 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-07-17T08:09:52.0326911Z 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-07-17T08:09:52.0334346Z 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-07-17T08:09:52.0340501Z 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-07-17T08:09:52.0345903Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\passes\utils 2025-07-17T08:09:52.0349006Z 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-07-17T08:09:52.0355329Z 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-07-17T08:09:52.0361742Z 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-07-17T08:09:52.0372180Z 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-07-17T08:09:52.0378740Z 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-07-17T08:09:52.0384131Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0387052Z copying torch\include\torch\csrc\jit\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0393198Z copying torch\include\torch\csrc\jit\python\module_python.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0399464Z copying torch\include\torch\csrc\jit\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0405848Z copying torch\include\torch\csrc\jit\python\pybind_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0412971Z copying torch\include\torch\csrc\jit\python\python_arg_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0428133Z copying torch\include\torch\csrc\jit\python\python_custom_class.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0434225Z copying torch\include\torch\csrc\jit\python\python_dict.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0441032Z copying torch\include\torch\csrc\jit\python\python_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0447735Z copying torch\include\torch\csrc\jit\python\python_ivalue.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0454511Z copying torch\include\torch\csrc\jit\python\python_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0461159Z copying torch\include\torch\csrc\jit\python\python_sugared_value.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0468158Z copying torch\include\torch\csrc\jit\python\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0474708Z copying torch\include\torch\csrc\jit\python\python_tree_views.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0480875Z copying torch\include\torch\csrc\jit\python\script_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0487338Z 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-07-17T08:09:52.0493984Z copying torch\include\torch\csrc\jit\python\utf8_decoding_ignore.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\python 2025-07-17T08:09:52.0499678Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0502595Z copying torch\include\torch\csrc\jit\runtime\argument_spec.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0509421Z copying torch\include\torch\csrc\jit\runtime\autodiff.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0516184Z copying torch\include\torch\csrc\jit\runtime\calculate_necessary_args.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0526973Z copying torch\include\torch\csrc\jit\runtime\custom_operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0537868Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0545008Z copying torch\include\torch\csrc\jit\runtime\decomposition_registry_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0550969Z copying torch\include\torch\csrc\jit\runtime\exception_message.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0557273Z copying torch\include\torch\csrc\jit\runtime\graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0563827Z copying torch\include\torch\csrc\jit\runtime\graph_executor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0570586Z copying torch\include\torch\csrc\jit\runtime\graph_iterator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0577388Z copying torch\include\torch\csrc\jit\runtime\instruction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0583640Z copying torch\include\torch\csrc\jit\runtime\interpreter.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0590052Z copying torch\include\torch\csrc\jit\runtime\jit_exception.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0596409Z copying torch\include\torch\csrc\jit\runtime\jit_trace.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0602748Z copying torch\include\torch\csrc\jit\runtime\logging.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0609320Z copying torch\include\torch\csrc\jit\runtime\operator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0615462Z copying torch\include\torch\csrc\jit\runtime\operator_options.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0625729Z copying torch\include\torch\csrc\jit\runtime\print_handler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0631953Z 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-07-17T08:09:52.0638177Z copying torch\include\torch\csrc\jit\runtime\profiling_record.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0648052Z copying torch\include\torch\csrc\jit\runtime\register_ops_utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0655312Z copying torch\include\torch\csrc\jit\runtime\script_profile.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0661720Z 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-07-17T08:09:52.0667841Z copying torch\include\torch\csrc\jit\runtime\shape_function_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0674072Z 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-07-17T08:09:52.0680593Z copying torch\include\torch\csrc\jit\runtime\slice_indices_adjust.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0687137Z copying torch\include\torch\csrc\jit\runtime\symbolic_script.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0693483Z copying torch\include\torch\csrc\jit\runtime\symbolic_shape_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0699921Z 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-07-17T08:09:52.0887665Z copying torch\include\torch\csrc\jit\runtime\vararg_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0894796Z copying torch\include\torch\csrc\jit\runtime\variable_tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime 2025-07-17T08:09:52.0900099Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-17T08:09:52.0903498Z 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-07-17T08:09:52.0910280Z 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-07-17T08:09:52.0917777Z copying torch\include\torch\csrc\jit\runtime\interpreter\frame.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-17T08:09:52.0925061Z 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-07-17T08:09:52.0934843Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:09:52.0937917Z copying torch\include\torch\csrc\jit\runtime\static\fusion.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:09:52.0944186Z copying torch\include\torch\csrc\jit\runtime\static\impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:09:52.0958263Z copying torch\include\torch\csrc\jit\runtime\static\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:09:52.0959328Z 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-07-17T08:09:52.0965853Z copying torch\include\torch\csrc\jit\runtime\static\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:09:52.0972090Z copying torch\include\torch\csrc\jit\runtime\static\passes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:09:52.0983298Z copying torch\include\torch\csrc\jit\runtime\static\ProcessedNodeInputs.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:09:52.0991561Z 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-07-17T08:09:52.0996660Z 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-07-17T08:09:52.1002971Z 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-07-17T08:09:52.1008476Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1011698Z 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-07-17T08:09:52.1017962Z copying torch\include\torch\csrc\jit\serialization\export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1024438Z copying torch\include\torch\csrc\jit\serialization\export_bytecode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1034739Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1041388Z copying torch\include\torch\csrc\jit\serialization\flatbuffer_serializer_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1047496Z copying torch\include\torch\csrc\jit\serialization\import.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1053880Z copying torch\include\torch\csrc\jit\serialization\import_export_constants.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1060273Z copying torch\include\torch\csrc\jit\serialization\import_export_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1066478Z copying torch\include\torch\csrc\jit\serialization\import_export_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1073210Z copying torch\include\torch\csrc\jit\serialization\import_read.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1079927Z copying torch\include\torch\csrc\jit\serialization\import_source.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1086545Z copying torch\include\torch\csrc\jit\serialization\mobile_bytecode_generated.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1094505Z copying torch\include\torch\csrc\jit\serialization\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1100774Z copying torch\include\torch\csrc\jit\serialization\pickle.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1107189Z copying torch\include\torch\csrc\jit\serialization\pickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1113979Z copying torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1120703Z copying torch\include\torch\csrc\jit\serialization\python_print.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1127280Z copying torch\include\torch\csrc\jit\serialization\source_range_serialization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1147414Z 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-07-17T08:09:52.1154313Z copying torch\include\torch\csrc\jit\serialization\storage_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1166749Z copying torch\include\torch\csrc\jit\serialization\type_name_uniquer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1173397Z copying torch\include\torch\csrc\jit\serialization\unpickler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization 2025-07-17T08:09:52.1179168Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1182128Z copying torch\include\torch\csrc\jit\tensorexpr\analysis.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1188490Z copying torch\include\torch\csrc\jit\tensorexpr\block_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1195101Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1201482Z copying torch\include\torch\csrc\jit\tensorexpr\bounds_overlap.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1212887Z copying torch\include\torch\csrc\jit\tensorexpr\codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1219179Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1226255Z copying torch\include\torch\csrc\jit\tensorexpr\cpp_intrinsics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1232683Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1239141Z copying torch\include\torch\csrc\jit\tensorexpr\cuda_random.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1245437Z copying torch\include\torch\csrc\jit\tensorexpr\eval.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1266692Z copying torch\include\torch\csrc\jit\tensorexpr\exceptions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1277361Z copying torch\include\torch\csrc\jit\tensorexpr\expr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1283970Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1290540Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_core.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1296897Z copying torch\include\torch\csrc\jit\tensorexpr\external_functions_registry.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1305568Z copying torch\include\torch\csrc\jit\tensorexpr\fwd_decls.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1316835Z copying torch\include\torch\csrc\jit\tensorexpr\graph_opt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1323063Z copying torch\include\torch\csrc\jit\tensorexpr\half_support.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1329073Z copying torch\include\torch\csrc\jit\tensorexpr\hash_provider.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1335824Z copying torch\include\torch\csrc\jit\tensorexpr\intrinsic_symbols.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1342049Z copying torch\include\torch\csrc\jit\tensorexpr\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1354107Z copying torch\include\torch\csrc\jit\tensorexpr\ir_cloner.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1361355Z copying torch\include\torch\csrc\jit\tensorexpr\ir_mutator.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1369130Z copying torch\include\torch\csrc\jit\tensorexpr\ir_printer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1375325Z copying torch\include\torch\csrc\jit\tensorexpr\ir_simplifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1382137Z copying torch\include\torch\csrc\jit\tensorexpr\ir_verifier.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1388700Z copying torch\include\torch\csrc\jit\tensorexpr\ir_visitor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1395752Z copying torch\include\torch\csrc\jit\tensorexpr\kernel.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1403854Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_codegen.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1409632Z copying torch\include\torch\csrc\jit\tensorexpr\llvm_jit.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1416633Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1460906Z copying torch\include\torch\csrc\jit\tensorexpr\loopnest_randomization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1462019Z copying torch\include\torch\csrc\jit\tensorexpr\lowerings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1463038Z copying torch\include\torch\csrc\jit\tensorexpr\mem_dependency_checker.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1464060Z copying torch\include\torch\csrc\jit\tensorexpr\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1466447Z copying torch\include\torch\csrc\jit\tensorexpr\registerizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1467547Z copying torch\include\torch\csrc\jit\tensorexpr\stmt.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1472997Z copying torch\include\torch\csrc\jit\tensorexpr\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1479508Z copying torch\include\torch\csrc\jit\tensorexpr\tensorexpr_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1485900Z copying torch\include\torch\csrc\jit\tensorexpr\types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1492359Z copying torch\include\torch\csrc\jit\tensorexpr\unique_name_manager.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1499229Z copying torch\include\torch\csrc\jit\tensorexpr\var_substitutor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:09:52.1505301Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1508376Z copying torch\include\torch\csrc\jit\tensorexpr\operators\conv2d.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1515080Z copying torch\include\torch\csrc\jit\tensorexpr\operators\matmul.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1522159Z copying torch\include\torch\csrc\jit\tensorexpr\operators\misc.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1528311Z copying torch\include\torch\csrc\jit\tensorexpr\operators\norm.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1534588Z copying torch\include\torch\csrc\jit\tensorexpr\operators\operators.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1545529Z copying torch\include\torch\csrc\jit\tensorexpr\operators\pointwise.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1552214Z copying torch\include\torch\csrc\jit\tensorexpr\operators\quantization.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1558679Z copying torch\include\torch\csrc\jit\tensorexpr\operators\reduction.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1565798Z copying torch\include\torch\csrc\jit\tensorexpr\operators\softmax.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:09:52.1583396Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-17T08:09:52.1584388Z copying torch\include\torch\csrc\jit\testing\file_check.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-17T08:09:52.1585348Z copying torch\include\torch\csrc\jit\testing\hooks_for_testing.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-17T08:09:52.1586880Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-17T08:09:52.1590788Z copying torch\include\torch\csrc\lazy\backend\backend_data.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-17T08:09:52.1597673Z copying torch\include\torch\csrc\lazy\backend\backend_device.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-17T08:09:52.1603993Z copying torch\include\torch\csrc\lazy\backend\backend_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-17T08:09:52.1610282Z copying torch\include\torch\csrc\lazy\backend\lowering_context.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\backend 2025-07-17T08:09:52.1620507Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1623325Z copying torch\include\torch\csrc\lazy\core\cache.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1630354Z copying torch\include\torch\csrc\lazy\core\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1636357Z copying torch\include\torch\csrc\lazy\core\debug_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1642540Z copying torch\include\torch\csrc\lazy\core\dynamic_ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1649286Z copying torch\include\torch\csrc\lazy\core\hash.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1659766Z copying torch\include\torch\csrc\lazy\core\helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1665985Z copying torch\include\torch\csrc\lazy\core\ir.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1672358Z copying torch\include\torch\csrc\lazy\core\ir_builder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1678756Z copying torch\include\torch\csrc\lazy\core\ir_dump_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1685055Z copying torch\include\torch\csrc\lazy\core\ir_metadata.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1691825Z copying torch\include\torch\csrc\lazy\core\ir_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1698535Z copying torch\include\torch\csrc\lazy\core\lazy_graph_executor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1704890Z copying torch\include\torch\csrc\lazy\core\metrics.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1711676Z copying torch\include\torch\csrc\lazy\core\multi_wait.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1718067Z copying torch\include\torch\csrc\lazy\core\permutation_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1725781Z copying torch\include\torch\csrc\lazy\core\shape.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1730944Z copying torch\include\torch\csrc\lazy\core\shape_inference.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1737497Z copying torch\include\torch\csrc\lazy\core\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1743791Z copying torch\include\torch\csrc\lazy\core\tensor_impl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1750166Z copying torch\include\torch\csrc\lazy\core\tensor_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1756815Z copying torch\include\torch\csrc\lazy\core\thread_pool.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1763536Z copying torch\include\torch\csrc\lazy\core\trie.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1769765Z copying torch\include\torch\csrc\lazy\core\unique.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1776098Z copying torch\include\torch\csrc\lazy\core\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core 2025-07-17T08:09:52.1781552Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-17T08:09:52.1789703Z 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-07-17T08:09:52.1796323Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-17T08:09:52.1799468Z 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-07-17T08:09:52.1805811Z copying torch\include\torch\csrc\lazy\core\ops\utils.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\core\ops 2025-07-17T08:09:52.1811122Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-17T08:09:52.1814144Z copying torch\include\torch\csrc\lazy\generated\LazyIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-17T08:09:52.1823535Z copying torch\include\torch\csrc\lazy\generated\LazyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-17T08:09:52.1830490Z copying torch\include\torch\csrc\lazy\generated\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\generated 2025-07-17T08:09:52.1836188Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-17T08:09:52.1839151Z copying torch\include\torch\csrc\lazy\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-17T08:09:52.1845241Z copying torch\include\torch\csrc\lazy\python\python_util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\python 2025-07-17T08:09:52.1850543Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-17T08:09:52.1859185Z copying torch\include\torch\csrc\lazy\ts_backend\config.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend 2025-07-17T08:09:52.1865572Z 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-07-17T08:09:52.1872839Z 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-07-17T08:09:52.1878877Z 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-07-17T08:09:52.1890213Z 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-07-17T08:09:52.1896858Z 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-07-17T08:09:52.1903349Z 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-07-17T08:09:52.1909821Z 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-07-17T08:09:52.1916849Z 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-07-17T08:09:52.1949221Z 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-07-17T08:09:52.1950028Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-17T08:09:52.1950859Z 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-07-17T08:09:52.1951856Z 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-07-17T08:09:52.1952838Z 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-07-17T08:09:52.1969773Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-17T08:09:52.1973300Z copying torch\include\torch\csrc\monitor\counters.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-17T08:09:52.1979514Z copying torch\include\torch\csrc\monitor\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-17T08:09:52.1986004Z copying torch\include\torch\csrc\monitor\python_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\monitor 2025-07-17T08:09:52.1991001Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-07-17T08:09:52.1993865Z copying torch\include\torch\csrc\mps\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mps 2025-07-17T08:09:52.2000334Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-07-17T08:09:52.2001940Z copying torch\include\torch\csrc\mtia\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia 2025-07-17T08:09:52.2007305Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-07-17T08:09:52.2010356Z copying torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler 2025-07-17T08:09:52.2015663Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-07-17T08:09:52.2018638Z copying torch\include\torch\csrc\multiprocessing\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\multiprocessing 2025-07-17T08:09:52.2023607Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-17T08:09:52.2026504Z copying torch\include\torch\csrc\onnx\back_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-17T08:09:52.2033059Z copying torch\include\torch\csrc\onnx\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-17T08:09:52.2039894Z copying torch\include\torch\csrc\onnx\onnx.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\onnx 2025-07-17T08:09:52.2045261Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2048140Z copying torch\include\torch\csrc\profiler\api.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2054351Z copying torch\include\torch\csrc\profiler\collection.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2061222Z copying torch\include\torch\csrc\profiler\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2067724Z copying torch\include\torch\csrc\profiler\containers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2078166Z copying torch\include\torch\csrc\profiler\data_flow.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2084382Z copying torch\include\torch\csrc\profiler\events.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2090780Z copying torch\include\torch\csrc\profiler\kineto_client_interface.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2097253Z copying torch\include\torch\csrc\profiler\kineto_shim.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2104921Z copying torch\include\torch\csrc\profiler\perf-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2110748Z copying torch\include\torch\csrc\profiler\perf.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2116623Z copying torch\include\torch\csrc\profiler\util.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler 2025-07-17T08:09:52.2122257Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-17T08:09:52.2125191Z copying torch\include\torch\csrc\profiler\orchestration\observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-17T08:09:52.2131971Z copying torch\include\torch\csrc\profiler\orchestration\python_tracer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-17T08:09:52.2139502Z copying torch\include\torch\csrc\profiler\orchestration\vulkan.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\orchestration 2025-07-17T08:09:52.2143792Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-17T08:09:52.2146902Z copying torch\include\torch\csrc\profiler\python\combined_traceback.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-17T08:09:52.2153436Z copying torch\include\torch\csrc\profiler\python\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-17T08:09:52.2159987Z copying torch\include\torch\csrc\profiler\python\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\python 2025-07-17T08:09:52.2165446Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-17T08:09:52.2168726Z copying torch\include\torch\csrc\profiler\standalone\execution_trace_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-17T08:09:52.2175240Z copying torch\include\torch\csrc\profiler\standalone\itt_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-17T08:09:52.2181588Z copying torch\include\torch\csrc\profiler\standalone\nvtx_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-17T08:09:52.2194136Z copying torch\include\torch\csrc\profiler\standalone\privateuse1_observer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\standalone 2025-07-17T08:09:52.2199818Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-07-17T08:09:52.2203143Z copying torch\include\torch\csrc\profiler\stubs\base.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\stubs 2025-07-17T08:09:52.2208710Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2211260Z copying torch\include\torch\csrc\profiler\unwind\action.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2218143Z copying torch\include\torch\csrc\profiler\unwind\communicate.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2225678Z copying torch\include\torch\csrc\profiler\unwind\debug_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2231858Z copying torch\include\torch\csrc\profiler\unwind\dwarf_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2243649Z copying torch\include\torch\csrc\profiler\unwind\dwarf_symbolize_enums.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2250366Z copying torch\include\torch\csrc\profiler\unwind\eh_frame_hdr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2256975Z copying torch\include\torch\csrc\profiler\unwind\fast_symbolizer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2263361Z copying torch\include\torch\csrc\profiler\unwind\fde.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2269716Z copying torch\include\torch\csrc\profiler\unwind\lexer.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2276435Z copying torch\include\torch\csrc\profiler\unwind\line_number_program.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2283825Z copying torch\include\torch\csrc\profiler\unwind\mem_file.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2289792Z copying torch\include\torch\csrc\profiler\unwind\range_table.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2296538Z copying torch\include\torch\csrc\profiler\unwind\sections.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2303093Z copying torch\include\torch\csrc\profiler\unwind\unwind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2309204Z copying torch\include\torch\csrc\profiler\unwind\unwinder.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2315710Z copying torch\include\torch\csrc\profiler\unwind\unwind_error.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:09:52.2321377Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-17T08:09:52.2324390Z copying torch\include\torch\csrc\stable\library.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-17T08:09:52.2330927Z copying torch\include\torch\csrc\stable\ops.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-17T08:09:52.2337070Z copying torch\include\torch\csrc\stable\tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable 2025-07-17T08:09:52.2342522Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-07-17T08:09:52.2346644Z copying torch\include\torch\csrc\tensor\python_tensor.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\tensor 2025-07-17T08:09:52.2352670Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2359417Z copying torch\include\torch\csrc\utils\byte_order.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2366195Z copying torch\include\torch\csrc\utils\cpp_stacktraces.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2373397Z copying torch\include\torch\csrc\utils\cuda_enabled.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2380116Z copying torch\include\torch\csrc\utils\device_lazy_init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2393218Z copying torch\include\torch\csrc\utils\disable_torch_function.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2399679Z copying torch\include\torch\csrc\utils\generated_serialization_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2407883Z copying torch\include\torch\csrc\utils\init.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2414091Z copying torch\include\torch\csrc\utils\invalid_arguments.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2423138Z copying torch\include\torch\csrc\utils\nested.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2427558Z copying torch\include\torch\csrc\utils\numpy_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2435533Z copying torch\include\torch\csrc\utils\object_ptr.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2441830Z copying torch\include\torch\csrc\utils\out_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2447889Z copying torch\include\torch\csrc\utils\pybind.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2453768Z copying torch\include\torch\csrc\utils\pycfunction_helpers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2460390Z copying torch\include\torch\csrc\utils\pyobject_preservation.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2466595Z copying torch\include\torch\csrc\utils\pythoncapi_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2475201Z copying torch\include\torch\csrc\utils\python_arg_parser.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2481978Z copying torch\include\torch\csrc\utils\python_compat.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2488731Z copying torch\include\torch\csrc\utils\python_dispatch.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2495146Z copying torch\include\torch\csrc\utils\python_numbers.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2506321Z copying torch\include\torch\csrc\utils\python_raii.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2512241Z copying torch\include\torch\csrc\utils\python_scalars.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2518745Z copying torch\include\torch\csrc\utils\python_strings.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2525273Z copying torch\include\torch\csrc\utils\python_stub.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2531842Z copying torch\include\torch\csrc\utils\python_symnode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2538479Z copying torch\include\torch\csrc\utils\python_torch_function_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2545066Z copying torch\include\torch\csrc\utils\python_tuples.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2551812Z copying torch\include\torch\csrc\utils\schema_info.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2558361Z copying torch\include\torch\csrc\utils\six.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2564955Z copying torch\include\torch\csrc\utils\structseq.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2577504Z copying torch\include\torch\csrc\utils\tensor_apply.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2582847Z copying torch\include\torch\csrc\utils\tensor_dtypes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2610983Z copying torch\include\torch\csrc\utils\tensor_flatten.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2617532Z copying torch\include\torch\csrc\utils\tensor_layouts.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2624077Z copying torch\include\torch\csrc\utils\tensor_list.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2630626Z copying torch\include\torch\csrc\utils\tensor_memoryformats.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2636816Z copying torch\include\torch\csrc\utils\tensor_new.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2643414Z copying torch\include\torch\csrc\utils\tensor_numpy.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2650139Z copying torch\include\torch\csrc\utils\tensor_qschemes.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2661392Z copying torch\include\torch\csrc\utils\tensor_types.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2669465Z copying torch\include\torch\csrc\utils\throughput_benchmark-inl.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2675534Z copying torch\include\torch\csrc\utils\throughput_benchmark.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2682051Z copying torch\include\torch\csrc\utils\torch_dispatch_mode.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2688959Z copying torch\include\torch\csrc\utils\variadic.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2695559Z copying torch\include\torch\csrc\utils\verbose.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils 2025-07-17T08:09:52.2701726Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-17T08:09:52.2705030Z copying torch\include\torch\csrc\xpu\Event.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-17T08:09:52.2711041Z copying torch\include\torch\csrc\xpu\Module.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-17T08:09:52.2717023Z copying torch\include\torch\csrc\xpu\Stream.h -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\xpu 2025-07-17T08:09:52.2722741Z creating build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-17T08:09:52.2727674Z copying torch\include\torch\headeronly\macros\cmake_macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-17T08:09:52.2733456Z copying torch\include\torch\headeronly\macros\Export.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-17T08:09:52.2739773Z copying torch\include\torch\headeronly\macros\Macros.h -> build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros 2025-07-17T08:09:52.2746581Z copying torch\include\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:52.2753053Z copying torch\include\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:52.2760099Z copying torch\include\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:52.2767926Z copying torch\include\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:52.2773903Z copying torch\include\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include 2025-07-17T08:09:52.2780930Z copying torch\include\oneapi\dnnl\dnnl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2798216Z copying torch\include\oneapi\dnnl\dnnl_common.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2805180Z copying torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2814007Z copying torch\include\oneapi\dnnl\dnnl_graph_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2819948Z copying torch\include\oneapi\dnnl\dnnl_graph_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2826725Z copying torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2833861Z copying torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2840568Z copying torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2848776Z copying torch\include\oneapi\dnnl\dnnl_threadpool_iface.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2854688Z copying torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl 2025-07-17T08:09:52.2862019Z copying torch\include\torch\csrc\distributed\c10d\Backend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2868777Z copying torch\include\torch\csrc\distributed\c10d\Backoff.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2875252Z copying torch\include\torch\csrc\distributed\c10d\comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2883248Z copying torch\include\torch\csrc\distributed\c10d\default_comm_hooks.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2889407Z copying torch\include\torch\csrc\distributed\c10d\FakeProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2895930Z copying torch\include\torch\csrc\distributed\c10d\FileStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2902837Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorder.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2909381Z copying torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2917113Z copying torch\include\torch\csrc\distributed\c10d\Functional.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2933890Z copying torch\include\torch\csrc\distributed\c10d\GlooDeviceFactory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2940357Z copying torch\include\torch\csrc\distributed\c10d\GroupRegistry.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2947026Z copying torch\include\torch\csrc\distributed\c10d\HashStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2957715Z copying torch\include\torch\csrc\distributed\c10d\logger.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2963898Z copying torch\include\torch\csrc\distributed\c10d\NanCheck.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2970467Z copying torch\include\torch\csrc\distributed\c10d\NCCLUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2978204Z copying torch\include\torch\csrc\distributed\c10d\ParamCommsUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.2984464Z copying torch\include\torch\csrc\distributed\c10d\PrefixStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3011567Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3018987Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGloo.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3026074Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3033195Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupMPI.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3039993Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupNCCL.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3051501Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupUCC.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3058353Z copying torch\include\torch\csrc\distributed\c10d\ProcessGroupWrapper.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3064979Z copying torch\include\torch\csrc\distributed\c10d\PyProcessGroup.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3073719Z copying torch\include\torch\csrc\distributed\c10d\RankLocal.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3079398Z copying torch\include\torch\csrc\distributed\c10d\reducer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3086178Z copying torch\include\torch\csrc\distributed\c10d\reducer_timer.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3093157Z copying torch\include\torch\csrc\distributed\c10d\sequence_num.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3099933Z copying torch\include\torch\csrc\distributed\c10d\Store.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3108009Z copying torch\include\torch\csrc\distributed\c10d\TCPStore.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3114247Z copying torch\include\torch\csrc\distributed\c10d\TCPStoreBackend.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3120700Z copying torch\include\torch\csrc\distributed\c10d\Types.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3127190Z copying torch\include\torch\csrc\distributed\c10d\UCCTracing.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3134763Z copying torch\include\torch\csrc\distributed\c10d\UCCUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3145600Z copying torch\include\torch\csrc\distributed\c10d\UnixSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3152149Z copying torch\include\torch\csrc\distributed\c10d\Utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3160231Z copying torch\include\torch\csrc\distributed\c10d\WinSockUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3166088Z copying torch\include\torch\csrc\distributed\c10d\Work.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:09:52.3171716Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-17T08:09:52.3174774Z 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-07-17T08:09:52.3181573Z 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-07-17T08:09:52.3186996Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-17T08:09:52.3190214Z 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-07-17T08:09:52.3196947Z 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-07-17T08:09:52.3202414Z creating build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-17T08:09:52.3206299Z copying torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-17T08:09:52.3212502Z copying torch\include\torch\csrc\distributed\c10d\cuda\utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-17T08:09:52.3219072Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:52.3225692Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:52.3236469Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:52.3243276Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:52.3250130Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:52.3264239Z copying torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:09:52.3270991Z copying torch\include\torch\csrc\jit\testing\catch_utils.hpp -> build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\testing 2025-07-17T08:09:52.3277721Z copying torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3284483Z copying torch\include\ATen\cuda\AsmUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3290796Z copying torch\include\ATen\cuda\Atomic.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3299037Z copying torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3305223Z copying torch\include\ATen\cuda\cub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3311952Z copying torch\include\ATen\cuda\cub_definitions.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3318602Z copying torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3326091Z copying torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3333805Z copying torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3339791Z copying torch\include\ATen\cuda\DeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3351440Z copying torch\include\ATen\cuda\NumericLimits.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3357430Z copying torch\include\ATen\cuda\PhiloxUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3363863Z copying torch\include\ATen\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda 2025-07-17T08:09:52.3370247Z copying torch\include\ATen\cuda\detail\IndexUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:52.3381803Z copying torch\include\ATen\cuda\detail\IntegerDivider.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:52.3388614Z copying torch\include\ATen\cuda\detail\OffsetCalculator.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:52.3394919Z copying torch\include\ATen\cuda\detail\PhiloxCudaStateRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:52.3406072Z copying torch\include\ATen\cuda\detail\TensorInfo.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:52.3412878Z copying torch\include\ATen\cuda\detail\UnpackRaw.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\detail 2025-07-17T08:09:52.3424470Z copying torch\include\ATen\native\cuda\block_reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3431922Z copying torch\include\ATen\native\cuda\CUDAJitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3437678Z copying torch\include\ATen\native\cuda\CUDALoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3445073Z copying torch\include\ATen\native\cuda\cutlass_common.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3452002Z copying torch\include\ATen\native\cuda\DeviceSqrt.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3463240Z copying torch\include\ATen\native\cuda\EmbeddingBackwardKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3469812Z copying torch\include\ATen\native\cuda\ForeachFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3476843Z copying torch\include\ATen\native\cuda\ForeachMinMaxFunctors.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3483501Z copying torch\include\ATen\native\cuda\fused_adamw_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3496096Z copying torch\include\ATen\native\cuda\fused_adamw_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3502719Z copying torch\include\ATen\native\cuda\fused_adam_amsgrad_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3509142Z copying torch\include\ATen\native\cuda\fused_adam_impl.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3515814Z copying torch\include\ATen\native\cuda\fused_adam_utils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3522783Z copying torch\include\ATen\native\cuda\GridSampler.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3529533Z copying torch\include\ATen\native\cuda\GroupMMCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3536242Z copying torch\include\ATen\native\cuda\im2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3543023Z copying torch\include\ATen\native\cuda\JitLoops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3549517Z copying torch\include\ATen\native\cuda\KernelUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3556051Z copying torch\include\ATen\native\cuda\Loops.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3562640Z copying torch\include\ATen\native\cuda\Math.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3571216Z copying torch\include\ATen\native\cuda\MemoryAccess.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3578312Z copying torch\include\ATen\native\cuda\MultiTensorApply.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3589183Z copying torch\include\ATen\native\cuda\Normalization.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3597400Z copying torch\include\ATen\native\cuda\PersistentSoftmax.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3604578Z copying torch\include\ATen\native\cuda\Pow.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3610988Z copying torch\include\ATen\native\cuda\Randperm.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3617299Z copying torch\include\ATen\native\cuda\Reduce.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3624663Z copying torch\include\ATen\native\cuda\reduction_template.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3631848Z copying torch\include\ATen\native\cuda\ScanUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3639552Z copying torch\include\ATen\native\cuda\SortingCommon.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3646313Z copying torch\include\ATen\native\cuda\SortingRadixSelect.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3654169Z copying torch\include\ATen\native\cuda\SortUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3660535Z copying torch\include\ATen\native\cuda\TensorModeKernel.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3667602Z copying torch\include\ATen\native\cuda\UniqueCub.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3726834Z copying torch\include\ATen\native\cuda\UpSample.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3734557Z copying torch\include\ATen\native\cuda\vol2col.cuh -> build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda 2025-07-17T08:09:52.3740126Z creating build\lib.win-amd64-cpython-39\torch\include\THC 2025-07-17T08:09:52.3742755Z copying torch\include\THC\THCAtomics.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-07-17T08:09:52.3748969Z copying torch\include\THC\THCDeviceUtils.cuh -> build\lib.win-amd64-cpython-39\torch\include\THC 2025-07-17T08:09:52.3754819Z creating build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-07-17T08:09:52.3760648Z copying torch\csrc\inductor\aoti_runtime\model.h -> build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime 2025-07-17T08:09:52.3766570Z creating build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-07-17T08:09:52.3770831Z copying torch\_inductor\codegen\aoti_runtime\interface.cpp -> build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_runtime 2025-07-17T08:09:52.3788512Z copying torch\_inductor\script.ld -> build\lib.win-amd64-cpython-39\torch\_inductor 2025-07-17T08:09:52.3795201Z copying torch\_export\serde\schema.yaml -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:52.3809510Z copying torch\_export\serde\export_schema.thrift -> build\lib.win-amd64-cpython-39\torch\_export\serde 2025-07-17T08:09:52.3820617Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-07-17T08:09:52.3824652Z copying torch\share\cmake\ATen\ATenConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\ATen 2025-07-17T08:09:52.3830454Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3833425Z copying torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3839789Z copying torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3846364Z copying torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3856993Z copying torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3864167Z copying torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3870788Z copying torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3877907Z copying torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2 2025-07-17T08:09:52.3884443Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3886444Z copying torch\share\cmake\Caffe2\public\cuda.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3892991Z copying torch\share\cmake\Caffe2\public\gflags.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3899430Z copying torch\share\cmake\Caffe2\public\glog.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3907438Z copying torch\share\cmake\Caffe2\public\LoadHIP.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3918981Z copying torch\share\cmake\Caffe2\public\mkl.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3925078Z copying torch\share\cmake\Caffe2\public\mkldnn.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3969377Z copying torch\share\cmake\Caffe2\public\protobuf.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3970356Z copying torch\share\cmake\Caffe2\public\utils.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3971190Z copying torch\share\cmake\Caffe2\public\xpu.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\public 2025-07-17T08:09:52.3971939Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-17T08:09:52.3972737Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDA.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-17T08:09:52.3975198Z copying torch\share\cmake\Caffe2\Modules_CUDA_fix\FindCUDNN.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-17T08:09:52.3976057Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-17T08:09:52.3981799Z 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-07-17T08:09:52.3988433Z 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-07-17T08:09:52.3997089Z 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-07-17T08:09:52.4009830Z 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-07-17T08:09:52.4015383Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-17T08:09:52.4018493Z 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-07-17T08:09:52.4025016Z 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-07-17T08:09:52.4036799Z 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-07-17T08:09:52.4048049Z 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-07-17T08:09:52.4053766Z creating build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-17T08:09:52.4056606Z copying torch\share\cmake\Torch\TorchConfig.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-17T08:09:52.4062936Z copying torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\lib.win-amd64-cpython-39\torch\share\cmake\Torch 2025-07-17T08:09:52.4070134Z copying torch\utils\benchmark\utils\timeit_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils 2025-07-17T08:09:52.4085627Z copying torch\utils\benchmark\utils\valgrind_wrapper\compat_bindings.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:09:52.4101942Z copying torch\utils\benchmark\utils\valgrind_wrapper\timer_callgrind_template.cpp -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:09:52.4113684Z copying torch\utils\benchmark\utils\valgrind_wrapper\callgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:09:52.4120462Z copying torch\utils\benchmark\utils\valgrind_wrapper\valgrind.h -> build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:09:52.4130972Z copying torch\utils\model_dump\skeleton.html -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-17T08:09:52.4137965Z copying torch\utils\model_dump\code.js -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-17T08:09:52.4154189Z copying torch\utils\model_dump\htm.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-17T08:09:52.4168091Z copying torch\utils\model_dump\preact.mjs -> build\lib.win-amd64-cpython-39\torch\utils\model_dump 2025-07-17T08:09:52.4179909Z copying torch\_dynamo\graph_break_registry.json -> build\lib.win-amd64-cpython-39\torch\_dynamo 2025-07-17T08:09:52.4222284Z copying torch\lib\aoti_custom_ops.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4235799Z copying torch\lib\asmjit.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4245990Z copying torch\lib\backend_with_compiler.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4255978Z copying torch\lib\c10.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4271008Z copying torch\lib\c10_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4281362Z copying torch\lib\caffe2_nvrtc.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4289014Z copying torch\lib\fbgemm.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4347306Z copying torch\lib\jitbackend_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4355807Z copying torch\lib\torch.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4362070Z copying torch\lib\torchbind_test.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.4375639Z copying torch\lib\torch_cpu.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.6571300Z copying torch\lib\torch_cuda.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8717467Z copying torch\lib\torch_global_deps.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8724628Z copying torch\lib\torch_python.dll -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8876669Z copying torch\lib\aoti_custom_ops.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8883896Z copying torch\lib\asmjit.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8892768Z copying torch\lib\backend_with_compiler.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8899555Z copying torch\lib\c10.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8922387Z copying torch\lib\c10_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8930066Z copying torch\lib\caffe2_nvrtc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8946332Z copying torch\lib\cpuinfo.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:52.8957759Z copying torch\lib\dnnl.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:54.9186005Z copying torch\lib\fbgemm.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:54.9205886Z copying torch\lib\fmt.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:54.9375641Z copying torch\lib\jitbackend_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:54.9393283Z copying torch\lib\kineto.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.0378574Z copying torch\lib\libittnotify.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.0391434Z copying torch\lib\libprotobuf-lite.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.0650613Z copying torch\lib\libprotobuf.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.1910591Z copying torch\lib\libprotoc.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.3243957Z copying torch\lib\microkernels-prod.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.3418469Z copying torch\lib\pthreadpool.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.3433106Z copying torch\lib\sleef.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.3676781Z copying torch\lib\torch.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.3685839Z copying torch\lib\torchbind_test.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.9300960Z copying torch\lib\torch_cpu.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.9884799Z copying torch\lib\torch_cuda.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.9906862Z copying torch\lib\torch_python.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:56.9916613Z copying torch\lib\XNNPACK.lib -> build\lib.win-amd64-cpython-39\torch\lib 2025-07-17T08:09:57.0041281Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-17T08:09:57.0047222Z copying torchgen\packaged\ATen\native\native_functions.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-17T08:10:10.9419862Z copying torchgen\packaged\ATen\native\tags.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native 2025-07-17T08:10:10.9431726Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:10.9435309Z copying torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:10.9450123Z copying torchgen\packaged\ATen\templates\aten_interned_strings.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:10.9461697Z copying torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0017713Z copying torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0027572Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0038411Z copying torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0052283Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0058249Z copying torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0064682Z copying torchgen\packaged\ATen\templates\enum_tag.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0071059Z copying torchgen\packaged\ATen\templates\Function.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0077604Z copying torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0814631Z copying torchgen\packaged\ATen\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0829687Z copying torchgen\packaged\ATen\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0841482Z copying torchgen\packaged\ATen\templates\LazyIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0848198Z copying torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.0855975Z copying torchgen\packaged\ATen\templates\MethodOperators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1824506Z copying torchgen\packaged\ATen\templates\NativeFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1832537Z copying torchgen\packaged\ATen\templates\NativeFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1844343Z copying torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1861799Z copying torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1868532Z copying torchgen\packaged\ATen\templates\Operator.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1874832Z copying torchgen\packaged\ATen\templates\Operators.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1881660Z copying torchgen\packaged\ATen\templates\Operators.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1893505Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1905661Z copying torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1918404Z copying torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1930385Z copying torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1941801Z copying torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1947822Z copying torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1971262Z copying torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1988831Z copying torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.1995485Z copying torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2001934Z copying torchgen\packaged\ATen\templates\TensorBody.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2020356Z copying torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2031612Z copying torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2038575Z copying torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2049111Z copying torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2056764Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2079772Z copying torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates 2025-07-17T08:10:11.2088436Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2091679Z copying torchgen\packaged\autograd\BUILD.bazel -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2097908Z copying torchgen\packaged\autograd\build.bzl -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2104134Z copying torchgen\packaged\autograd\context.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2114886Z copying torchgen\packaged\autograd\deprecated.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2125786Z copying torchgen\packaged\autograd\derivatives.yaml -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2212504Z copying torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2225230Z copying torchgen\packaged\autograd\gen_autograd.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.2236960Z copying torchgen\packaged\autograd\gen_autograd_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.3676295Z copying torchgen\packaged\autograd\gen_inplace_or_view_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.3694802Z copying torchgen\packaged\autograd\gen_python_functions.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.4668803Z copying torchgen\packaged\autograd\gen_trace_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.5245092Z copying torchgen\packaged\autograd\gen_variable_factories.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.5256794Z copying torchgen\packaged\autograd\gen_variable_type.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.6409099Z copying torchgen\packaged\autograd\gen_view_funcs.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.6426537Z copying torchgen\packaged\autograd\load_derivatives.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.6936491Z copying torchgen\packaged\autograd\README.md -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.6942756Z copying torchgen\packaged\autograd\__init__.py -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd 2025-07-17T08:10:11.6947553Z creating build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.6986008Z copying torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.6998358Z copying torchgen\packaged\autograd\templates\annotated_fn_args.py.in -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7005547Z copying torchgen\packaged\autograd\templates\Functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7022695Z copying torchgen\packaged\autograd\templates\Functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7032884Z copying torchgen\packaged\autograd\templates\python_enum_tag.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7039308Z copying torchgen\packaged\autograd\templates\python_fft_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7050638Z copying torchgen\packaged\autograd\templates\python_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7061861Z copying torchgen\packaged\autograd\templates\python_functions.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7068597Z copying torchgen\packaged\autograd\templates\python_linalg_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7080259Z copying torchgen\packaged\autograd\templates\python_nested_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7091217Z copying torchgen\packaged\autograd\templates\python_nn_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7101985Z copying torchgen\packaged\autograd\templates\python_return_types.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7150655Z copying torchgen\packaged\autograd\templates\python_return_types.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7157743Z copying torchgen\packaged\autograd\templates\python_sparse_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7237530Z copying torchgen\packaged\autograd\templates\python_special_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7249532Z copying torchgen\packaged\autograd\templates\python_torch_functions.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7405476Z copying torchgen\packaged\autograd\templates\python_variable_methods.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7442599Z copying torchgen\packaged\autograd\templates\TraceType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7455172Z copying torchgen\packaged\autograd\templates\VariableType.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7468059Z copying torchgen\packaged\autograd\templates\VariableType.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7480377Z copying torchgen\packaged\autograd\templates\variable_factories.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7497723Z copying torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7503505Z copying torchgen\packaged\autograd\templates\ViewFuncs.h -> build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates 2025-07-17T08:10:11.7510661Z copying torch\jit\_script.pyi -> build\lib.win-amd64-cpython-39\torch\jit 2025-07-17T08:10:11.7518239Z copying torch\nn\functional.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:10:11.7526592Z copying torch\nn\parameter.pyi -> build\lib.win-amd64-cpython-39\torch\nn 2025-07-17T08:10:11.7534161Z copying torch\utils\_config_typing.pyi -> build\lib.win-amd64-cpython-39\torch\utils 2025-07-17T08:10:11.7542831Z copying torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\lib.win-amd64-cpython-39\torch\distributed\optim 2025-07-17T08:10:11.7550807Z copying torch\optim\_multi_tensor\__init__.pyi -> build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor 2025-07-17T08:10:11.7558337Z copying torch\utils\data\datapipes\datapipe.pyi -> build\lib.win-amd64-cpython-39\torch\utils\data\datapipes 2025-07-17T08:10:11.8509533Z running build_ext 2025-07-17T08:10:11.8570355Z -- Building with NumPy bindings 2025-07-17T08:10:11.8570862Z -- Detected cuDNN at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6/lib/x64, 2025-07-17T08:10:11.8571488Z -- Detected CUDA at C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.6 2025-07-17T08:10:11.8571975Z -- Not using XPU 2025-07-17T08:10:11.8572202Z -- Using MKLDNN 2025-07-17T08:10:11.8572491Z -- Not using Compute Library for the Arm architecture with MKLDNN 2025-07-17T08:10:11.8572875Z -- Not using CBLAS in MKLDNN 2025-07-17T08:10:11.8573225Z -- Not using NCCL 2025-07-17T08:10:11.8573447Z -- Building without distributed package 2025-07-17T08:10:11.8573707Z -- Using ITT 2025-07-17T08:10:17.3498525Z 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-07-17T08:10:17.3501099Z copying functorch\functorch.pyd -> C:\actions-runner\_work\pytorch\pytorch\build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd 2025-07-17T08:10:17.3522292Z building 'torch._C' extension 2025-07-17T08:10:17.3540507Z creating build\temp.win-amd64-cpython-39\Release\torch\csrc 2025-07-17T08:10:17.3553211Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\cl.exe" /c /nologo /O2 /W3 /GL /DNDEBUG /MD -IC:\Jenkins\Miniconda3\include -IC:\Jenkins\Miniconda3\Include "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\include" "-IC:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\VS\include" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.19041.0\ucrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\um" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\shared" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\winrt" "-IC:\Program Files (x86)\Windows Kits\10\\include\10.0.19041.0\\cppwinrt" "-IC:\Program Files (x86)\Windows Kits\NETFXSDK\4.8\include\um" /Tctorch/csrc/stub.c /Fobuild\temp.win-amd64-cpython-39\Release\torch\csrc\stub.obj /MD /FS /EHsc 2025-07-17T08:10:17.3675451Z stub.c 2025-07-17T08:10:17.4740830Z "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\HostX64\x64\link.exe" /nologo /INCREMENTAL:NO /LTCG /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:C:\actions-runner\_work\pytorch\pytorch\torch\lib /LIBPATH:C:\Jenkins\Miniconda3\libs /LIBPATH:C:\Jenkins\Miniconda3 /LIBPATH:C:\Jenkins\Miniconda3\PCbuild\amd64 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\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-07-17T08:10:17.4975199Z 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-07-17T08:10:17.5070312Z Generating code 2025-07-17T08:10:17.5195934Z Finished generating code 2025-07-17T08:10:17.5553993Z 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-07-17T08:10:17.5558360Z The specified environment variable does not exist. 2025-07-17T08:10:17.5668949Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\_distutils\cmd.py:90: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-07-17T08:10:17.5669731Z !! 2025-07-17T08:10:17.5669845Z 2025-07-17T08:10:17.5669953Z ******************************************************************************** 2025-07-17T08:10:17.5670284Z Please avoid running ``setup.py`` directly. 2025-07-17T08:10:17.5670636Z Instead, use pypa/build, pypa/installer or other 2025-07-17T08:10:17.5670955Z standards-based tools. 2025-07-17T08:10:17.5671121Z 2025-07-17T08:10:17.5671404Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-07-17T08:10:17.5671898Z ******************************************************************************** 2025-07-17T08:10:17.5672111Z 2025-07-17T08:10:17.5672245Z !! 2025-07-17T08:10:17.5672435Z self.initialize_options() 2025-07-17T08:10:17.5746225Z installing to build\bdist.win-amd64\wheel 2025-07-17T08:10:17.5746557Z running install 2025-07-17T08:10:17.5767747Z running install_lib 2025-07-17T08:10:17.5849589Z creating build\bdist.win-amd64\wheel 2025-07-17T08:10:17.5854592Z creating build\bdist.win-amd64\wheel\functorch 2025-07-17T08:10:17.5857635Z creating build\bdist.win-amd64\wheel\functorch\compile 2025-07-17T08:10:17.5860913Z copying build\lib.win-amd64-cpython-39\functorch\compile\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\compile 2025-07-17T08:10:17.5866426Z creating build\bdist.win-amd64\wheel\functorch\dim 2025-07-17T08:10:17.5870541Z copying build\lib.win-amd64-cpython-39\functorch\dim\batch_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5875090Z copying build\lib.win-amd64-cpython-39\functorch\dim\delayed_mul_tensor.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5880586Z copying build\lib.win-amd64-cpython-39\functorch\dim\dim.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5886265Z copying build\lib.win-amd64-cpython-39\functorch\dim\magic_trace.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5902366Z copying build\lib.win-amd64-cpython-39\functorch\dim\op_properties.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5907450Z copying build\lib.win-amd64-cpython-39\functorch\dim\reference.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5918830Z copying build\lib.win-amd64-cpython-39\functorch\dim\tree_map.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5924046Z copying build\lib.win-amd64-cpython-39\functorch\dim\wrap_type.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5929418Z copying build\lib.win-amd64-cpython-39\functorch\dim\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\dim 2025-07-17T08:10:17.5935065Z creating build\bdist.win-amd64\wheel\functorch\einops 2025-07-17T08:10:17.5938129Z copying build\lib.win-amd64-cpython-39\functorch\einops\rearrange.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-17T08:10:17.5943896Z copying build\lib.win-amd64-cpython-39\functorch\einops\_parsing.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-17T08:10:17.5952603Z copying build\lib.win-amd64-cpython-39\functorch\einops\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\einops 2025-07-17T08:10:17.5958169Z creating build\bdist.win-amd64\wheel\functorch\experimental 2025-07-17T08:10:17.5961472Z copying build\lib.win-amd64-cpython-39\functorch\experimental\control_flow.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-17T08:10:17.5966480Z copying build\lib.win-amd64-cpython-39\functorch\experimental\ops.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-17T08:10:17.5971330Z copying build\lib.win-amd64-cpython-39\functorch\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\experimental 2025-07-17T08:10:17.5976742Z copying build\lib.win-amd64-cpython-39\functorch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\functorch 2025-07-17T08:10:17.5996265Z creating build\bdist.win-amd64\wheel\functorch\_src 2025-07-17T08:10:17.5999730Z creating build\bdist.win-amd64\wheel\functorch\_src\aot_autograd 2025-07-17T08:10:17.6003778Z copying build\lib.win-amd64-cpython-39\functorch\_src\aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\aot_autograd 2025-07-17T08:10:17.6007937Z creating build\bdist.win-amd64\wheel\functorch\_src\eager_transforms 2025-07-17T08:10:17.6011340Z copying build\lib.win-amd64-cpython-39\functorch\_src\eager_transforms\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\eager_transforms 2025-07-17T08:10:17.6038352Z creating build\bdist.win-amd64\wheel\functorch\_src\make_functional 2025-07-17T08:10:17.6039130Z copying build\lib.win-amd64-cpython-39\functorch\_src\make_functional\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\make_functional 2025-07-17T08:10:17.6039938Z creating build\bdist.win-amd64\wheel\functorch\_src\vmap 2025-07-17T08:10:17.6040725Z copying build\lib.win-amd64-cpython-39\functorch\_src\vmap\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src\vmap 2025-07-17T08:10:17.6046109Z copying build\lib.win-amd64-cpython-39\functorch\_src\__init__.py -> build\bdist.win-amd64\wheel\.\functorch\_src 2025-07-17T08:10:17.6050632Z copying build\lib.win-amd64-cpython-39\functorch\__init__.py -> build\bdist.win-amd64\wheel\.\functorch 2025-07-17T08:10:17.6056982Z creating build\bdist.win-amd64\wheel\torch 2025-07-17T08:10:17.6060216Z creating build\bdist.win-amd64\wheel\torch\accelerator 2025-07-17T08:10:17.6063639Z copying build\lib.win-amd64-cpython-39\torch\accelerator\memory.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-07-17T08:10:17.6069855Z copying build\lib.win-amd64-cpython-39\torch\accelerator\_utils.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-07-17T08:10:17.6074973Z copying build\lib.win-amd64-cpython-39\torch\accelerator\__init__.py -> build\bdist.win-amd64\wheel\.\torch\accelerator 2025-07-17T08:10:17.6080293Z creating build\bdist.win-amd64\wheel\torch\amp 2025-07-17T08:10:17.6083450Z copying build\lib.win-amd64-cpython-39\torch\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-17T08:10:17.6090091Z copying build\lib.win-amd64-cpython-39\torch\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-17T08:10:17.6095065Z copying build\lib.win-amd64-cpython-39\torch\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\amp 2025-07-17T08:10:17.6103061Z creating build\bdist.win-amd64\wheel\torch\ao 2025-07-17T08:10:17.6106179Z creating build\bdist.win-amd64\wheel\torch\ao\nn 2025-07-17T08:10:17.6109465Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic 2025-07-17T08:10:17.6112604Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\modules 2025-07-17T08:10:17.6115915Z 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-07-17T08:10:17.6126316Z 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-07-17T08:10:17.6131814Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat 2025-07-17T08:10:17.6135066Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\qat\modules 2025-07-17T08:10:17.6138317Z 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-07-17T08:10:17.6144570Z 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-07-17T08:10:17.6149786Z 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-07-17T08:10:17.6155032Z 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-07-17T08:10:17.6176690Z 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-07-17T08:10:17.6181371Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized 2025-07-17T08:10:17.6184546Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic 2025-07-17T08:10:17.6187768Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\dynamic\modules 2025-07-17T08:10:17.6191095Z 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-07-17T08:10:17.6196477Z 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-07-17T08:10:17.6201611Z 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-07-17T08:10:17.6206685Z creating build\bdist.win-amd64\wheel\torch\ao\nn\intrinsic\quantized\modules 2025-07-17T08:10:17.6210015Z 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-07-17T08:10:17.6215236Z 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-07-17T08:10:17.6225187Z 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-07-17T08:10:17.6230452Z 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-07-17T08:10:17.6235655Z 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-07-17T08:10:17.6251036Z 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-07-17T08:10:17.6255920Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\intrinsic 2025-07-17T08:10:17.6261188Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat 2025-07-17T08:10:17.6264365Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic 2025-07-17T08:10:17.6267892Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\dynamic\modules 2025-07-17T08:10:17.6271066Z 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-07-17T08:10:17.6276271Z 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-07-17T08:10:17.6281336Z 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-07-17T08:10:17.6286640Z creating build\bdist.win-amd64\wheel\torch\ao\nn\qat\modules 2025-07-17T08:10:17.6290102Z 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-07-17T08:10:17.6295337Z 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-07-17T08:10:17.6301592Z 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-07-17T08:10:17.6310768Z 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-07-17T08:10:17.6316132Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\qat 2025-07-17T08:10:17.6321746Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable 2025-07-17T08:10:17.6325186Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantizable\modules 2025-07-17T08:10:17.6328701Z 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-07-17T08:10:17.6334424Z 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-07-17T08:10:17.6340503Z 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-07-17T08:10:17.6345858Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantizable 2025-07-17T08:10:17.6355589Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized 2025-07-17T08:10:17.6369213Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic 2025-07-17T08:10:17.6373102Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\dynamic\modules 2025-07-17T08:10:17.6376966Z 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-07-17T08:10:17.6382564Z 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-07-17T08:10:17.6388088Z 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-07-17T08:10:17.6394159Z 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-07-17T08:10:17.6398027Z 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-07-17T08:10:17.6407532Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-07-17T08:10:17.6413425Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\modules 2025-07-17T08:10:17.6417287Z 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-07-17T08:10:17.6423018Z 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-07-17T08:10:17.6427130Z 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-07-17T08:10:17.6432864Z 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-07-17T08:10:17.6438112Z 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-07-17T08:10:17.6454553Z 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-07-17T08:10:17.6459994Z 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-07-17T08:10:17.6465933Z 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-07-17T08:10:17.6471500Z 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-07-17T08:10:17.6476777Z 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-07-17T08:10:17.6487547Z 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-07-17T08:10:17.6493302Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference 2025-07-17T08:10:17.6508996Z creating build\bdist.win-amd64\wheel\torch\ao\nn\quantized\reference\modules 2025-07-17T08:10:17.6511191Z 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-07-17T08:10:17.6517058Z 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-07-17T08:10:17.6522743Z 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-07-17T08:10:17.6528495Z 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-07-17T08:10:17.6534036Z 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-07-17T08:10:17.6539396Z 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-07-17T08:10:17.6545077Z 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-07-17T08:10:17.6550958Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\quantized 2025-07-17T08:10:17.6554917Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse 2025-07-17T08:10:17.6558317Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized 2025-07-17T08:10:17.6561516Z creating build\bdist.win-amd64\wheel\torch\ao\nn\sparse\quantized\dynamic 2025-07-17T08:10:17.6564630Z 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-07-17T08:10:17.6569971Z 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-07-17T08:10:17.6579398Z 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-07-17T08:10:17.6584794Z 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-07-17T08:10:17.6589912Z 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-07-17T08:10:17.6594714Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn\sparse 2025-07-17T08:10:17.6599701Z copying build\lib.win-amd64-cpython-39\torch\ao\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\nn 2025-07-17T08:10:17.6605144Z creating build\bdist.win-amd64\wheel\torch\ao\ns 2025-07-17T08:10:17.6608319Z creating build\bdist.win-amd64\wheel\torch\ao\ns\fx 2025-07-17T08:10:17.6612013Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_matcher.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6617773Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\graph_passes.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6623543Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6628979Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\ns_types.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6634155Z 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-07-17T08:10:17.6650376Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6655924Z 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-07-17T08:10:17.6661554Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6667136Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\weight_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6673356Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns\fx 2025-07-17T08:10:17.6678194Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-17T08:10:17.6683924Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-17T08:10:17.6689804Z copying build\lib.win-amd64-cpython-39\torch\ao\ns\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\ns 2025-07-17T08:10:17.6694372Z creating build\bdist.win-amd64\wheel\torch\ao\pruning 2025-07-17T08:10:17.6697564Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\scheduler 2025-07-17T08:10:17.6701541Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\base_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-17T08:10:17.6712082Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\cubic_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-17T08:10:17.6721885Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\lambda_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-17T08:10:17.6734214Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\scheduler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\scheduler 2025-07-17T08:10:17.6738822Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\sparsifier 2025-07-17T08:10:17.6741872Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\base_sparsifier.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-17T08:10:17.6747552Z 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-07-17T08:10:17.6752561Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-17T08:10:17.6768982Z 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-07-17T08:10:17.6774443Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\sparsifier\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\sparsifier 2025-07-17T08:10:17.6778926Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental 2025-07-17T08:10:17.6782363Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\activation_sparsifier 2025-07-17T08:10:17.6785813Z 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-07-17T08:10:17.6792009Z 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-07-17T08:10:17.6796205Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_scheduler 2025-07-17T08:10:17.6799677Z 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-07-17T08:10:17.6805168Z 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-07-17T08:10:17.6809941Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier 2025-07-17T08:10:17.6828815Z 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-07-17T08:10:17.6834363Z 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-07-17T08:10:17.6839727Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning 2025-07-17T08:10:17.6853632Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\data_sparsifier\lightning\callbacks 2025-07-17T08:10:17.6858218Z 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-07-17T08:10:17.6864120Z 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-07-17T08:10:17.6869754Z 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-07-17T08:10:17.6936753Z 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-07-17T08:10:17.6941094Z 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-07-17T08:10:17.6946627Z 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-07-17T08:10:17.6951716Z creating build\bdist.win-amd64\wheel\torch\ao\pruning\_experimental\pruner 2025-07-17T08:10:17.6955403Z 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-07-17T08:10:17.6960995Z 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-07-17T08:10:17.6966561Z 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-07-17T08:10:17.6982775Z 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-07-17T08:10:17.6988114Z 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-07-17T08:10:17.6994882Z 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-07-17T08:10:17.7000473Z 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-07-17T08:10:17.7004814Z 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-07-17T08:10:17.7010190Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning\_experimental 2025-07-17T08:10:17.7014445Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-07-17T08:10:17.7029955Z copying build\lib.win-amd64-cpython-39\torch\ao\pruning\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\pruning 2025-07-17T08:10:17.7035921Z creating build\bdist.win-amd64\wheel\torch\ao\quantization 2025-07-17T08:10:17.7039573Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\backend_config 2025-07-17T08:10:17.7043242Z 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-07-17T08:10:17.7049726Z 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-07-17T08:10:17.7056345Z 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-07-17T08:10:17.7061926Z 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-07-17T08:10:17.7081414Z 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-07-17T08:10:17.7085858Z 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-07-17T08:10:17.7095646Z 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-07-17T08:10:17.7100911Z 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-07-17T08:10:17.7105899Z 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-07-17T08:10:17.7111198Z 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-07-17T08:10:17.7116802Z 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-07-17T08:10:17.7122703Z 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-07-17T08:10:17.7128356Z 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-07-17T08:10:17.7153799Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7159318Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7174124Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7179544Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx 2025-07-17T08:10:17.7182746Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7189175Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\custom_config.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7194995Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7200310Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\fuse_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7205727Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7226876Z 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-07-17T08:10:17.7232124Z 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-07-17T08:10:17.7237087Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\lstm_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7242397Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7247646Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7257403Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7264447Z 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-07-17T08:10:17.7270047Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\quantize_handler.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7275307Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\tracer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7280693Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7286316Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_decomposed.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7325967Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7332364Z 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-07-17T08:10:17.7338859Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\fx\_model_report 2025-07-17T08:10:17.7342384Z 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-07-17T08:10:17.7348709Z 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-07-17T08:10:17.7355084Z 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-07-17T08:10:17.7370884Z 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-07-17T08:10:17.7376905Z 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-07-17T08:10:17.7381266Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\fx 2025-07-17T08:10:17.7386395Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7393020Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7396372Z 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-07-17T08:10:17.7401826Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\export_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7407079Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7412739Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\lowering.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7428355Z 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-07-17T08:10:17.7433765Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\prepare.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7439313Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\qat_utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7446005Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\pt2e\representation 2025-07-17T08:10:17.7449310Z 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-07-17T08:10:17.7460027Z 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-07-17T08:10:17.7465184Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7471064Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_affine_quantization.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7485521Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\_numeric_debugger.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7486673Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\pt2e\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\pt2e 2025-07-17T08:10:17.7488810Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7494215Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\qconfig_mapping.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7499574Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7526642Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7532825Z creating build\bdist.win-amd64\wheel\torch\ao\quantization\quantizer 2025-07-17T08:10:17.7536540Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\composable_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-17T08:10:17.7542209Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\embedding_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-17T08:10:17.7547576Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-17T08:10:17.7564161Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-17T08:10:17.7568184Z 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-07-17T08:10:17.7574866Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\xnnpack_quantizer.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-17T08:10:17.7581522Z 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-07-17T08:10:17.7586697Z 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-07-17T08:10:17.7591839Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantizer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization\quantizer 2025-07-17T08:10:17.7600920Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7606761Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7612422Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quantize_pt2e.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7617755Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7623001Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7628178Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7633772Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_correct_bias.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7639596Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7644916Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\_learnable_fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7650178Z copying build\lib.win-amd64-cpython-39\torch\ao\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao\quantization 2025-07-17T08:10:17.7655482Z copying build\lib.win-amd64-cpython-39\torch\ao\__init__.py -> build\bdist.win-amd64\wheel\.\torch\ao 2025-07-17T08:10:17.7661043Z creating build\bdist.win-amd64\wheel\torch\autograd 2025-07-17T08:10:17.7664202Z copying build\lib.win-amd64-cpython-39\torch\autograd\anomaly_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7669553Z copying build\lib.win-amd64-cpython-39\torch\autograd\forward_ad.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7674841Z copying build\lib.win-amd64-cpython-39\torch\autograd\function.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7680443Z copying build\lib.win-amd64-cpython-39\torch\autograd\functional.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7701317Z copying build\lib.win-amd64-cpython-39\torch\autograd\gradcheck.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7707716Z copying build\lib.win-amd64-cpython-39\torch\autograd\grad_mode.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7713132Z copying build\lib.win-amd64-cpython-39\torch\autograd\graph.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7718533Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7724475Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_legacy.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7730014Z copying build\lib.win-amd64-cpython-39\torch\autograd\profiler_util.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7735911Z copying build\lib.win-amd64-cpython-39\torch\autograd\variable.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7740921Z creating build\bdist.win-amd64\wheel\torch\autograd\_functions 2025-07-17T08:10:17.7744155Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\tensor.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-17T08:10:17.7749422Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\utils.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-17T08:10:17.7754452Z copying build\lib.win-amd64-cpython-39\torch\autograd\_functions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd\_functions 2025-07-17T08:10:17.7759317Z copying build\lib.win-amd64-cpython-39\torch\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\autograd 2025-07-17T08:10:17.7765121Z creating build\bdist.win-amd64\wheel\torch\backends 2025-07-17T08:10:17.7768260Z creating build\bdist.win-amd64\wheel\torch\backends\cpu 2025-07-17T08:10:17.7771371Z copying build\lib.win-amd64-cpython-39\torch\backends\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cpu 2025-07-17T08:10:17.7776591Z creating build\bdist.win-amd64\wheel\torch\backends\cuda 2025-07-17T08:10:17.7779727Z copying build\lib.win-amd64-cpython-39\torch\backends\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cuda 2025-07-17T08:10:17.7786134Z creating build\bdist.win-amd64\wheel\torch\backends\cudnn 2025-07-17T08:10:17.7789220Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\rnn.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-07-17T08:10:17.7794423Z copying build\lib.win-amd64-cpython-39\torch\backends\cudnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cudnn 2025-07-17T08:10:17.7799668Z creating build\bdist.win-amd64\wheel\torch\backends\cusparselt 2025-07-17T08:10:17.7802922Z copying build\lib.win-amd64-cpython-39\torch\backends\cusparselt\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\cusparselt 2025-07-17T08:10:17.7808107Z creating build\bdist.win-amd64\wheel\torch\backends\kleidiai 2025-07-17T08:10:17.7811264Z copying build\lib.win-amd64-cpython-39\torch\backends\kleidiai\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\kleidiai 2025-07-17T08:10:17.7816379Z creating build\bdist.win-amd64\wheel\torch\backends\mha 2025-07-17T08:10:17.7830921Z copying build\lib.win-amd64-cpython-39\torch\backends\mha\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mha 2025-07-17T08:10:17.7836126Z creating build\bdist.win-amd64\wheel\torch\backends\mkl 2025-07-17T08:10:17.7839246Z copying build\lib.win-amd64-cpython-39\torch\backends\mkl\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkl 2025-07-17T08:10:17.7844571Z creating build\bdist.win-amd64\wheel\torch\backends\mkldnn 2025-07-17T08:10:17.7847759Z copying build\lib.win-amd64-cpython-39\torch\backends\mkldnn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mkldnn 2025-07-17T08:10:17.7853356Z creating build\bdist.win-amd64\wheel\torch\backends\mps 2025-07-17T08:10:17.7856496Z copying build\lib.win-amd64-cpython-39\torch\backends\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\mps 2025-07-17T08:10:17.7861843Z creating build\bdist.win-amd64\wheel\torch\backends\nnpack 2025-07-17T08:10:17.7864996Z copying build\lib.win-amd64-cpython-39\torch\backends\nnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\nnpack 2025-07-17T08:10:17.7870352Z creating build\bdist.win-amd64\wheel\torch\backends\openmp 2025-07-17T08:10:17.7873434Z copying build\lib.win-amd64-cpython-39\torch\backends\openmp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\openmp 2025-07-17T08:10:17.7878602Z creating build\bdist.win-amd64\wheel\torch\backends\opt_einsum 2025-07-17T08:10:17.7881845Z copying build\lib.win-amd64-cpython-39\torch\backends\opt_einsum\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\opt_einsum 2025-07-17T08:10:17.7887081Z creating build\bdist.win-amd64\wheel\torch\backends\quantized 2025-07-17T08:10:17.7890255Z copying build\lib.win-amd64-cpython-39\torch\backends\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\quantized 2025-07-17T08:10:17.7895667Z creating build\bdist.win-amd64\wheel\torch\backends\xeon 2025-07-17T08:10:17.7898769Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\run_cpu.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-07-17T08:10:17.7904449Z copying build\lib.win-amd64-cpython-39\torch\backends\xeon\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xeon 2025-07-17T08:10:17.7908638Z creating build\bdist.win-amd64\wheel\torch\backends\xnnpack 2025-07-17T08:10:17.7912012Z copying build\lib.win-amd64-cpython-39\torch\backends\xnnpack\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\xnnpack 2025-07-17T08:10:17.7917367Z creating build\bdist.win-amd64\wheel\torch\backends\_coreml 2025-07-17T08:10:17.7920595Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\preprocess.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-07-17T08:10:17.7925946Z copying build\lib.win-amd64-cpython-39\torch\backends\_coreml\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_coreml 2025-07-17T08:10:17.7931189Z creating build\bdist.win-amd64\wheel\torch\backends\_nnapi 2025-07-17T08:10:17.7933752Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\prepare.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-17T08:10:17.7939081Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\serializer.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-17T08:10:17.7963907Z copying build\lib.win-amd64-cpython-39\torch\backends\_nnapi\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends\_nnapi 2025-07-17T08:10:17.7968248Z copying build\lib.win-amd64-cpython-39\torch\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\backends 2025-07-17T08:10:17.7974441Z creating build\bdist.win-amd64\wheel\torch\bin 2025-07-17T08:10:17.7977346Z copying build\lib.win-amd64-cpython-39\torch\bin\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.7986453Z copying build\lib.win-amd64-cpython-39\torch\bin\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8042542Z copying build\lib.win-amd64-cpython-39\torch\bin\FileStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8052368Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooAsyncTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8071063Z copying build\lib.win-amd64-cpython-39\torch\bin\ProcessGroupGlooTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8081170Z copying build\lib.win-amd64-cpython-39\torch\bin\protoc.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8109635Z copying build\lib.win-amd64-cpython-39\torch\bin\TCPStoreTest.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8119003Z copying build\lib.win-amd64-cpython-39\torch\bin\test_api.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8198593Z copying build\lib.win-amd64-cpython-39\torch\bin\test_jit.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8248992Z copying build\lib.win-amd64-cpython-39\torch\bin\test_lazy.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8275801Z copying build\lib.win-amd64-cpython-39\torch\bin\test_nativert.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8305504Z copying build\lib.win-amd64-cpython-39\torch\bin\test_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8362106Z copying build\lib.win-amd64-cpython-39\torch\bin\tutorial_tensorexpr.exe -> build\bdist.win-amd64\wheel\.\torch\bin 2025-07-17T08:10:17.8369369Z creating build\bdist.win-amd64\wheel\torch\compiler 2025-07-17T08:10:17.8382345Z copying build\lib.win-amd64-cpython-39\torch\compiler\config.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-17T08:10:17.8387823Z copying build\lib.win-amd64-cpython-39\torch\compiler\_cache.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-17T08:10:17.8392681Z copying build\lib.win-amd64-cpython-39\torch\compiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\compiler 2025-07-17T08:10:17.8398537Z creating build\bdist.win-amd64\wheel\torch\contrib 2025-07-17T08:10:17.8401728Z copying build\lib.win-amd64-cpython-39\torch\contrib\_tensorboard_vis.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-07-17T08:10:17.8407199Z copying build\lib.win-amd64-cpython-39\torch\contrib\__init__.py -> build\bdist.win-amd64\wheel\.\torch\contrib 2025-07-17T08:10:17.8411593Z creating build\bdist.win-amd64\wheel\torch\cpu 2025-07-17T08:10:17.8414905Z creating build\bdist.win-amd64\wheel\torch\cpu\amp 2025-07-17T08:10:17.8418072Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-17T08:10:17.8423398Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-17T08:10:17.8428519Z copying build\lib.win-amd64-cpython-39\torch\cpu\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu\amp 2025-07-17T08:10:17.8433440Z copying build\lib.win-amd64-cpython-39\torch\cpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cpu 2025-07-17T08:10:17.8439251Z creating build\bdist.win-amd64\wheel\torch\csrc 2025-07-17T08:10:17.8442181Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor 2025-07-17T08:10:17.8445257Z creating build\bdist.win-amd64\wheel\torch\csrc\inductor\aoti_runtime 2025-07-17T08:10:17.8448444Z copying build\lib.win-amd64-cpython-39\torch\csrc\inductor\aoti_runtime\model.h -> build\bdist.win-amd64\wheel\.\torch\csrc\inductor\aoti_runtime 2025-07-17T08:10:17.8453976Z creating build\bdist.win-amd64\wheel\torch\cuda 2025-07-17T08:10:17.8457163Z creating build\bdist.win-amd64\wheel\torch\cuda\amp 2025-07-17T08:10:17.8460753Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\autocast_mode.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-17T08:10:17.8465647Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\common.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-17T08:10:17.8470496Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-17T08:10:17.8475919Z copying build\lib.win-amd64-cpython-39\torch\cuda\amp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda\amp 2025-07-17T08:10:17.8480759Z copying build\lib.win-amd64-cpython-39\torch\cuda\comm.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8485633Z copying build\lib.win-amd64-cpython-39\torch\cuda\error.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8489792Z copying build\lib.win-amd64-cpython-39\torch\cuda\gds.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8495037Z copying build\lib.win-amd64-cpython-39\torch\cuda\graphs.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8500605Z copying build\lib.win-amd64-cpython-39\torch\cuda\jiterator.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8515871Z copying build\lib.win-amd64-cpython-39\torch\cuda\memory.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8521428Z copying build\lib.win-amd64-cpython-39\torch\cuda\nccl.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8526561Z copying build\lib.win-amd64-cpython-39\torch\cuda\nvtx.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8531730Z copying build\lib.win-amd64-cpython-39\torch\cuda\profiler.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8537244Z copying build\lib.win-amd64-cpython-39\torch\cuda\random.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8542309Z copying build\lib.win-amd64-cpython-39\torch\cuda\sparse.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8547158Z copying build\lib.win-amd64-cpython-39\torch\cuda\streams.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8552250Z copying build\lib.win-amd64-cpython-39\torch\cuda\tunable.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8557784Z copying build\lib.win-amd64-cpython-39\torch\cuda\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8563069Z copying build\lib.win-amd64-cpython-39\torch\cuda\_memory_viz.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8568792Z copying build\lib.win-amd64-cpython-39\torch\cuda\_pin_memory_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8574122Z copying build\lib.win-amd64-cpython-39\torch\cuda\_sanitizer.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8579777Z copying build\lib.win-amd64-cpython-39\torch\cuda\_utils.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8585135Z copying build\lib.win-amd64-cpython-39\torch\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\cuda 2025-07-17T08:10:17.8591686Z creating build\bdist.win-amd64\wheel\torch\distributed 2025-07-17T08:10:17.8595012Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms 2025-07-17T08:10:17.8598306Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\ddp_comm_hooks 2025-07-17T08:10:17.8601608Z 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-07-17T08:10:17.8607513Z 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-07-17T08:10:17.8612866Z 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-07-17T08:10:17.8628361Z 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-07-17T08:10:17.8633648Z 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-07-17T08:10:17.8639692Z 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-07-17T08:10:17.8671552Z 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-07-17T08:10:17.8672897Z 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-07-17T08:10:17.8674214Z 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-07-17T08:10:17.8675338Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\join.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-07-17T08:10:17.8677201Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\model_averaging 2025-07-17T08:10:17.8678257Z 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-07-17T08:10:17.8683577Z 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-07-17T08:10:17.8694496Z 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-07-17T08:10:17.8709191Z 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-07-17T08:10:17.8713427Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_checkpoint 2025-07-17T08:10:17.8726915Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\checkpoint_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-07-17T08:10:17.8732405Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_checkpoint 2025-07-17T08:10:17.8737073Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_comm_hooks 2025-07-17T08:10:17.8741184Z 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-07-17T08:10:17.8746827Z 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-07-17T08:10:17.8753034Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_optimizer_overlap 2025-07-17T08:10:17.8756352Z 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-07-17T08:10:17.8762133Z 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-07-17T08:10:17.8767398Z creating build\bdist.win-amd64\wheel\torch\distributed\algorithms\_quantization 2025-07-17T08:10:17.8771267Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\quantization.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-07-17T08:10:17.8776577Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\_quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms\_quantization 2025-07-17T08:10:17.8781911Z copying build\lib.win-amd64-cpython-39\torch\distributed\algorithms\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\algorithms 2025-07-17T08:10:17.8785761Z copying build\lib.win-amd64-cpython-39\torch\distributed\argparse_util.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.8791025Z creating build\bdist.win-amd64\wheel\torch\distributed\autograd 2025-07-17T08:10:17.8794224Z copying build\lib.win-amd64-cpython-39\torch\distributed\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\autograd 2025-07-17T08:10:17.8805035Z copying build\lib.win-amd64-cpython-39\torch\distributed\c10d_logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.8819793Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint 2025-07-17T08:10:17.8823045Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8828287Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\default_planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8834427Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8839831Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\format_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8854301Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\hf_storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8859559Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logger.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8865229Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8870230Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8910513Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8915946Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8921666Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\planner_helpers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8927157Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\resharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8932468Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8937480Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\stateful.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8942592Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8954691Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_loader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8960397Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\state_dict_saver.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8966243Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\storage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8971349Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8977056Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8982438Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_process_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8987953Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_async_thread_executor.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.8993419Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9008654Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_consolidate_hf_safetensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9014615Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_save_plans.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9020075Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_dedup_tensors.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9025428Z creating build\bdist.win-amd64\wheel\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9028667Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\barriers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9033994Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\builder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9039121Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpointer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9045136Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_process.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9061105Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_reader.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9067038Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\checkpoint_writer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9079168Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\config.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9084749Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\staging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9090270Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9095386Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9100466Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint\_experimental 2025-07-17T08:10:17.9105582Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_extension.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9111036Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_fsspec_filesystem.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9116241Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_hf_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9121587Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_nested_dict.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9126664Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_pg_transport.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9141084Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_sharded_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9146142Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_state_dict_stager.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9151293Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_storage_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9156356Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_traverse.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9161507Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\_version.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9166432Z copying build\lib.win-amd64-cpython-39\torch\distributed\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\checkpoint 2025-07-17T08:10:17.9171666Z copying build\lib.win-amd64-cpython-39\torch\distributed\collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.9177039Z copying build\lib.win-amd64-cpython-39\torch\distributed\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.9182330Z copying build\lib.win-amd64-cpython-39\torch\distributed\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.9188438Z copying build\lib.win-amd64-cpython-39\torch\distributed\distributed_c10d.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.9196108Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic 2025-07-17T08:10:17.9199240Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent 2025-07-17T08:10:17.9202369Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\agent\server 2025-07-17T08:10:17.9239285Z 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-07-17T08:10:17.9245044Z 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-07-17T08:10:17.9250163Z 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-07-17T08:10:17.9255751Z 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-07-17T08:10:17.9260830Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\agent\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\agent 2025-07-17T08:10:17.9265098Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\control_plane.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-07-17T08:10:17.9270405Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\events 2025-07-17T08:10:17.9273541Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-17T08:10:17.9278889Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-17T08:10:17.9283742Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\events\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\events 2025-07-17T08:10:17.9288990Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\metrics 2025-07-17T08:10:17.9292274Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-07-17T08:10:17.9297388Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\metrics\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\metrics 2025-07-17T08:10:17.9318126Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing 2025-07-17T08:10:17.9326451Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-17T08:10:17.9332576Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\errors 2025-07-17T08:10:17.9336105Z 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-07-17T08:10:17.9342093Z 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-07-17T08:10:17.9347364Z 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-07-17T08:10:17.9353278Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\redirects.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-17T08:10:17.9359384Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\multiprocessing\subprocess_handler 2025-07-17T08:10:17.9372457Z 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-07-17T08:10:17.9378349Z 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-07-17T08:10:17.9384244Z 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-07-17T08:10:17.9389575Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\tail_log.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-17T08:10:17.9395354Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\multiprocessing 2025-07-17T08:10:17.9401303Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9404658Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9410225Z 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-07-17T08:10:17.9415766Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\dynamic_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9432490Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9437855Z 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-07-17T08:10:17.9443434Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_server.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9449159Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\etcd_store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9454578Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9459729Z 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-07-17T08:10:17.9464899Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9470013Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\_etcd_stub.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9475492Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\rendezvous\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\rendezvous 2025-07-17T08:10:17.9480731Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\timer 2025-07-17T08:10:17.9483958Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-17T08:10:17.9489523Z 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-07-17T08:10:17.9494606Z 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-07-17T08:10:17.9500137Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\local_timer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-17T08:10:17.9515015Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\timer\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\timer 2025-07-17T08:10:17.9520186Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils 2025-07-17T08:10:17.9523340Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-17T08:10:17.9528610Z creating build\bdist.win-amd64\wheel\torch\distributed\elastic\utils\data 2025-07-17T08:10:17.9532168Z 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-07-17T08:10:17.9538152Z 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-07-17T08:10:17.9579228Z 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-07-17T08:10:17.9580382Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\distributed.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-17T08:10:17.9581478Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\logging.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-17T08:10:17.9582662Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\log_level.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-17T08:10:17.9585126Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\store.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-17T08:10:17.9586193Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic\utils 2025-07-17T08:10:17.9587788Z copying build\lib.win-amd64-cpython-39\torch\distributed\elastic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\elastic 2025-07-17T08:10:17.9593236Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp 2025-07-17T08:10:17.9596973Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9603142Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\fully_sharded_data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9608891Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\sharded_grad_scaler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9614781Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\wrap.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9620350Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9636466Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9649403Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_dynamo_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9654859Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_exec_order_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9661427Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_flat_param.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9676758Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_fsdp_extensions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9718939Z creating build\bdist.win-amd64\wheel\torch\distributed\fsdp\_fully_shard 2025-07-17T08:10:17.9719805Z 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-07-17T08:10:17.9720974Z 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-07-17T08:10:17.9722249Z 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-07-17T08:10:17.9724808Z 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-07-17T08:10:17.9725963Z 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-07-17T08:10:17.9727116Z 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-07-17T08:10:17.9737422Z 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-07-17T08:10:17.9743618Z 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-07-17T08:10:17.9749420Z 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-07-17T08:10:17.9754438Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_init_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9760277Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_limiter_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9765494Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_optim_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9772305Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9778583Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_shard_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9783940Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9789796Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_trace_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9795216Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_traversal_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9801383Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_unshard_param_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9818767Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\_wrap_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9821722Z copying build\lib.win-amd64-cpython-39\torch\distributed\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\fsdp 2025-07-17T08:10:17.9827054Z copying build\lib.win-amd64-cpython-39\torch\distributed\launch.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.9832585Z creating build\bdist.win-amd64\wheel\torch\distributed\launcher 2025-07-17T08:10:17.9836481Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-07-17T08:10:17.9842192Z copying build\lib.win-amd64-cpython-39\torch\distributed\launcher\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\launcher 2025-07-17T08:10:17.9846328Z copying build\lib.win-amd64-cpython-39\torch\distributed\logging_handlers.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:17.9852235Z creating build\bdist.win-amd64\wheel\torch\distributed\nn 2025-07-17T08:10:17.9855586Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\api 2025-07-17T08:10:17.9859050Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\remote_module.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-07-17T08:10:17.9864896Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\api\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\api 2025-07-17T08:10:17.9869063Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-07-17T08:10:17.9874450Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit 2025-07-17T08:10:17.9877656Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\instantiator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-07-17T08:10:17.9883139Z creating build\bdist.win-amd64\wheel\torch\distributed\nn\jit\templates 2025-07-17T08:10:17.9886651Z 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-07-17T08:10:17.9891846Z 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-07-17T08:10:17.9896046Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn\jit 2025-07-17T08:10:17.9899959Z copying build\lib.win-amd64-cpython-39\torch\distributed\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\nn 2025-07-17T08:10:17.9904944Z creating build\bdist.win-amd64\wheel\torch\distributed\optim 2025-07-17T08:10:17.9908169Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\apply_optimizer_in_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9913463Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adadelta.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9918694Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adagrad.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9934603Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adam.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9939970Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamax.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9945429Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_adamw.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9956591Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9962013Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_rprop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9967697Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\functional_sgd.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9973549Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\named_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9979565Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9985186Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\post_localSGD_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9990567Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:17.9996226Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:18.0002792Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\zero_redundancy_optimizer.pyi -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:18.0008208Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\_deprecation_warning.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:18.0013384Z copying build\lib.win-amd64-cpython-39\torch\distributed\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\optim 2025-07-17T08:10:18.0018688Z creating build\bdist.win-amd64\wheel\torch\distributed\pipelining 2025-07-17T08:10:18.0022289Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\microbatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0061919Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\schedules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0062980Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\stage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0064047Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_backward.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0065170Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_debug.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0067593Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_IR.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0074415Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_schedule_visualizer.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0080063Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_unflatten.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0086108Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0090158Z copying build\lib.win-amd64-cpython-39\torch\distributed\pipelining\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\pipelining 2025-07-17T08:10:18.0095079Z copying build\lib.win-amd64-cpython-39\torch\distributed\remote_device.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0100481Z copying build\lib.win-amd64-cpython-39\torch\distributed\rendezvous.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0110237Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc 2025-07-17T08:10:18.0113678Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0119347Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\backend_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0124656Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\constants.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0129528Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\functions.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0144681Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\internal.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0149742Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\options.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0154927Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\rref_proxy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0160203Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\server_process_global_profiler.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0169403Z creating build\bdist.win-amd64\wheel\torch\distributed\rpc\_testing 2025-07-17T08:10:18.0172766Z 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-07-17T08:10:18.0178312Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc\_testing 2025-07-17T08:10:18.0182988Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0192288Z copying build\lib.win-amd64-cpython-39\torch\distributed\rpc\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\rpc 2025-07-17T08:10:18.0197232Z copying build\lib.win-amd64-cpython-39\torch\distributed\run.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0203005Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor 2025-07-17T08:10:18.0206085Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\debug 2025-07-17T08:10:18.0209170Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_comm_mode.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-17T08:10:18.0214935Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_op_coverage.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-17T08:10:18.0219955Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\_visualize_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-17T08:10:18.0225092Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\debug\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\debug 2025-07-17T08:10:18.0239649Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\device_mesh.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0244789Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\experimental 2025-07-17T08:10:18.0248152Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_attention.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-17T08:10:18.0254314Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_func_map.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-17T08:10:18.0259466Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_register_sharding.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-17T08:10:18.0280582Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\_tp_transform.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-17T08:10:18.0286170Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\experimental 2025-07-17T08:10:18.0291181Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0294379Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0299311Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\ddp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0304245Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0309356Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\input_reshard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0318852Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\loss.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0324127Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\style.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0340382Z 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-07-17T08:10:18.0345098Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\parallel 2025-07-17T08:10:18.0349845Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0364895Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0370711Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_collective_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0376393Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0382535Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_dtensor_spec.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0388572Z creating build\bdist.win-amd64\wheel\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0390901Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0396506Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_common_rules.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0401935Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_conv_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0407355Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_einsum_strategy.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0423052Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0427308Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_math_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0437533Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_matrix_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0443777Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_pointwise_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0449822Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_random_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0455316Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0461404Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\_view_ops.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0498291Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor\_ops 2025-07-17T08:10:18.0503667Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_op_schema.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0509393Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_random.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0515180Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_redistribute.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0521396Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_sharding_prop.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0527505Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_shards_wrapper.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0551200Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_tp_conv.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0552172Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0553116Z copying build\lib.win-amd64-cpython-39\torch\distributed\tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\tensor 2025-07-17T08:10:18.0554020Z copying build\lib.win-amd64-cpython-39\torch\distributed\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0557196Z copying build\lib.win-amd64-cpython-39\torch\distributed\_checkpointable.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0563012Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable 2025-07-17T08:10:18.0650193Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\checkpoint_activation.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-17T08:10:18.0655427Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\contract.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-17T08:10:18.0660450Z creating build\bdist.win-amd64\wheel\torch\distributed\_composable\fsdp 2025-07-17T08:10:18.0663846Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\fully_shard.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-07-17T08:10:18.0668673Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\fsdp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable\fsdp 2025-07-17T08:10:18.0678663Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\replicate.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-17T08:10:18.0755904Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_composable 2025-07-17T08:10:18.0760731Z copying build\lib.win-amd64-cpython-39\torch\distributed\_composable_state.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0765781Z copying build\lib.win-amd64-cpython-39\torch\distributed\_dist2.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0770901Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0776803Z copying build\lib.win-amd64-cpython-39\torch\distributed\_functional_collectives_impl.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0782021Z copying build\lib.win-amd64-cpython-39\torch\distributed\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.0787779Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard 2025-07-17T08:10:18.0791254Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-17T08:10:18.0796544Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\checkpoint 2025-07-17T08:10:18.0799790Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\checkpoint\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard\checkpoint 2025-07-17T08:10:18.0810965Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\common_op_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-17T08:10:18.0816306Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\metadata.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-17T08:10:18.0821461Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\op_registry_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-17T08:10:18.0836527Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_optim 2025-07-17T08:10:18.0839791Z 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-07-17T08:10:18.0845018Z 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-07-17T08:10:18.0850345Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor 2025-07-17T08:10:18.0854095Z 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-07-17T08:10:18.0860744Z 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-07-17T08:10:18.0866135Z 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-07-17T08:10:18.0871399Z 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-07-17T08:10:18.0876480Z 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-07-17T08:10:18.0896206Z 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-07-17T08:10:18.0901513Z 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-07-17T08:10:18.0907014Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharded_tensor\_ops 2025-07-17T08:10:18.0910414Z 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-07-17T08:10:18.0915662Z 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-07-17T08:10:18.0921059Z 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-07-17T08:10:18.0926468Z 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-07-17T08:10:18.0936735Z 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-07-17T08:10:18.0952658Z 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-07-17T08:10:18.0958154Z 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-07-17T08:10:18.0963836Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\sharder.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-17T08:10:18.0969066Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_plan 2025-07-17T08:10:18.0972384Z 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-07-17T08:10:18.0984317Z 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-07-17T08:10:18.0989206Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec 2025-07-17T08:10:18.0992606Z 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-07-17T08:10:18.0997876Z 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-07-17T08:10:18.1003579Z creating build\bdist.win-amd64\wheel\torch\distributed\_shard\sharding_spec\chunk_sharding_spec_ops 2025-07-17T08:10:18.1017059Z 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-07-17T08:10:18.1022550Z 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-07-17T08:10:18.1028249Z 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-07-17T08:10:18.1042890Z 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-07-17T08:10:18.1046829Z 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-07-17T08:10:18.1052455Z 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-07-17T08:10:18.1057727Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-17T08:10:18.1097868Z copying build\lib.win-amd64-cpython-39\torch\distributed\_shard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_shard 2025-07-17T08:10:18.1103395Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharded_tensor 2025-07-17T08:10:18.1106300Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharded_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharded_tensor 2025-07-17T08:10:18.1111183Z creating build\bdist.win-amd64\wheel\torch\distributed\_sharding_spec 2025-07-17T08:10:18.1114485Z copying build\lib.win-amd64-cpython-39\torch\distributed\_sharding_spec\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_sharding_spec 2025-07-17T08:10:18.1119653Z copying build\lib.win-amd64-cpython-39\torch\distributed\_state_dict_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.1125619Z creating build\bdist.win-amd64\wheel\torch\distributed\_symmetric_memory 2025-07-17T08:10:18.1134354Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\_nvshmem_triton.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-07-17T08:10:18.1139673Z copying build\lib.win-amd64-cpython-39\torch\distributed\_symmetric_memory\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_symmetric_memory 2025-07-17T08:10:18.1145764Z creating build\bdist.win-amd64\wheel\torch\distributed\_tensor 2025-07-17T08:10:18.1149942Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\api.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-17T08:10:18.1163661Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\placement_types.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-17T08:10:18.1168500Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tensor 2025-07-17T08:10:18.1202221Z creating build\bdist.win-amd64\wheel\torch\distributed\_tools 2025-07-17T08:10:18.1205392Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1210971Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fake_collectives.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1216390Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\fsdp2_mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1221895Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\ilp_utils.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1237820Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\memory_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1242892Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mem_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1249262Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\mod_tracker.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1254254Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\runtime_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1260479Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_estimator.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1270620Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\sac_ilp.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1275828Z copying build\lib.win-amd64-cpython-39\torch\distributed\_tools\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed\_tools 2025-07-17T08:10:18.1280906Z copying build\lib.win-amd64-cpython-39\torch\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributed 2025-07-17T08:10:18.1287026Z creating build\bdist.win-amd64\wheel\torch\distributions 2025-07-17T08:10:18.1290281Z copying build\lib.win-amd64-cpython-39\torch\distributions\bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1295846Z copying build\lib.win-amd64-cpython-39\torch\distributions\beta.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1300971Z copying build\lib.win-amd64-cpython-39\torch\distributions\binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1306280Z copying build\lib.win-amd64-cpython-39\torch\distributions\categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1320818Z copying build\lib.win-amd64-cpython-39\torch\distributions\cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1326086Z copying build\lib.win-amd64-cpython-39\torch\distributions\chi2.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1331286Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraints.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1336995Z copying build\lib.win-amd64-cpython-39\torch\distributions\constraint_registry.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1342307Z copying build\lib.win-amd64-cpython-39\torch\distributions\continuous_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1348118Z copying build\lib.win-amd64-cpython-39\torch\distributions\dirichlet.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1353318Z copying build\lib.win-amd64-cpython-39\torch\distributions\distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1358615Z copying build\lib.win-amd64-cpython-39\torch\distributions\exponential.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1363859Z copying build\lib.win-amd64-cpython-39\torch\distributions\exp_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1369050Z copying build\lib.win-amd64-cpython-39\torch\distributions\fishersnedecor.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1374623Z copying build\lib.win-amd64-cpython-39\torch\distributions\gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1379876Z copying build\lib.win-amd64-cpython-39\torch\distributions\generalized_pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1385069Z copying build\lib.win-amd64-cpython-39\torch\distributions\geometric.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1390312Z copying build\lib.win-amd64-cpython-39\torch\distributions\gumbel.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1395465Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_cauchy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1400614Z copying build\lib.win-amd64-cpython-39\torch\distributions\half_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1405856Z copying build\lib.win-amd64-cpython-39\torch\distributions\independent.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1411035Z copying build\lib.win-amd64-cpython-39\torch\distributions\inverse_gamma.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1426384Z copying build\lib.win-amd64-cpython-39\torch\distributions\kl.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1432248Z copying build\lib.win-amd64-cpython-39\torch\distributions\kumaraswamy.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1437479Z copying build\lib.win-amd64-cpython-39\torch\distributions\laplace.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1442646Z copying build\lib.win-amd64-cpython-39\torch\distributions\lkj_cholesky.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1448361Z copying build\lib.win-amd64-cpython-39\torch\distributions\logistic_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1454502Z copying build\lib.win-amd64-cpython-39\torch\distributions\log_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1460047Z copying build\lib.win-amd64-cpython-39\torch\distributions\lowrank_multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1465859Z copying build\lib.win-amd64-cpython-39\torch\distributions\mixture_same_family.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1471286Z copying build\lib.win-amd64-cpython-39\torch\distributions\multinomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1504843Z copying build\lib.win-amd64-cpython-39\torch\distributions\multivariate_normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1520360Z copying build\lib.win-amd64-cpython-39\torch\distributions\negative_binomial.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1525827Z copying build\lib.win-amd64-cpython-39\torch\distributions\normal.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1531220Z copying build\lib.win-amd64-cpython-39\torch\distributions\one_hot_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1569422Z copying build\lib.win-amd64-cpython-39\torch\distributions\pareto.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1570325Z copying build\lib.win-amd64-cpython-39\torch\distributions\poisson.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1571271Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_bernoulli.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1572418Z copying build\lib.win-amd64-cpython-39\torch\distributions\relaxed_categorical.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1573371Z copying build\lib.win-amd64-cpython-39\torch\distributions\studentT.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1575766Z copying build\lib.win-amd64-cpython-39\torch\distributions\transformed_distribution.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1576952Z copying build\lib.win-amd64-cpython-39\torch\distributions\transforms.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1583234Z copying build\lib.win-amd64-cpython-39\torch\distributions\uniform.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1588487Z copying build\lib.win-amd64-cpython-39\torch\distributions\utils.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1598459Z copying build\lib.win-amd64-cpython-39\torch\distributions\von_mises.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1613957Z copying build\lib.win-amd64-cpython-39\torch\distributions\weibull.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1620558Z copying build\lib.win-amd64-cpython-39\torch\distributions\wishart.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1624611Z copying build\lib.win-amd64-cpython-39\torch\distributions\__init__.py -> build\bdist.win-amd64\wheel\.\torch\distributions 2025-07-17T08:10:18.1630017Z creating build\bdist.win-amd64\wheel\torch\export 2025-07-17T08:10:18.1633213Z copying build\lib.win-amd64-cpython-39\torch\export\custom_obj.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1638366Z copying build\lib.win-amd64-cpython-39\torch\export\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1654197Z copying build\lib.win-amd64-cpython-39\torch\export\decomp_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1659545Z copying build\lib.win-amd64-cpython-39\torch\export\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1675477Z creating build\bdist.win-amd64\wheel\torch\export\experimental 2025-07-17T08:10:18.1678682Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\_utils.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-07-17T08:10:18.1683888Z copying build\lib.win-amd64-cpython-39\torch\export\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\experimental 2025-07-17T08:10:18.1689410Z copying build\lib.win-amd64-cpython-39\torch\export\exported_program.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1700482Z copying build\lib.win-amd64-cpython-39\torch\export\graph_signature.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1706347Z creating build\bdist.win-amd64\wheel\torch\export\passes 2025-07-17T08:10:18.1709519Z copying build\lib.win-amd64-cpython-39\torch\export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\passes 2025-07-17T08:10:18.1715134Z creating build\bdist.win-amd64\wheel\torch\export\pt2_archive 2025-07-17T08:10:18.1718422Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\constants.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-17T08:10:18.1723677Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-17T08:10:18.1729511Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\_package_weights.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-17T08:10:18.1734835Z copying build\lib.win-amd64-cpython-39\torch\export\pt2_archive\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export\pt2_archive 2025-07-17T08:10:18.1750282Z copying build\lib.win-amd64-cpython-39\torch\export\unflatten.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1756928Z copying build\lib.win-amd64-cpython-39\torch\export\_draft_export.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1762750Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_auto_functionalized_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1768032Z copying build\lib.win-amd64-cpython-39\torch\export\_remove_effect_tokens_pass.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1773566Z copying build\lib.win-amd64-cpython-39\torch\export\_safeguard.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1778822Z copying build\lib.win-amd64-cpython-39\torch\export\_swap.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1784410Z copying build\lib.win-amd64-cpython-39\torch\export\_trace.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1790662Z copying build\lib.win-amd64-cpython-39\torch\export\_tree_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1796438Z copying build\lib.win-amd64-cpython-39\torch\export\_unlift.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1802201Z copying build\lib.win-amd64-cpython-39\torch\export\_wrapper_utils.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1807299Z copying build\lib.win-amd64-cpython-39\torch\export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\export 2025-07-17T08:10:18.1813290Z creating build\bdist.win-amd64\wheel\torch\fft 2025-07-17T08:10:18.1816454Z copying build\lib.win-amd64-cpython-39\torch\fft\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fft 2025-07-17T08:10:18.1822660Z creating build\bdist.win-amd64\wheel\torch\func 2025-07-17T08:10:18.1825789Z copying build\lib.win-amd64-cpython-39\torch\func\__init__.py -> build\bdist.win-amd64\wheel\.\torch\func 2025-07-17T08:10:18.1830993Z copying build\lib.win-amd64-cpython-39\torch\functional.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:18.1837639Z creating build\bdist.win-amd64\wheel\torch\futures 2025-07-17T08:10:18.1840801Z copying build\lib.win-amd64-cpython-39\torch\futures\__init__.py -> build\bdist.win-amd64\wheel\.\torch\futures 2025-07-17T08:10:18.1846403Z creating build\bdist.win-amd64\wheel\torch\fx 2025-07-17T08:10:18.1850269Z copying build\lib.win-amd64-cpython-39\torch\fx\annotate.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.1857541Z copying build\lib.win-amd64-cpython-39\torch\fx\config.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.1864917Z creating build\bdist.win-amd64\wheel\torch\fx\experimental 2025-07-17T08:10:18.1869368Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\accelerator_partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.1876054Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\const_fold.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.1881435Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\debug.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.1896005Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\graph_gradual_typechecker.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.1901461Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\merge_matmul.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.1906749Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\meta_tracer.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.1912358Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\migrate_gradual_types 2025-07-17T08:10:18.1915826Z 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-07-17T08:10:18.1921459Z 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-07-17T08:10:18.1927601Z 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-07-17T08:10:18.2012152Z 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-07-17T08:10:18.2035970Z 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-07-17T08:10:18.2042095Z 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-07-17T08:10:18.2047152Z 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-07-17T08:10:18.2052823Z 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-07-17T08:10:18.2056952Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\normalize.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2062214Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\optimization.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2067974Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\partitioner_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2073450Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\proxy_tensor.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2079891Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\recording.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2085808Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\refinement_types.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2090824Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2096103Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\schema_type_annotation.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2101369Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\symbolic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2110131Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\sym_node.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2116376Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification 2025-07-17T08:10:18.2119842Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\core.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2124962Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\dispatch.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2129846Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\match.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2135090Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\more.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2140436Z creating build\bdist.win-amd64\wheel\torch\fx\experimental\unification\multipledispatch 2025-07-17T08:10:18.2233663Z 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-07-17T08:10:18.2238396Z 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-07-17T08:10:18.2243866Z 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-07-17T08:10:18.2249208Z 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-07-17T08:10:18.2254765Z 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-07-17T08:10:18.2383725Z 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-07-17T08:10:18.2387504Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\unification_tools.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2392680Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2397671Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\variable.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2402988Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unification\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental\unification 2025-07-17T08:10:18.2407982Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\unify_refinements.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.2413240Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\validator.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.4382275Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_backward_state.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.4388264Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_config.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.4393284Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_constant_symnode.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.4398472Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\_dynamism.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.4404172Z copying build\lib.win-amd64-cpython-39\torch\fx\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\experimental 2025-07-17T08:10:18.4409435Z copying build\lib.win-amd64-cpython-39\torch\fx\graph.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4416896Z copying build\lib.win-amd64-cpython-39\torch\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4438172Z copying build\lib.win-amd64-cpython-39\torch\fx\immutable_collections.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4440529Z copying build\lib.win-amd64-cpython-39\torch\fx\interpreter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4446635Z copying build\lib.win-amd64-cpython-39\torch\fx\node.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4452477Z copying build\lib.win-amd64-cpython-39\torch\fx\operator_schemas.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4459473Z creating build\bdist.win-amd64\wheel\torch\fx\passes 2025-07-17T08:10:18.4463074Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\annotate_getitem_nodes.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4468721Z creating build\bdist.win-amd64\wheel\torch\fx\passes\backends 2025-07-17T08:10:18.4472065Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-07-17T08:10:18.4477585Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\backends 2025-07-17T08:10:18.4482104Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect 2025-07-17T08:10:18.4485710Z creating build\bdist.win-amd64\wheel\torch\fx\passes\dialect\common 2025-07-17T08:10:18.4489044Z 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-07-17T08:10:18.4494862Z 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-07-17T08:10:18.4499268Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\dialect\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\dialect 2025-07-17T08:10:18.4503652Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\fake_tensor_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4509138Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_drawer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4519979Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_manipulation.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4525481Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\graph_transform_observer.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4531135Z creating build\bdist.win-amd64\wheel\torch\fx\passes\infra 2025-07-17T08:10:18.4534460Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\partitioner.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-17T08:10:18.4540622Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-17T08:10:18.4546190Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-17T08:10:18.4551454Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\infra 2025-07-17T08:10:18.4562701Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\net_min_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4568834Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\operator_support.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4574288Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\param_fetch.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4579928Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\pass_manager.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4585012Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4591108Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\runtime_assert.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4597288Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\shape_prop.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4602823Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\splitter_base.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4609148Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_module.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4615372Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\split_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4621081Z creating build\bdist.win-amd64\wheel\torch\fx\passes\tests 2025-07-17T08:10:18.4624689Z 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-07-17T08:10:18.4629956Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\tests 2025-07-17T08:10:18.4634281Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\tools_common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4640142Z creating build\bdist.win-amd64\wheel\torch\fx\passes\utils 2025-07-17T08:10:18.4647661Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-17T08:10:18.4653511Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\fuser_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-17T08:10:18.4658941Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\matcher_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-17T08:10:18.4664904Z 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-07-17T08:10:18.4675765Z 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-07-17T08:10:18.4681180Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes\utils 2025-07-17T08:10:18.4686096Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\_tensorify_python_scalars.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4691852Z copying build\lib.win-amd64-cpython-39\torch\fx\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx\passes 2025-07-17T08:10:18.4697033Z copying build\lib.win-amd64-cpython-39\torch\fx\proxy.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4702855Z copying build\lib.win-amd64-cpython-39\torch\fx\subgraph_rewriter.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4709078Z copying build\lib.win-amd64-cpython-39\torch\fx\tensor_type.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4714193Z copying build\lib.win-amd64-cpython-39\torch\fx\traceback.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4719937Z copying build\lib.win-amd64-cpython-39\torch\fx\_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4724992Z copying build\lib.win-amd64-cpython-39\torch\fx\_graph_pickler.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4730778Z copying build\lib.win-amd64-cpython-39\torch\fx\_lazy_graph_module.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4736270Z copying build\lib.win-amd64-cpython-39\torch\fx\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4742080Z copying build\lib.win-amd64-cpython-39\torch\fx\_symbolic_trace.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4748008Z copying build\lib.win-amd64-cpython-39\torch\fx\_utils.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4753510Z copying build\lib.win-amd64-cpython-39\torch\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\fx 2025-07-17T08:10:18.4758982Z copying build\lib.win-amd64-cpython-39\torch\hub.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:18.4765212Z creating build\bdist.win-amd64\wheel\torch\include 2025-07-17T08:10:18.4768422Z copying build\lib.win-amd64-cpython-39\torch\include\advisor-annotate.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:18.4774576Z creating build\bdist.win-amd64\wheel\torch\include\asmjit 2025-07-17T08:10:18.4777711Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\a64.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-17T08:10:18.4783038Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\arm 2025-07-17T08:10:18.4786193Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4791525Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4796836Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4802036Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4813458Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4820794Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4861604Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\a64operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4862576Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armglobals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4863550Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armoperand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4864611Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm\armutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\arm 2025-07-17T08:10:18.4865528Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\arm.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-17T08:10:18.4867837Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-begin.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-17T08:10:18.4868871Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit-scope-end.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-17T08:10:18.4873685Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\asmjit.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-17T08:10:18.4879663Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\core 2025-07-17T08:10:18.4883641Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\api-config.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4889610Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archcommons.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4900694Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\archtraits.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4906175Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4915926Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4921908Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codebuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4927166Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\codeholder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4933666Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4939421Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\compilerdefs.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4944249Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\constpool.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4949328Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4955458Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4961251Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\environment.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4966908Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\errorhandler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4989943Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\formatter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.4995344Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\func.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5001479Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5006656Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\inst.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5012509Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitallocator.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5022826Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\jitruntime.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5028029Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\logger.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5033190Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5040103Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\osutils.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5045353Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\string.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5050588Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\support.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5056932Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\target.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5066242Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\type.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5071807Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\virtmem.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5077283Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zone.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5083200Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonehash.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5088279Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonelist.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5093603Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestack.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5104752Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonestring.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5149006Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonetree.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5150018Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core\zonevector.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\core 2025-07-17T08:10:18.5150930Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\core.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-17T08:10:18.5151686Z creating build\bdist.win-amd64\wheel\torch\include\asmjit\x86 2025-07-17T08:10:18.5152404Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86assembler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-17T08:10:18.5154794Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86builder.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-17T08:10:18.5155783Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86compiler.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-17T08:10:18.5156746Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86emitter.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-17T08:10:18.5167371Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86globals.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-17T08:10:18.5173688Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86instdb.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-17T08:10:18.5179484Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86\x86operand.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit\x86 2025-07-17T08:10:18.5185642Z copying build\lib.win-amd64-cpython-39\torch\include\asmjit\x86.h -> build\bdist.win-amd64\wheel\.\torch\include\asmjit 2025-07-17T08:10:18.5192421Z creating build\bdist.win-amd64\wheel\torch\include\ATen 2025-07-17T08:10:18.5195721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\AccumulateType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5201220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5206161Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ATen.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5211314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\autocast_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5217454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5228116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5232832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\BlasBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5238200Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CachedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5243348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ceil_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5248706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\code_template.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5253856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CollapseDims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5259125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5265681Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5271809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5277152Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5283082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5288603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5295025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5300823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5310520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5315680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5322741Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core 2025-07-17T08:10:18.5326012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\alias_info.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5331233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5336813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5341743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATenOpList.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5350720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_fwd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5360473Z 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-07-17T08:10:18.5367676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ATen_pch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5371775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5376938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5382517Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing 2025-07-17T08:10:18.5386765Z 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-07-17T08:10:18.5391870Z 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-07-17T08:10:18.5402616Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\boxing\impl 2025-07-17T08:10:18.5405856Z 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-07-17T08:10:18.5411578Z 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-07-17T08:10:18.5417563Z 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-07-17T08:10:18.5423094Z 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-07-17T08:10:18.5435238Z 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-07-17T08:10:18.5444980Z 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-07-17T08:10:18.5453869Z 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-07-17T08:10:18.5459355Z 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-07-17T08:10:18.5464854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\builtin_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5482579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5483752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\CheckMemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5486491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\class_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5492017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5497699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5503322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DeprecatedTypePropertiesRegistry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5508699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5514411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dict_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5520177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5525548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5544970Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\dispatch 2025-07-17T08:10:18.5549102Z 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-07-17T08:10:18.5554540Z 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-07-17T08:10:18.5574980Z 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-07-17T08:10:18.5576261Z 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-07-17T08:10:18.5577413Z 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-07-17T08:10:18.5581764Z 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-07-17T08:10:18.5587301Z 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-07-17T08:10:18.5593272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\DistributionsHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5602501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\dynamic_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5607757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_tag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5612937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\enum_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5618461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5623542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5628620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5634273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\function_schema.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5640095Z 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-07-17T08:10:18.5645909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5651330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\GeneratorForPrivateuseone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5657457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\grad_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5667294Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5672941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\IListRef_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5678269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\interned_strings.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5683687Z 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-07-17T08:10:18.5689139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5695266Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5701635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ivalue_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5706920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\jit_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5713517Z 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-07-17T08:10:18.5719481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\LegacyTypeDispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5730269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5736531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\List_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5741929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\MT19937RNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5753253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5758005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\NestedIntSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5763676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\operator_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5769242Z creating build\bdist.win-amd64\wheel\torch\include\ATen\core\op_registration 2025-07-17T08:10:18.5772836Z 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-07-17T08:10:18.5778208Z 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-07-17T08:10:18.5783551Z 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-07-17T08:10:18.5789004Z 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-07-17T08:10:18.5801324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PhiloxRNGEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5806922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonFallbackKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5813010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\PythonOpRegistrationTrampoline.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5818586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\qualified_name.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5832524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\QuantizerBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5837800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5843124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Reduction.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5848391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\rref_interface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5853609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5858448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5863527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5869476Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\symbol.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5875188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5880810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5886317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5892350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TensorBody.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5913438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TorchDispatchUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5918575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\TransformationHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5924086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5929143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_factory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5934653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\type_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5940009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5945267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\UnsafeFromTH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5950841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\VariableHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5956274Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Variadic.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5961677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\core\Vitals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\core 2025-07-17T08:10:18.5967313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpp_custom_type_hack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.5973213Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu 2025-07-17T08:10:18.5976523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\FlushDenormal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-17T08:10:18.5986258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-17T08:10:18.5991959Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec 2025-07-17T08:10:18.5995358Z 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-07-17T08:10:18.6001737Z 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-07-17T08:10:18.6006172Z 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-07-17T08:10:18.6012197Z 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-07-17T08:10:18.6025125Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\sve 2025-07-17T08:10:18.6027408Z 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-07-17T08:10:18.6033496Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\sve\vec_bfloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\sve 2025-07-17T08:10:18.6039197Z 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-07-17T08:10:18.6044613Z 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-07-17T08:10:18.6055877Z 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-07-17T08:10:18.6065665Z 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-07-17T08:10:18.6071499Z 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-07-17T08:10:18.6077120Z 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-07-17T08:10:18.6082571Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec128 2025-07-17T08:10:18.6086039Z 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-07-17T08:10:18.6091194Z 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-07-17T08:10:18.6096875Z 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-07-17T08:10:18.6102297Z 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-07-17T08:10:18.6112777Z 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-07-17T08:10:18.6118798Z 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-07-17T08:10:18.6129361Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256 2025-07-17T08:10:18.6133288Z 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-07-17T08:10:18.6138586Z 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-07-17T08:10:18.6144788Z 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-07-17T08:10:18.6149161Z 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-07-17T08:10:18.6159607Z 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-07-17T08:10:18.6165227Z 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-07-17T08:10:18.6171088Z 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-07-17T08:10:18.6177051Z 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-07-17T08:10:18.6182383Z 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-07-17T08:10:18.6187812Z 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-07-17T08:10:18.6193759Z 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-07-17T08:10:18.6199217Z 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-07-17T08:10:18.6219188Z 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-07-17T08:10:18.6224600Z 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-07-17T08:10:18.6231500Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\vsx 2025-07-17T08:10:18.6234746Z 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-07-17T08:10:18.6240236Z 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-07-17T08:10:18.6246535Z 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-07-17T08:10:18.6255599Z 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-07-17T08:10:18.6261565Z 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-07-17T08:10:18.6267557Z 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-07-17T08:10:18.6273543Z 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-07-17T08:10:18.6279325Z 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-07-17T08:10:18.6284722Z 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-07-17T08:10:18.6290482Z 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-07-17T08:10:18.6296161Z 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-07-17T08:10:18.6302246Z 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-07-17T08:10:18.6308275Z 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-07-17T08:10:18.6315485Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec256\zarch 2025-07-17T08:10:18.6317905Z 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-07-17T08:10:18.6324818Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:10:18.6328298Z 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-07-17T08:10:18.6333901Z 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-07-17T08:10:18.6340762Z 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-07-17T08:10:18.6346753Z 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-07-17T08:10:18.6356880Z 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-07-17T08:10:18.6362337Z 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-07-17T08:10:18.6368234Z 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-07-17T08:10:18.6374460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec512\vec512_float8.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec\vec512 2025-07-17T08:10:18.6380835Z 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-07-17T08:10:18.6387231Z 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-07-17T08:10:18.6393145Z 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-07-17T08:10:18.6399812Z 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-07-17T08:10:18.6405998Z 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-07-17T08:10:18.6411419Z 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-07-17T08:10:18.6417216Z 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-07-17T08:10:18.6422244Z 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-07-17T08:10:18.6427556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vec\vec_quant.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu\vec 2025-07-17T08:10:18.6433042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cpu\vml.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cpu 2025-07-17T08:10:18.6438670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUApplyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.6444129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFixedAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.6449796Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.6455645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.6461513Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.6467467Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda 2025-07-17T08:10:18.6471732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ApplyGridUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6491569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\AsmUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6497057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ATenCUDAGeneral.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6502151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Atomic.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6508179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6518180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub-RadixSortPairs.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6523913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6529776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6535478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\cub_definitions.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6541233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAApplyUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6549727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDABlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6553099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6558501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6563697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAContextLight.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6569227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADataType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6575097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDADevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6580040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6593046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6598370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraph.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6608770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAGraphsUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6614091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6624826Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6648433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDASparseDescriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6654401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDATensorMethods.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6659315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\CUDAUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6670156Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\detail 2025-07-17T08:10:18.6673430Z 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-07-17T08:10:18.6678875Z 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-07-17T08:10:18.6684365Z 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-07-17T08:10:18.6689979Z 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-07-17T08:10:18.6699643Z 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-07-17T08:10:18.6709169Z 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-07-17T08:10:18.6714258Z 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-07-17T08:10:18.6720478Z 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-07-17T08:10:18.6725188Z 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-07-17T08:10:18.6730426Z 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-07-17T08:10:18.6735841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\DeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6741239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6746717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6752168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6757325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\jiterator_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6767386Z 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-07-17T08:10:18.6772817Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\NumericLimits.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6785697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PeerToPeerAccess.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6790801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxCudaState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6795886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PhiloxUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6801012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6826731Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ScanUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6832036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\Sleep.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6837272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cuda\ThrustAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cuda 2025-07-17T08:10:18.6842829Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cuda\tunable 2025-07-17T08:10:18.6850809Z 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-07-17T08:10:18.6856803Z 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-07-17T08:10:18.6862346Z 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-07-17T08:10:18.6867667Z 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-07-17T08:10:18.6877741Z 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-07-17T08:10:18.6883565Z 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-07-17T08:10:18.6889332Z 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-07-17T08:10:18.6895104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.6904049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\CUDAFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.6910516Z creating build\bdist.win-amd64\wheel\torch\include\ATen\cudnn 2025-07-17T08:10:18.6913919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\cudnn-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-17T08:10:18.6923588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-17T08:10:18.6929998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-17T08:10:18.6934004Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Handles.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-17T08:10:18.6939104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-17T08:10:18.6950012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\cudnn\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\cudnn 2025-07-17T08:10:18.6955478Z creating build\bdist.win-amd64\wheel\torch\include\ATen\detail 2025-07-17T08:10:18.6958988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\AcceleratorHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.6964582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\CUDAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.6970400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\FunctionTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.6981307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HIPHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.6987865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\HPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.6993316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\IPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.6998788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MAIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.7003172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MPSHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.7008606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\MTIAHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.7014296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\PrivateUse1HooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.7020026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\detail\XPUHooksInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\detail 2025-07-17T08:10:18.7025290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7030463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7035776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7041360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7046383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7051602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7057739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Dispatch_v2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7064248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\div_rtn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7087590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DLConvertor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7088489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\dlpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7089375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\DynamicLibrary.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7091620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7096981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandBase.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7102516Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ExpandUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7108448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Formatting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7113663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalStorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7119168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FunctionalTensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7125143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Functions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7131899Z creating build\bdist.win-amd64\wheel\torch\include\ATen\functorch 2025-07-17T08:10:18.7135361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\ADInterpreters.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7140639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7145934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7155912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchingMetaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7161088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\BatchRulesHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7166929Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\DynamicLayer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7172744Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\FunctionalizeInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7177792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Interpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7183165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7219097Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7223965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\PlumbingHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7229406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\TensorWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7235113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\functorch\VmapInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\functorch 2025-07-17T08:10:18.7240512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\FuncTorchTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7252322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7258002Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip 2025-07-17T08:10:18.7261245Z creating build\bdist.win-amd64\wheel\torch\include\ATen\hip\impl 2025-07-17T08:10:18.7264715Z 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-07-17T08:10:18.7270388Z 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-07-17T08:10:18.7275652Z 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-07-17T08:10:18.7285701Z 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-07-17T08:10:18.7291142Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InferSize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7296688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\InitialTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7302015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jiterator_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7307645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\jit_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7319958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7325446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7330676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyBatchedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7336248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7350018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LegacyVmapTransforms.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7365800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\LinalgBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7371251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MapAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7377026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MatrixRef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7382609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MemoryOverlap.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7388061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7393374Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MetaFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7399014Z creating build\bdist.win-amd64\wheel\torch\include\ATen\metal 2025-07-17T08:10:18.7402433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\metal\Context.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\metal 2025-07-17T08:10:18.7407444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7413432Z creating build\bdist.win-amd64\wheel\torch\include\ATen\miopen 2025-07-17T08:10:18.7424418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Descriptors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-17T08:10:18.7429828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-17T08:10:18.7435430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Handle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-17T08:10:18.7440580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\miopen-wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-17T08:10:18.7451506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-17T08:10:18.7455574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\miopen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\miopen 2025-07-17T08:10:18.7460872Z creating build\bdist.win-amd64\wheel\torch\include\ATen\mps 2025-07-17T08:10:18.7464220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7469698Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\IndexKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7475096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7480883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSAllocatorInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7492187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7497675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7502236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7508850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSGuardImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7517890Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7523326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7529174Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\mps\MPSStream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\mps 2025-07-17T08:10:18.7535057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7540856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NamedTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.7548062Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native 2025-07-17T08:10:18.7551546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7561499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AdaptivePooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7566546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\AmpKernels.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7572161Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse 2025-07-17T08:10:18.7579415Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized 2025-07-17T08:10:18.7582745Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\ao_sparse\quantized\cpu 2025-07-17T08:10:18.7586218Z 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-07-17T08:10:18.7591792Z 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-07-17T08:10:18.7597137Z 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-07-17T08:10:18.7602375Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BatchLinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7607654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7613404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BinaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7618627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\BucketizationUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7623991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CanUse32BitIndexMath.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7628974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ComplexHelper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7639473Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7644811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CompositeRandomAccessorCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7650219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvolutionMM3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7655045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7662035Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7704583Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cpu 2025-07-17T08:10:18.7705494Z 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-07-17T08:10:18.7706552Z 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-07-17T08:10:18.7707587Z 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-07-17T08:10:18.7708658Z 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-07-17T08:10:18.7711232Z 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-07-17T08:10:18.7712371Z 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-07-17T08:10:18.7717054Z 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-07-17T08:10:18.7739290Z 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-07-17T08:10:18.7744449Z 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-07-17T08:10:18.7749641Z 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-07-17T08:10:18.7755176Z 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-07-17T08:10:18.7760461Z 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-07-17T08:10:18.7765608Z 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-07-17T08:10:18.7770996Z 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-07-17T08:10:18.7776198Z 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-07-17T08:10:18.7781688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cpu\LogSoftmaxKernelImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cpu 2025-07-17T08:10:18.7787107Z 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-07-17T08:10:18.7792648Z 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-07-17T08:10:18.7802469Z 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-07-17T08:10:18.7808164Z 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-07-17T08:10:18.7818353Z 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-07-17T08:10:18.7823421Z 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-07-17T08:10:18.7828855Z 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-07-17T08:10:18.7834006Z 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-07-17T08:10:18.7839351Z 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-07-17T08:10:18.7844884Z 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-07-17T08:10:18.7850168Z 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-07-17T08:10:18.7855587Z 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-07-17T08:10:18.7860976Z 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-07-17T08:10:18.7865909Z 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-07-17T08:10:18.7883433Z 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-07-17T08:10:18.7888699Z 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-07-17T08:10:18.7893810Z 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-07-17T08:10:18.7899172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUBlas.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7904524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\CPUFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7909750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.7915369Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\cuda 2025-07-17T08:10:18.7918659Z 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-07-17T08:10:18.7923869Z 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-07-17T08:10:18.7929045Z 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-07-17T08:10:18.7934447Z 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-07-17T08:10:18.7945339Z 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-07-17T08:10:18.7950983Z 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-07-17T08:10:18.7956847Z 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-07-17T08:10:18.7962681Z 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-07-17T08:10:18.7968476Z 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-07-17T08:10:18.7974124Z 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-07-17T08:10:18.7979456Z 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-07-17T08:10:18.7989746Z 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-07-17T08:10:18.7995129Z 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-07-17T08:10:18.8001289Z 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-07-17T08:10:18.8006750Z 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-07-17T08:10:18.8012903Z 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-07-17T08:10:18.8018176Z 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-07-17T08:10:18.8046069Z 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-07-17T08:10:18.8054543Z 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-07-17T08:10:18.8059983Z 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-07-17T08:10:18.8065515Z 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-07-17T08:10:18.8071185Z 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-07-17T08:10:18.8077295Z 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-07-17T08:10:18.8089207Z 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-07-17T08:10:18.8105890Z 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-07-17T08:10:18.8107002Z 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-07-17T08:10:18.8108055Z 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-07-17T08:10:18.8112024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\cuda\IndexKernelUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\cuda 2025-07-17T08:10:18.8121673Z 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-07-17T08:10:18.8126753Z 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-07-17T08:10:18.8132238Z 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-07-17T08:10:18.8137744Z 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-07-17T08:10:18.8142946Z 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-07-17T08:10:18.8148162Z 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-07-17T08:10:18.8155008Z 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-07-17T08:10:18.8165330Z 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-07-17T08:10:18.8170750Z 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-07-17T08:10:18.8176379Z 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-07-17T08:10:18.8183310Z 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-07-17T08:10:18.8193968Z 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-07-17T08:10:18.8208571Z 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-07-17T08:10:18.8213855Z 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-07-17T08:10:18.8219998Z 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-07-17T08:10:18.8225251Z 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-07-17T08:10:18.8230873Z 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-07-17T08:10:18.8236272Z 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-07-17T08:10:18.8241263Z 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-07-17T08:10:18.8246596Z 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-07-17T08:10:18.8251803Z 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-07-17T08:10:18.8257412Z 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-07-17T08:10:18.8262102Z 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-07-17T08:10:18.8271380Z 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-07-17T08:10:18.8276769Z 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-07-17T08:10:18.8282185Z 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-07-17T08:10:18.8287175Z 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-07-17T08:10:18.8292759Z 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-07-17T08:10:18.8298156Z 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-07-17T08:10:18.8303373Z 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-07-17T08:10:18.8308687Z 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-07-17T08:10:18.8314076Z 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-07-17T08:10:18.8328191Z 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-07-17T08:10:18.8348256Z 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-07-17T08:10:18.8353725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DilatedConvolutionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8363176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DispatchStub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8368887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8374235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Distributions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8380218Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\DistributionTemplates.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8386201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\EmbeddingBag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8391908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8397894Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ForeachUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8404096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FractionalMaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8414602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FunctionOfAMatrixUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8419748Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8424936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedAdam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8434231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\FusedSGD.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8439248Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8444594Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8450038Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\GridSamplerUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8455540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8461000Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip 2025-07-17T08:10:18.8464350Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\hip\bgemm_kernels 2025-07-17T08:10:18.8467932Z 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-07-17T08:10:18.8473324Z 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-07-17T08:10:18.8478300Z 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-07-17T08:10:18.8483222Z 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-07-17T08:10:18.8488357Z 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-07-17T08:10:18.8494062Z 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-07-17T08:10:18.8503721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8509226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8514932Z 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-07-17T08:10:18.8520853Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8526678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\IndexKernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8532176Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\kleidiai 2025-07-17T08:10:18.8539719Z 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-07-17T08:10:18.8545228Z 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-07-17T08:10:18.8550534Z 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-07-17T08:10:18.8556072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8561644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8567334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebra.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8573068Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LinearAlgebraUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8578788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\LossMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8622984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Math.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8624034Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitFallThroughLists.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8625194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MathBitsFallback.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8626211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\MaxPooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8626958Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn 2025-07-17T08:10:18.8628875Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu 2025-07-17T08:10:18.8629772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\Conv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-07-17T08:10:18.8630670Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:10:18.8631559Z 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-07-17T08:10:18.8634664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\DnnlExt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:10:18.8639054Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\detail\LRUCache.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu\detail 2025-07-17T08:10:18.8649450Z 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-07-17T08:10:18.8654712Z 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-07-17T08:10:18.8660527Z 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-07-17T08:10:18.8669171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mkldnn\xpu\FusionUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mkldnn\xpu 2025-07-17T08:10:18.8674967Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps 2025-07-17T08:10:18.8678200Z 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-07-17T08:10:18.8687702Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\kernels 2025-07-17T08:10:18.8690841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\Pooling.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-07-17T08:10:18.8696187Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mps\kernels\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mps\kernels 2025-07-17T08:10:18.8701114Z 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-07-17T08:10:18.8706608Z 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-07-17T08:10:18.8711704Z 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-07-17T08:10:18.8722386Z 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-07-17T08:10:18.8727841Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mps\operations 2025-07-17T08:10:18.8731163Z 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-07-17T08:10:18.8737018Z 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-07-17T08:10:18.8742425Z 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-07-17T08:10:18.8753278Z 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-07-17T08:10:18.8758668Z 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-07-17T08:10:18.8764036Z 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-07-17T08:10:18.8769698Z 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-07-17T08:10:18.8775616Z 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-07-17T08:10:18.8781132Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\mtia 2025-07-17T08:10:18.8900448Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\mtia\EmptyTensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\mtia 2025-07-17T08:10:18.8905960Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\nested 2025-07-17T08:10:18.8910227Z 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-07-17T08:10:18.8914522Z 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-07-17T08:10:18.8920057Z 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-07-17T08:10:18.8929425Z 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-07-17T08:10:18.8934732Z 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-07-17T08:10:18.8939843Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonEmptyUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8946222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\NonSymbolicBC.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8951866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Normalization.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8956110Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Padding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8961571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PixelShuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8967546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\PointwiseOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8973031Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8983377Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.8988871Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized 2025-07-17T08:10:18.8992454Z 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-07-17T08:10:18.8998946Z 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-07-17T08:10:18.9004335Z 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-07-17T08:10:18.9017624Z 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-07-17T08:10:18.9023679Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cpu 2025-07-17T08:10:18.9029425Z 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-07-17T08:10:18.9035168Z 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-07-17T08:10:18.9040511Z 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-07-17T08:10:18.9045027Z 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-07-17T08:10:18.9056273Z 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-07-17T08:10:18.9066934Z 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-07-17T08:10:18.9072228Z 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-07-17T08:10:18.9077903Z 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-07-17T08:10:18.9083461Z 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-07-17T08:10:18.9089110Z 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-07-17T08:10:18.9094824Z 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-07-17T08:10:18.9100294Z 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-07-17T08:10:18.9107585Z 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-07-17T08:10:18.9111673Z 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-07-17T08:10:18.9117158Z 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-07-17T08:10:18.9122219Z 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-07-17T08:10:18.9128092Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\quantized\cudnn 2025-07-17T08:10:18.9131436Z 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-07-17T08:10:18.9137172Z 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-07-17T08:10:18.9142412Z 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-07-17T08:10:18.9147408Z 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-07-17T08:10:18.9153240Z 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-07-17T08:10:18.9158172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9163040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RangeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9177245Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceAllOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9182570Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9188430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReduceOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9194149Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ReductionType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9199467Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9204548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9209799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ResizeCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9215072Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\RNN.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9220188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\ScatterGatherChecks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9225641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SegmentReduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9231137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SharedReduceOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9242052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SobolEngineOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9247642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Sorting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9252991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SortingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9258453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SparseTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9263976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\SpectralOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9269677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\StridedRandomAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9275550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9281292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorAdvancedIndexingUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9286951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorCompare.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9298446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorConversions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9303892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorDimApply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9309023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorFactories.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9313912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9319334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorIteratorDynamicCasting.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9354091Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9355113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorShape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9356143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TensorTransformations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9357263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TopKImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9358023Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers 2025-07-17T08:10:18.9360305Z 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-07-17T08:10:18.9365926Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda 2025-07-17T08:10:18.9368244Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\flash_attn 2025-07-17T08:10:18.9372416Z 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-07-17T08:10:18.9378475Z 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-07-17T08:10:18.9382986Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention 2025-07-17T08:10:18.9386395Z 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-07-17T08:10:18.9392598Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\epilogue 2025-07-17T08:10:18.9396033Z 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-07-17T08:10:18.9402105Z 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-07-17T08:10:18.9407710Z 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-07-17T08:10:18.9423276Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\gemm 2025-07-17T08:10:18.9426639Z 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-07-17T08:10:18.9432069Z 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-07-17T08:10:18.9437661Z 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-07-17T08:10:18.9443485Z 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-07-17T08:10:18.9453454Z 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-07-17T08:10:18.9469799Z 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-07-17T08:10:18.9475228Z 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-07-17T08:10:18.9482001Z 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-07-17T08:10:18.9491886Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\iterators 2025-07-17T08:10:18.9495748Z 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-07-17T08:10:18.9501192Z 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-07-17T08:10:18.9506988Z 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-07-17T08:10:18.9517353Z 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-07-17T08:10:18.9524051Z 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-07-17T08:10:18.9530403Z 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-07-17T08:10:18.9535856Z 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-07-17T08:10:18.9541298Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\kernels 2025-07-17T08:10:18.9544633Z 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-07-17T08:10:18.9551093Z 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-07-17T08:10:18.9556822Z 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-07-17T08:10:18.9563589Z 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-07-17T08:10:18.9570048Z 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-07-17T08:10:18.9575666Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\cuda\mem_eff_attention\transform 2025-07-17T08:10:18.9579114Z 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-07-17T08:10:18.9584396Z 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-07-17T08:10:18.9589666Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip 2025-07-17T08:10:18.9593012Z 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-07-17T08:10:18.9598549Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn 2025-07-17T08:10:18.9601972Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\transformers\hip\flash_attn\ck 2025-07-17T08:10:18.9605395Z 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-07-17T08:10:18.9610737Z 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-07-17T08:10:18.9616434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\transformers\sdp_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native\transformers 2025-07-17T08:10:18.9626673Z 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-07-17T08:10:18.9634305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TransposeType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9638143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TriangularOpsUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9643542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\TypeProperties.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9648911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnaryOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9654195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9659397Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\Unfold3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9664626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UnfoldBackward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9669819Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\UpSample.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9675721Z creating build\bdist.win-amd64\wheel\torch\include\ATen\native\utils 2025-07-17T08:10:18.9679467Z 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-07-17T08:10:18.9684671Z 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-07-17T08:10:18.9689821Z 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-07-17T08:10:18.9695249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\verbose_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9700338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\native\vol2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\native 2025-07-17T08:10:18.9705897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.9712524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.9718876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NestedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.9724337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\NumericUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.9729670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpaqueTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.9735350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Operators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.9741881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\OpMathType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:18.9889457Z creating build\bdist.win-amd64\wheel\torch\include\ATen\ops 2025-07-17T08:10:18.9892690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9898575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9903830Z 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-07-17T08:10:18.9909292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9920076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\absolute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9925911Z 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-07-17T08:10:18.9931568Z 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-07-17T08:10:18.9937281Z 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-07-17T08:10:18.9942805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9947062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\abs_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9952278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9957839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9963875Z 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-07-17T08:10:18.9969027Z 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-07-17T08:10:18.9974732Z 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-07-17T08:10:18.9980326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9985712Z 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-07-17T08:10:18.9991222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:18.9996786Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0002505Z 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-07-17T08:10:19.0013543Z 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-07-17T08:10:19.0019009Z 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-07-17T08:10:19.0024394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0029996Z 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-07-17T08:10:19.0035654Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0040651Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\acos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0047069Z 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-07-17T08:10:19.0052782Z 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-07-17T08:10:19.0058332Z 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-07-17T08:10:19.0087928Z 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-07-17T08:10:19.0113022Z 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-07-17T08:10:19.0114049Z 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-07-17T08:10:19.0115270Z 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-07-17T08:10:19.0116473Z 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-07-17T08:10:19.0119061Z 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-07-17T08:10:19.0125121Z 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-07-17T08:10:19.0131176Z 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-07-17T08:10:19.0142729Z 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-07-17T08:10:19.0148435Z 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-07-17T08:10:19.0153861Z 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-07-17T08:10:19.0177213Z 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-07-17T08:10:19.0183030Z 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-07-17T08:10:19.0188349Z 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-07-17T08:10:19.0194223Z 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-07-17T08:10:19.0199751Z 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-07-17T08:10:19.0205155Z 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-07-17T08:10:19.0210629Z 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-07-17T08:10:19.0216455Z 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-07-17T08:10:19.0233044Z 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-07-17T08:10:19.0238740Z 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-07-17T08:10:19.0244098Z 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-07-17T08:10:19.0249522Z 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-07-17T08:10:19.0255108Z 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-07-17T08:10:19.0260751Z 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-07-17T08:10:19.0266759Z 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-07-17T08:10:19.0272298Z 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-07-17T08:10:19.0278054Z 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-07-17T08:10:19.0283733Z 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-07-17T08:10:19.0289399Z 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-07-17T08:10:19.0299714Z 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-07-17T08:10:19.0305267Z 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-07-17T08:10:19.0311364Z 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-07-17T08:10:19.0316773Z 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-07-17T08:10:19.0322512Z 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-07-17T08:10:19.0328230Z 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-07-17T08:10:19.0333835Z 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-07-17T08:10:19.0344370Z 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-07-17T08:10:19.0350074Z 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-07-17T08:10:19.0355689Z 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-07-17T08:10:19.0361594Z 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-07-17T08:10:19.0367617Z 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-07-17T08:10:19.0378912Z 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-07-17T08:10:19.0384516Z 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-07-17T08:10:19.0390053Z 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-07-17T08:10:19.0396061Z 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-07-17T08:10:19.0402686Z 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-07-17T08:10:19.0407670Z 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-07-17T08:10:19.0414816Z 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-07-17T08:10:19.0420305Z 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-07-17T08:10:19.0426048Z 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-07-17T08:10:19.0431738Z 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-07-17T08:10:19.0437593Z 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-07-17T08:10:19.0462015Z 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-07-17T08:10:19.0467779Z 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-07-17T08:10:19.0473418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0483854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0489486Z 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-07-17T08:10:19.0495126Z 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-07-17T08:10:19.0499765Z 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-07-17T08:10:19.0506609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0511093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0521639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0527408Z 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-07-17T08:10:19.0532961Z 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-07-17T08:10:19.0538598Z 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-07-17T08:10:19.0548631Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0554123Z 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-07-17T08:10:19.0564877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0570563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcdiv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0576311Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0582208Z 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-07-17T08:10:19.0586839Z 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-07-17T08:10:19.0609404Z 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-07-17T08:10:19.0610412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0611450Z 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-07-17T08:10:19.0615813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0621845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addcmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0627933Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0634168Z 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-07-17T08:10:19.0644677Z 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-07-17T08:10:19.0648856Z 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-07-17T08:10:19.0654558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0661180Z 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-07-17T08:10:19.0665998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0671487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0676835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0682638Z 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-07-17T08:10:19.0692687Z 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-07-17T08:10:19.0698189Z 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-07-17T08:10:19.0703542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0709412Z 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-07-17T08:10:19.0714971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0720320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addmv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0725899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0731466Z 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-07-17T08:10:19.0737100Z 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-07-17T08:10:19.0742433Z 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-07-17T08:10:19.0748137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0753930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\addr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0759302Z 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-07-17T08:10:19.0770745Z 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-07-17T08:10:19.0776312Z 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-07-17T08:10:19.0781774Z 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-07-17T08:10:19.0793630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0798818Z 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-07-17T08:10:19.0804165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0809531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\add_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0815154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0820331Z 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-07-17T08:10:19.0825783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0831175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\adjoint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0836495Z 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-07-17T08:10:19.0841783Z 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-07-17T08:10:19.0847736Z 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-07-17T08:10:19.0854008Z 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-07-17T08:10:19.0859401Z 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-07-17T08:10:19.0865254Z 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-07-17T08:10:19.0878039Z 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-07-17T08:10:19.0883550Z 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-07-17T08:10:19.0889581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0895163Z 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-07-17T08:10:19.0900265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0906374Z 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-07-17T08:10:19.0912172Z 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-07-17T08:10:19.0917613Z 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-07-17T08:10:19.0923114Z 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-07-17T08:10:19.0928709Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0934461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alias_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0940164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0945633Z 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-07-17T08:10:19.0951015Z 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-07-17T08:10:19.0956273Z 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-07-17T08:10:19.0961960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.0967979Z 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-07-17T08:10:19.0986330Z 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-07-17T08:10:19.0992873Z 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-07-17T08:10:19.0998587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\align_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1004136Z 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-07-17T08:10:19.1009490Z 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-07-17T08:10:19.1015130Z 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-07-17T08:10:19.1020878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1026153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1031723Z 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-07-17T08:10:19.1037224Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1042753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\allclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1057092Z 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-07-17T08:10:19.1063633Z 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-07-17T08:10:19.1069506Z 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-07-17T08:10:19.1075331Z 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-07-17T08:10:19.1080776Z 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-07-17T08:10:19.1086243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1092185Z 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-07-17T08:10:19.1098354Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1104502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\all_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1110148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\alpha_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1116035Z 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-07-17T08:10:19.1121801Z 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-07-17T08:10:19.1136835Z 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-07-17T08:10:19.1142394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1148013Z 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-07-17T08:10:19.1153293Z 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-07-17T08:10:19.1158979Z 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-07-17T08:10:19.1164381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1174889Z 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-07-17T08:10:19.1180240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1185738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1191173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1196408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1202103Z 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-07-17T08:10:19.1207377Z 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-07-17T08:10:19.1213002Z 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-07-17T08:10:19.1218582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1224668Z 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-07-17T08:10:19.1229824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1235335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1240759Z 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-07-17T08:10:19.1246194Z 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-07-17T08:10:19.1251813Z 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-07-17T08:10:19.1257469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1263083Z 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-07-17T08:10:19.1268417Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1273660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\amin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1278893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1284238Z 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-07-17T08:10:19.1289512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1294912Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\and_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1300046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1305668Z 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-07-17T08:10:19.1311267Z 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-07-17T08:10:19.1316621Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1322242Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\angle_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1327692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1333392Z 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-07-17T08:10:19.1338879Z 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-07-17T08:10:19.1344498Z 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-07-17T08:10:19.1350420Z 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-07-17T08:10:19.1356012Z 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-07-17T08:10:19.1366760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1372287Z 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-07-17T08:10:19.1377633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1383011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\any_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1388067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1393571Z 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-07-17T08:10:19.1413918Z 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-07-17T08:10:19.1419365Z 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-07-17T08:10:19.1425161Z 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-07-17T08:10:19.1430930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1436415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arange_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1442104Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1447409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1453123Z 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-07-17T08:10:19.1458844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1464440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1470223Z 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-07-17T08:10:19.1475808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1481469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arccos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1487063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1492574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1498360Z 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-07-17T08:10:19.1504121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1509885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1515594Z 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-07-17T08:10:19.1521065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1526664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arcsin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1532325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1537708Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1543527Z 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-07-17T08:10:19.1548993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1554535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1560600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1566391Z 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-07-17T08:10:19.1572000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1577770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1583618Z 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-07-17T08:10:19.1589327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1595055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\arctan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1601144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1607283Z 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-07-17T08:10:19.1613271Z 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-07-17T08:10:19.1619376Z 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-07-17T08:10:19.1625326Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1631609Z 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-07-17T08:10:19.1637300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1643261Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1648638Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1658571Z 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-07-17T08:10:19.1663968Z 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-07-17T08:10:19.1669316Z 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-07-17T08:10:19.1675281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1680849Z 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-07-17T08:10:19.1686477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1691988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1697550Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1703237Z 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-07-17T08:10:19.1708879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1714159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argsort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1719660Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1725014Z 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-07-17T08:10:19.1730157Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1735431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\argwhere_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1740821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1745954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1783395Z 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-07-17T08:10:19.1789063Z 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-07-17T08:10:19.1794828Z 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-07-17T08:10:19.1800297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1820661Z 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-07-17T08:10:19.1826534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1831868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1837845Z 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-07-17T08:10:19.1843146Z 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-07-17T08:10:19.1848946Z 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-07-17T08:10:19.1854391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1859572Z 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-07-17T08:10:19.1865086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1870551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\asin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1875578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\as_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1881491Z 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-07-17T08:10:19.1886935Z 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-07-17T08:10:19.1893118Z 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-07-17T08:10:19.1899021Z 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-07-17T08:10:19.1904396Z 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-07-17T08:10:19.1916892Z 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-07-17T08:10:19.1922504Z 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-07-17T08:10:19.1928306Z 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-07-17T08:10:19.1934077Z 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-07-17T08:10:19.1939825Z 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-07-17T08:10:19.1945454Z 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-07-17T08:10:19.1951122Z 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-07-17T08:10:19.1957498Z 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-07-17T08:10:19.1963505Z 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-07-17T08:10:19.1968989Z 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-07-17T08:10:19.1975223Z 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-07-17T08:10:19.1981366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1987342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.1993206Z 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-07-17T08:10:19.1998816Z 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-07-17T08:10:19.2004925Z 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-07-17T08:10:19.2010666Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2016660Z 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-07-17T08:10:19.2022225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2028131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2033703Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2039760Z 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-07-17T08:10:19.2045411Z 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-07-17T08:10:19.2051926Z 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-07-17T08:10:19.2057606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2063624Z 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-07-17T08:10:19.2069411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2074897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2080886Z 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-07-17T08:10:19.2086295Z 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-07-17T08:10:19.2091884Z 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-07-17T08:10:19.2097521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2103920Z 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-07-17T08:10:19.2109712Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2115319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2120434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2126165Z 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-07-17T08:10:19.2141342Z 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-07-17T08:10:19.2146500Z 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-07-17T08:10:19.2152803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2158838Z 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-07-17T08:10:19.2164364Z 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-07-17T08:10:19.2169742Z 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-07-17T08:10:19.2175506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\atleast_3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2181848Z 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-07-17T08:10:19.2187313Z 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-07-17T08:10:19.2193020Z 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-07-17T08:10:19.2198871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2204423Z 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-07-17T08:10:19.2210008Z 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-07-17T08:10:19.2215561Z 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-07-17T08:10:19.2221127Z 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-07-17T08:10:19.2226626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2232306Z 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-07-17T08:10:19.2238174Z 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-07-17T08:10:19.2243823Z 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-07-17T08:10:19.2249592Z 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-07-17T08:10:19.2255238Z 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-07-17T08:10:19.2260962Z 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-07-17T08:10:19.2266688Z 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-07-17T08:10:19.2272305Z 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-07-17T08:10:19.2278734Z 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-07-17T08:10:19.2284030Z 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-07-17T08:10:19.2289576Z 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-07-17T08:10:19.2295198Z 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-07-17T08:10:19.2300769Z 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-07-17T08:10:19.2306709Z 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-07-17T08:10:19.2311923Z 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-07-17T08:10:19.2317973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\avg_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2323601Z 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-07-17T08:10:19.2329624Z 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-07-17T08:10:19.2335219Z 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-07-17T08:10:19.2341263Z 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-07-17T08:10:19.2347101Z 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-07-17T08:10:19.2352958Z 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-07-17T08:10:19.2358844Z 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-07-17T08:10:19.2369623Z 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-07-17T08:10:19.2375700Z 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-07-17T08:10:19.2381228Z 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-07-17T08:10:19.2386926Z 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-07-17T08:10:19.2392955Z 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-07-17T08:10:19.2398875Z 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-07-17T08:10:19.2404302Z 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-07-17T08:10:19.2410197Z 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-07-17T08:10:19.2416033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2421810Z 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-07-17T08:10:19.2427093Z 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-07-17T08:10:19.2432825Z 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-07-17T08:10:19.2438635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2444482Z 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-07-17T08:10:19.2449927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2455700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\baddbmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2461302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bartlett_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2467596Z 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-07-17T08:10:19.2472773Z 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-07-17T08:10:19.2478659Z 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-07-17T08:10:19.2484283Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\batch_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2490198Z 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-07-17T08:10:19.2496186Z 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-07-17T08:10:19.2501805Z 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-07-17T08:10:19.2507633Z 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-07-17T08:10:19.2513922Z 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-07-17T08:10:19.2519795Z 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-07-17T08:10:19.2525843Z 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-07-17T08:10:19.2531713Z 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-07-17T08:10:19.2537285Z 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-07-17T08:10:19.2543124Z 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-07-17T08:10:19.2548974Z 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-07-17T08:10:19.2555387Z 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-07-17T08:10:19.2561000Z 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-07-17T08:10:19.2566528Z 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-07-17T08:10:19.2572513Z 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-07-17T08:10:19.2578509Z 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-07-17T08:10:19.2584125Z 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-07-17T08:10:19.2590585Z 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-07-17T08:10:19.2596096Z 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-07-17T08:10:19.2601652Z 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-07-17T08:10:19.2607154Z 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-07-17T08:10:19.2613383Z 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-07-17T08:10:19.2619170Z 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-07-17T08:10:19.2625000Z 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-07-17T08:10:19.2630474Z 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-07-17T08:10:19.2636304Z 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-07-17T08:10:19.2642510Z 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-07-17T08:10:19.2648407Z 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-07-17T08:10:19.2654623Z 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-07-17T08:10:19.2660421Z 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-07-17T08:10:19.2665749Z 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-07-17T08:10:19.2671158Z 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-07-17T08:10:19.2676653Z 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-07-17T08:10:19.2682303Z 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-07-17T08:10:19.2690723Z 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-07-17T08:10:19.2697148Z 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-07-17T08:10:19.2702613Z 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-07-17T08:10:19.2708403Z 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-07-17T08:10:19.2714115Z 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-07-17T08:10:19.2719669Z 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-07-17T08:10:19.2725434Z 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-07-17T08:10:19.2731112Z 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-07-17T08:10:19.2736846Z 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-07-17T08:10:19.2742534Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2748402Z 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-07-17T08:10:19.2753915Z 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-07-17T08:10:19.2759603Z 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-07-17T08:10:19.2765633Z 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-07-17T08:10:19.2778148Z 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-07-17T08:10:19.2783751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2789130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bernoulli_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2794664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2800243Z 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-07-17T08:10:19.2805441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2810973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2816805Z 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-07-17T08:10:19.2822331Z 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-07-17T08:10:19.2828226Z 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-07-17T08:10:19.2833790Z 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-07-17T08:10:19.2839154Z 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-07-17T08:10:19.2844873Z 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-07-17T08:10:19.2850634Z 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-07-17T08:10:19.2856343Z 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-07-17T08:10:19.2862177Z 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-07-17T08:10:19.2867788Z 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-07-17T08:10:19.2873434Z 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-07-17T08:10:19.2879317Z 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-07-17T08:10:19.2885442Z 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-07-17T08:10:19.2890747Z 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-07-17T08:10:19.2896356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2902083Z 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-07-17T08:10:19.2907488Z 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-07-17T08:10:19.2913175Z 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-07-17T08:10:19.2918985Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2924424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bincount_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2929798Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2935504Z 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-07-17T08:10:19.2940878Z 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-07-17T08:10:19.2946350Z 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-07-17T08:10:19.2951866Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2957428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\binomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2963128Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.2968857Z 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-07-17T08:10:19.2974670Z 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-07-17T08:10:19.2980107Z 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-07-17T08:10:19.2989974Z 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-07-17T08:10:19.3023565Z 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-07-17T08:10:19.3029134Z 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-07-17T08:10:19.3034834Z 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-07-17T08:10:19.3040312Z 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-07-17T08:10:19.3045930Z 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-07-17T08:10:19.3051912Z 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-07-17T08:10:19.3057638Z 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-07-17T08:10:19.3063436Z 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-07-17T08:10:19.3069242Z 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-07-17T08:10:19.3075452Z 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-07-17T08:10:19.3081250Z 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-07-17T08:10:19.3087184Z 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-07-17T08:10:19.3092960Z 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-07-17T08:10:19.3098737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3104980Z 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-07-17T08:10:19.3110813Z 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-07-17T08:10:19.3116842Z 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-07-17T08:10:19.3122797Z 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-07-17T08:10:19.3128705Z 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-07-17T08:10:19.3134643Z 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-07-17T08:10:19.3140706Z 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-07-17T08:10:19.3146871Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3153248Z 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-07-17T08:10:19.3159487Z 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-07-17T08:10:19.3165070Z 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-07-17T08:10:19.3170687Z 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-07-17T08:10:19.3177076Z 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-07-17T08:10:19.3182271Z 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-07-17T08:10:19.3188430Z 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-07-17T08:10:19.3193861Z 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-07-17T08:10:19.3199255Z 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-07-17T08:10:19.3205353Z 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-07-17T08:10:19.3211117Z 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-07-17T08:10:19.3216655Z 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-07-17T08:10:19.3222592Z 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-07-17T08:10:19.3228107Z 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-07-17T08:10:19.3233847Z 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-07-17T08:10:19.3239959Z 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-07-17T08:10:19.3245307Z 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-07-17T08:10:19.3250931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bitwise_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3257169Z 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-07-17T08:10:19.3263379Z 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-07-17T08:10:19.3268967Z 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-07-17T08:10:19.3274733Z 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-07-17T08:10:19.3280131Z 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-07-17T08:10:19.3285716Z 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-07-17T08:10:19.3291605Z 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-07-17T08:10:19.3297472Z 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-07-17T08:10:19.3303874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\blackman_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3309677Z 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-07-17T08:10:19.3315106Z 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-07-17T08:10:19.3320647Z 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-07-17T08:10:19.3326188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\block_diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3332078Z 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-07-17T08:10:19.3337859Z 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-07-17T08:10:19.3343074Z 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-07-17T08:10:19.3348384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3374464Z 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-07-17T08:10:19.3379889Z 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-07-17T08:10:19.3394242Z 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-07-17T08:10:19.3399225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3404167Z 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-07-17T08:10:19.3409867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3415411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3420759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_tensors.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3426838Z 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-07-17T08:10:19.3432452Z 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-07-17T08:10:19.3437681Z 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-07-17T08:10:19.3442994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\broadcast_to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3448959Z 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-07-17T08:10:19.3454763Z 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-07-17T08:10:19.3460216Z 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-07-17T08:10:19.3465541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3471308Z 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-07-17T08:10:19.3476738Z 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-07-17T08:10:19.3482174Z 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-07-17T08:10:19.3487920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3493639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\bucketize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3499296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\can_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3504998Z 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-07-17T08:10:19.3510860Z 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-07-17T08:10:19.3516629Z 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-07-17T08:10:19.3521792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cartesian_prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3527829Z 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-07-17T08:10:19.3533482Z 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-07-17T08:10:19.3538919Z 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-07-17T08:10:19.3544652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3550348Z 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-07-17T08:10:19.3556052Z 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-07-17T08:10:19.3561680Z 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-07-17T08:10:19.3567522Z 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-07-17T08:10:19.3573192Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3578591Z 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-07-17T08:10:19.3584253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3590284Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3595612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3601412Z 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-07-17T08:10:19.3607081Z 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-07-17T08:10:19.3613293Z 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-07-17T08:10:19.3619056Z 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-07-17T08:10:19.3631818Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3637514Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cauchy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3643330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ccol_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3648762Z 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-07-17T08:10:19.3654552Z 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-07-17T08:10:19.3660574Z 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-07-17T08:10:19.3666332Z 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-07-17T08:10:19.3671790Z 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-07-17T08:10:19.3677503Z 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-07-17T08:10:19.3683412Z 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-07-17T08:10:19.3688630Z 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-07-17T08:10:19.3693980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3702002Z 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-07-17T08:10:19.3707434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3712674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3717979Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3723829Z 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-07-17T08:10:19.3729296Z 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-07-17T08:10:19.3734817Z 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-07-17T08:10:19.3740344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3745637Z 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-07-17T08:10:19.3751009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3756189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ceil_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3761329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3766886Z 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-07-17T08:10:19.3772325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3777656Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\celu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3782847Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chain_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3788630Z 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-07-17T08:10:19.3794359Z 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-07-17T08:10:19.3799461Z 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-07-17T08:10:19.3804664Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3809725Z 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-07-17T08:10:19.3815184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3820373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chalf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3825799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\channel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3831702Z 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-07-17T08:10:19.3837226Z 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-07-17T08:10:19.3842752Z 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-07-17T08:10:19.3848088Z 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-07-17T08:10:19.3853649Z 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-07-17T08:10:19.3859236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3864519Z 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-07-17T08:10:19.3870030Z 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-07-17T08:10:19.3875454Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3881108Z 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-07-17T08:10:19.3886672Z 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-07-17T08:10:19.3892005Z 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-07-17T08:10:19.3897619Z 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-07-17T08:10:19.3903291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3908768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3914222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cholesky_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3920122Z 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-07-17T08:10:19.3925651Z 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-07-17T08:10:19.3931135Z 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-07-17T08:10:19.3936771Z 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-07-17T08:10:19.3942590Z 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-07-17T08:10:19.3948190Z 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-07-17T08:10:19.3973857Z 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-07-17T08:10:19.3979280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3984624Z 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-07-17T08:10:19.3990293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.3995469Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\chunk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4000717Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4006234Z 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-07-17T08:10:19.4011791Z 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-07-17T08:10:19.4017383Z 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-07-17T08:10:19.4022635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4028751Z 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-07-17T08:10:19.4034782Z 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-07-17T08:10:19.4040954Z 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-07-17T08:10:19.4046537Z 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-07-17T08:10:19.4052333Z 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-07-17T08:10:19.4058248Z 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-07-17T08:10:19.4064119Z 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-07-17T08:10:19.4069611Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4075391Z 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-07-17T08:10:19.4081030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4087190Z 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-07-17T08:10:19.4093060Z 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-07-17T08:10:19.4098594Z 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-07-17T08:10:19.4104330Z 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-07-17T08:10:19.4109938Z 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-07-17T08:10:19.4115862Z 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-07-17T08:10:19.4121632Z 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-07-17T08:10:19.4128092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4134002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clamp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4139844Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4145525Z 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-07-17T08:10:19.4150955Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4156608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4162548Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4168033Z 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-07-17T08:10:19.4173492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4179106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\clone_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4184501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4189809Z 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-07-17T08:10:19.4195316Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4200659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4205997Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4211466Z 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-07-17T08:10:19.4216829Z 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-07-17T08:10:19.4222050Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4227984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col2im_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4233329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\column_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4238951Z 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-07-17T08:10:19.4244370Z 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-07-17T08:10:19.4249594Z 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-07-17T08:10:19.4255079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\col_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4260669Z 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-07-17T08:10:19.4266331Z 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-07-17T08:10:19.4272303Z 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-07-17T08:10:19.4277755Z 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-07-17T08:10:19.4283185Z 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-07-17T08:10:19.4288487Z 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-07-17T08:10:19.4329236Z 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-07-17T08:10:19.4335120Z 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-07-17T08:10:19.4340574Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4346239Z 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-07-17T08:10:19.4351597Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4357089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\combinations_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4362572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4368119Z 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-07-17T08:10:19.4373784Z 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-07-17T08:10:19.4379642Z 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-07-17T08:10:19.4384954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4390456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\complex_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4396077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4401337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4407124Z 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-07-17T08:10:19.4412897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4418317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concatenate_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4424067Z 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-07-17T08:10:19.4430626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4436045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\concat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4442155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4447339Z 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-07-17T08:10:19.4452734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4457831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4463538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4469287Z 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-07-17T08:10:19.4475168Z 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-07-17T08:10:19.4480724Z 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-07-17T08:10:19.4486103Z 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-07-17T08:10:19.4491778Z 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-07-17T08:10:19.4497466Z 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-07-17T08:10:19.4503064Z 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-07-17T08:10:19.4509041Z 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-07-17T08:10:19.4514432Z 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-07-17T08:10:19.4519845Z 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-07-17T08:10:19.4525365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4540002Z 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-07-17T08:10:19.4545464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4551150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\contiguous_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4556747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4562355Z 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-07-17T08:10:19.4567512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4572770Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv1d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4578287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4583952Z 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-07-17T08:10:19.4589695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4595324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv2d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4600902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4606453Z 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-07-17T08:10:19.4655636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4661240Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv3d_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4666988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4672893Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4679301Z 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-07-17T08:10:19.4684824Z 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-07-17T08:10:19.4690952Z 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-07-17T08:10:19.4696751Z 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-07-17T08:10:19.4702330Z 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-07-17T08:10:19.4708689Z 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-07-17T08:10:19.4714568Z 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-07-17T08:10:19.4720146Z 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-07-17T08:10:19.4726013Z 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-07-17T08:10:19.4731658Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4737732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4743543Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\convolution_overrideable.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4749489Z 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-07-17T08:10:19.4755107Z 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-07-17T08:10:19.4760754Z 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-07-17T08:10:19.4766632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_depthwise3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4772644Z 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-07-17T08:10:19.4778051Z 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-07-17T08:10:19.4783938Z 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-07-17T08:10:19.4789437Z 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-07-17T08:10:19.4795267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_tbc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4800732Z 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-07-17T08:10:19.4806114Z 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-07-17T08:10:19.4811658Z 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-07-17T08:10:19.4817463Z 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-07-17T08:10:19.4823478Z 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-07-17T08:10:19.4829146Z 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-07-17T08:10:19.4834661Z 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-07-17T08:10:19.4840114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4846010Z 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-07-17T08:10:19.4851545Z 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-07-17T08:10:19.4857213Z 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-07-17T08:10:19.4863728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4869648Z 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-07-17T08:10:19.4875387Z 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-07-17T08:10:19.4880845Z 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-07-17T08:10:19.4886465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\conv_transpose3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4892600Z 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-07-17T08:10:19.4898503Z 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-07-17T08:10:19.4904277Z 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-07-17T08:10:19.4909691Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4914980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4921417Z 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-07-17T08:10:19.4927242Z 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-07-17T08:10:19.4933109Z 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-07-17T08:10:19.4953622Z 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-07-17T08:10:19.4959257Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4965157Z 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-07-17T08:10:19.4970825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4976732Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copysign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.4982978Z 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-07-17T08:10:19.4988460Z 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-07-17T08:10:19.4994640Z 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-07-17T08:10:19.5000063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5005598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\copy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5011149Z 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-07-17T08:10:19.5017155Z 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-07-17T08:10:19.5023048Z 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-07-17T08:10:19.5028803Z 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-07-17T08:10:19.5034680Z 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-07-17T08:10:19.5040508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5045864Z 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-07-17T08:10:19.5051535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5057029Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\corrcoef_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5062777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5067992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5073874Z 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-07-17T08:10:19.5079542Z 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-07-17T08:10:19.5085398Z 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-07-17T08:10:19.5091137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5096801Z 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-07-17T08:10:19.5102510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5108222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5113097Z 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-07-17T08:10:19.5140709Z 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-07-17T08:10:19.5141946Z 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-07-17T08:10:19.5143000Z 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-07-17T08:10:19.5144009Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cosine_similarity.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5146524Z 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-07-17T08:10:19.5150200Z 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-07-17T08:10:19.5155750Z 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-07-17T08:10:19.5162037Z 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-07-17T08:10:19.5167447Z 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-07-17T08:10:19.5173130Z 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-07-17T08:10:19.5178675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5183789Z 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-07-17T08:10:19.5189160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5194694Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cos_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5200099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\count_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5206046Z 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-07-17T08:10:19.5211677Z 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-07-17T08:10:19.5217393Z 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-07-17T08:10:19.5223113Z 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-07-17T08:10:19.5228577Z 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-07-17T08:10:19.5234079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5239507Z 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-07-17T08:10:19.5245144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5250531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cov_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5255956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5261443Z 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-07-17T08:10:19.5266828Z 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-07-17T08:10:19.5273362Z 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-07-17T08:10:19.5294864Z 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-07-17T08:10:19.5300566Z 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-07-17T08:10:19.5306271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5311854Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cross_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5317360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\crow_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5322866Z 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-07-17T08:10:19.5328295Z 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-07-17T08:10:19.5334397Z 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-07-17T08:10:19.5340266Z 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-07-17T08:10:19.5345796Z 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-07-17T08:10:19.5351273Z 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-07-17T08:10:19.5361392Z 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-07-17T08:10:19.5365208Z 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-07-17T08:10:19.5370952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5376800Z 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-07-17T08:10:19.5382752Z 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-07-17T08:10:19.5388389Z 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-07-17T08:10:19.5394227Z 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-07-17T08:10:19.5408509Z 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-07-17T08:10:19.5414796Z 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-07-17T08:10:19.5420780Z 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-07-17T08:10:19.5426600Z 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-07-17T08:10:19.5432688Z 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-07-17T08:10:19.5438917Z 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-07-17T08:10:19.5444778Z 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-07-17T08:10:19.5451074Z 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-07-17T08:10:19.5457029Z 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-07-17T08:10:19.5462759Z 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-07-17T08:10:19.5468576Z 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-07-17T08:10:19.5474564Z 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-07-17T08:10:19.5480298Z 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-07-17T08:10:19.5486188Z 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-07-17T08:10:19.5492256Z 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-07-17T08:10:19.5498258Z 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-07-17T08:10:19.5504060Z 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-07-17T08:10:19.5509811Z 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-07-17T08:10:19.5515638Z 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-07-17T08:10:19.5521522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cudnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5527692Z 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-07-17T08:10:19.5534780Z 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-07-17T08:10:19.5541291Z 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-07-17T08:10:19.5547749Z 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-07-17T08:10:19.5553164Z 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-07-17T08:10:19.5560186Z 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-07-17T08:10:19.5566020Z 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-07-17T08:10:19.5571509Z 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-07-17T08:10:19.5577925Z 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-07-17T08:10:19.5583953Z 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-07-17T08:10:19.5590169Z 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-07-17T08:10:19.5596201Z 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-07-17T08:10:19.5602246Z 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-07-17T08:10:19.5608347Z 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-07-17T08:10:19.5615171Z 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-07-17T08:10:19.5620920Z 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-07-17T08:10:19.5627416Z 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-07-17T08:10:19.5633842Z 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-07-17T08:10:19.5640348Z 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-07-17T08:10:19.5646597Z 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-07-17T08:10:19.5653344Z 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-07-17T08:10:19.5659274Z 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-07-17T08:10:19.5665204Z 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-07-17T08:10:19.5672073Z 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-07-17T08:10:19.5678413Z 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-07-17T08:10:19.5684297Z 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-07-17T08:10:19.5689979Z 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-07-17T08:10:19.5695984Z 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-07-17T08:10:19.5701693Z 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-07-17T08:10:19.5708939Z 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-07-17T08:10:19.5713790Z 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-07-17T08:10:19.5719431Z 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-07-17T08:10:19.5725010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5760005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummaxmin_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5765776Z 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-07-17T08:10:19.5771388Z 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-07-17T08:10:19.5777516Z 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-07-17T08:10:19.5783184Z 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-07-17T08:10:19.5788825Z 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-07-17T08:10:19.5794492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5800043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5805420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5811060Z 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-07-17T08:10:19.5816837Z 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-07-17T08:10:19.5822216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5827745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cummin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5833642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5838462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5844450Z 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-07-17T08:10:19.5850025Z 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-07-17T08:10:19.5855393Z 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-07-17T08:10:19.5861359Z 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-07-17T08:10:19.5867306Z 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-07-17T08:10:19.5872838Z 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-07-17T08:10:19.5878532Z 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-07-17T08:10:19.5884106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5889609Z 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-07-17T08:10:19.5895512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5901047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumprod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5906537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5912343Z 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-07-17T08:10:19.5917959Z 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-07-17T08:10:19.5923373Z 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-07-17T08:10:19.5928851Z 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-07-17T08:10:19.5934943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5940942Z 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-07-17T08:10:19.5946840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5953360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5960406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\cumulative_trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5965587Z 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-07-17T08:10:19.5972753Z 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-07-17T08:10:19.5978329Z 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-07-17T08:10:19.5983531Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5997469Z 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-07-17T08:10:19.5998575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.5999962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\data_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6005569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6011100Z 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-07-17T08:10:19.6016832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6022395Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\deg2rad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6027831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dense_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6033675Z 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-07-17T08:10:19.6039147Z 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-07-17T08:10:19.6045112Z 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-07-17T08:10:19.6050880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6056678Z 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-07-17T08:10:19.6062434Z 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-07-17T08:10:19.6094115Z 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-07-17T08:10:19.6099679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6105506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dequantize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6111210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6116972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6137188Z 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-07-17T08:10:19.6138267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6139524Z 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-07-17T08:10:19.6143034Z 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-07-17T08:10:19.6147490Z 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-07-17T08:10:19.6152991Z 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-07-17T08:10:19.6158678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6164324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\detach_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6170058Z 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-07-17T08:10:19.6176207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6181530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\det_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6186450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6191956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6197400Z 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-07-17T08:10:19.6202674Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6207989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagflat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6213527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6219702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6225266Z 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-07-17T08:10:19.6230651Z 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-07-17T08:10:19.6236281Z 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-07-17T08:10:19.6242121Z 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-07-17T08:10:19.6247739Z 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-07-17T08:10:19.6253428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6259530Z 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-07-17T08:10:19.6265311Z 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-07-17T08:10:19.6270763Z 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-07-17T08:10:19.6276519Z 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-07-17T08:10:19.6282335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6287809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6293729Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diagonal_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6299648Z 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-07-17T08:10:19.6305371Z 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-07-17T08:10:19.6310838Z 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-07-17T08:10:19.6316130Z 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-07-17T08:10:19.6321718Z 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-07-17T08:10:19.6327370Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_embed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6333243Z 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-07-17T08:10:19.6338809Z 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-07-17T08:10:19.6344616Z 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-07-17T08:10:19.6349964Z 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-07-17T08:10:19.6355524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6361003Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6379144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6386535Z 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-07-17T08:10:19.6394324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6403073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\diff_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6410935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6419198Z 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-07-17T08:10:19.6426765Z 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-07-17T08:10:19.6434965Z 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-07-17T08:10:19.6440683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6446238Z 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-07-17T08:10:19.6451989Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6457942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\digamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6463478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6469001Z 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-07-17T08:10:19.6474606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6480071Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6485900Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6491591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6497543Z 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-07-17T08:10:19.6503197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6508830Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\divide_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6514785Z 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-07-17T08:10:19.6520638Z 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-07-17T08:10:19.6526255Z 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-07-17T08:10:19.6532058Z 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-07-17T08:10:19.6537705Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6688884Z 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-07-17T08:10:19.6694411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6699913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\div_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6705464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6711836Z 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-07-17T08:10:19.6718240Z 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-07-17T08:10:19.6723223Z 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-07-17T08:10:19.6728584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6734202Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6739402Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6744890Z 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-07-17T08:10:19.6750386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6755721Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dropout_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6761203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6766991Z 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-07-17T08:10:19.6772411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6777958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6783573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6789008Z 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-07-17T08:10:19.6794418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6799659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\dstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6805147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6810822Z 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-07-17T08:10:19.6816329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6821683Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\einsum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6827239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6832462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6838293Z 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-07-17T08:10:19.6843794Z 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-07-17T08:10:19.6849511Z 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-07-17T08:10:19.6855016Z 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-07-17T08:10:19.6860616Z 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-07-17T08:10:19.6866315Z 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-07-17T08:10:19.6871910Z 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-07-17T08:10:19.6877706Z 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-07-17T08:10:19.6883051Z 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-07-17T08:10:19.6888861Z 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-07-17T08:10:19.6894626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6899839Z 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-07-17T08:10:19.6905372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6910792Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\elu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6916082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6921612Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6927544Z 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-07-17T08:10:19.6933465Z 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-07-17T08:10:19.6938927Z 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-07-17T08:10:19.6944633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.6951762Z 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-07-17T08:10:19.6957410Z 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-07-17T08:10:19.6963645Z 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-07-17T08:10:19.6969517Z 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-07-17T08:10:19.6975323Z 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-07-17T08:10:19.6981377Z 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-07-17T08:10:19.6987265Z 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-07-17T08:10:19.6993060Z 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-07-17T08:10:19.6998746Z 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-07-17T08:10:19.7004823Z 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-07-17T08:10:19.7010604Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7016427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7022089Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\embedding_renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7028543Z 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-07-17T08:10:19.7034038Z 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-07-17T08:10:19.7039949Z 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-07-17T08:10:19.7045976Z 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-07-17T08:10:19.7051698Z 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-07-17T08:10:19.7057471Z 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-07-17T08:10:19.7063427Z 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-07-17T08:10:19.7069263Z 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-07-17T08:10:19.7074974Z 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-07-17T08:10:19.7081009Z 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-07-17T08:10:19.7086582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7092325Z 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-07-17T08:10:19.7098059Z 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-07-17T08:10:19.7103733Z 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-07-17T08:10:19.7109592Z 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-07-17T08:10:19.7115056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7120958Z 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-07-17T08:10:19.7126747Z 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-07-17T08:10:19.7132406Z 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-07-17T08:10:19.7138562Z 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-07-17T08:10:19.7144720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7150771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7157115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_permuted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7163494Z 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-07-17T08:10:19.7169372Z 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-07-17T08:10:19.7175250Z 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-07-17T08:10:19.7180896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_quantized.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7186939Z 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-07-17T08:10:19.7193562Z 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-07-17T08:10:19.7216146Z 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-07-17T08:10:19.7221815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\empty_strided.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7227940Z 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-07-17T08:10:19.7233607Z 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-07-17T08:10:19.7240295Z 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-07-17T08:10:19.7245017Z 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-07-17T08:10:19.7250649Z 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-07-17T08:10:19.7256373Z 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-07-17T08:10:19.7262090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7267318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7272633Z 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-07-17T08:10:19.7278169Z 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-07-17T08:10:19.7283608Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7289332Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\equal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7295323Z 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-07-17T08:10:19.7300605Z 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-07-17T08:10:19.7306138Z 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-07-17T08:10:19.7311836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7317079Z 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-07-17T08:10:19.7322542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7327986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eq_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7333291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7338523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.7344196Z 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-07-17T08:10:19.8815303Z 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-07-17T08:10:19.8821080Z 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-07-17T08:10:19.8826965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8832228Z 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-07-17T08:10:19.8837632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8843138Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8848493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8854222Z 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-07-17T08:10:19.8859785Z 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-07-17T08:10:19.8865865Z 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-07-17T08:10:19.8871228Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8876626Z 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-07-17T08:10:19.8882213Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8887861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erfinv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8894668Z 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-07-17T08:10:19.8899530Z 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-07-17T08:10:19.8905178Z 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-07-17T08:10:19.8910991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8916422Z 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-07-17T08:10:19.8922463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8928457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\erf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8933913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8939293Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8945301Z 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-07-17T08:10:19.8950878Z 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-07-17T08:10:19.8957183Z 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-07-17T08:10:19.8962905Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8968321Z 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-07-17T08:10:19.8974379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8980043Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8985520Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8990846Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.8996709Z 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-07-17T08:10:19.9002752Z 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-07-17T08:10:19.9007965Z 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-07-17T08:10:19.9014636Z 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-07-17T08:10:19.9020356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9026516Z 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-07-17T08:10:19.9032353Z 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-07-17T08:10:19.9038069Z 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-07-17T08:10:19.9044084Z 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-07-17T08:10:19.9049812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9055595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9061049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9066897Z 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-07-17T08:10:19.9072454Z 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-07-17T08:10:19.9078116Z 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-07-17T08:10:19.9083856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9089539Z 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-07-17T08:10:19.9095411Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9101159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\expm1_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9107216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9114686Z 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-07-17T08:10:19.9120319Z 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-07-17T08:10:19.9126201Z 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-07-17T08:10:19.9132031Z 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-07-17T08:10:19.9137745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9174575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exponential_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9180467Z 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-07-17T08:10:19.9185920Z 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-07-17T08:10:19.9191659Z 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-07-17T08:10:19.9197102Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9202658Z 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-07-17T08:10:19.9208286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9213739Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\exp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9218803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9224537Z 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-07-17T08:10:19.9229916Z 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-07-17T08:10:19.9235664Z 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-07-17T08:10:19.9241502Z 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-07-17T08:10:19.9247587Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9253452Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\eye_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9259257Z 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-07-17T08:10:19.9265363Z 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-07-17T08:10:19.9271627Z 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-07-17T08:10:19.9278267Z 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-07-17T08:10:19.9285036Z 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-07-17T08:10:19.9290954Z 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-07-17T08:10:19.9297321Z 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-07-17T08:10:19.9303390Z 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-07-17T08:10:19.9309643Z 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-07-17T08:10:19.9315432Z 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-07-17T08:10:19.9321337Z 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-07-17T08:10:19.9327265Z 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-07-17T08:10:19.9334446Z 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-07-17T08:10:19.9339265Z 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-07-17T08:10:19.9344998Z 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-07-17T08:10:19.9351083Z 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-07-17T08:10:19.9356987Z 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-07-17T08:10:19.9363144Z 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-07-17T08:10:19.9370674Z 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-07-17T08:10:19.9376850Z 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-07-17T08:10:19.9382983Z 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-07-17T08:10:19.9389483Z 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-07-17T08:10:19.9395648Z 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-07-17T08:10:19.9401539Z 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-07-17T08:10:19.9407542Z 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-07-17T08:10:19.9413738Z 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-07-17T08:10:19.9419863Z 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-07-17T08:10:19.9426336Z 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-07-17T08:10:19.9432164Z 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-07-17T08:10:19.9437948Z 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-07-17T08:10:19.9456899Z 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-07-17T08:10:19.9462981Z 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-07-17T08:10:19.9468946Z 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-07-17T08:10:19.9474841Z 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-07-17T08:10:19.9480744Z 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-07-17T08:10:19.9486622Z 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-07-17T08:10:19.9492563Z 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-07-17T08:10:19.9498914Z 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-07-17T08:10:19.9504810Z 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-07-17T08:10:19.9510946Z 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-07-17T08:10:19.9516714Z 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-07-17T08:10:19.9522460Z 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-07-17T08:10:19.9528545Z 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-07-17T08:10:19.9534485Z 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-07-17T08:10:19.9540447Z 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-07-17T08:10:19.9546462Z 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-07-17T08:10:19.9552283Z 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-07-17T08:10:19.9558238Z 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-07-17T08:10:19.9564058Z 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-07-17T08:10:19.9570404Z 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-07-17T08:10:19.9576174Z 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-07-17T08:10:19.9581799Z 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-07-17T08:10:19.9587533Z 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-07-17T08:10:19.9593607Z 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-07-17T08:10:19.9599229Z 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-07-17T08:10:19.9605106Z 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-07-17T08:10:19.9610878Z 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-07-17T08:10:19.9617027Z 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-07-17T08:10:19.9622570Z 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-07-17T08:10:19.9628534Z 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-07-17T08:10:19.9634635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\feature_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9640738Z 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-07-17T08:10:19.9646336Z 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-07-17T08:10:19.9652571Z 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-07-17T08:10:19.9658501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9699352Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9700425Z 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-07-17T08:10:19.9701509Z 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-07-17T08:10:19.9702454Z 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-07-17T08:10:19.9704751Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9705856Z 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-07-17T08:10:19.9722374Z 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-07-17T08:10:19.9727996Z 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-07-17T08:10:19.9733975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9739665Z 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-07-17T08:10:19.9745407Z 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-07-17T08:10:19.9751142Z 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-07-17T08:10:19.9756813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_fftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9762687Z 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-07-17T08:10:19.9778961Z 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-07-17T08:10:19.9785607Z 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-07-17T08:10:19.9790694Z 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-07-17T08:10:19.9796199Z 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-07-17T08:10:19.9801978Z 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-07-17T08:10:19.9807540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9812821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9818714Z 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-07-17T08:10:19.9824147Z 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-07-17T08:10:19.9829907Z 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-07-17T08:10:19.9835353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_hfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9841437Z 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-07-17T08:10:19.9846967Z 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-07-17T08:10:19.9852516Z 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-07-17T08:10:19.9858505Z 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-07-17T08:10:19.9864012Z 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-07-17T08:10:19.9869472Z 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-07-17T08:10:19.9875260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9880603Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9886293Z 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-07-17T08:10:19.9891905Z 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-07-17T08:10:19.9897391Z 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-07-17T08:10:19.9902861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9908861Z 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-07-17T08:10:19.9914677Z 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-07-17T08:10:19.9920315Z 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-07-17T08:10:19.9925943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ifftshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9931893Z 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-07-17T08:10:19.9937361Z 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-07-17T08:10:19.9942838Z 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-07-17T08:10:19.9948810Z 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-07-17T08:10:19.9954486Z 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-07-17T08:10:19.9960147Z 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-07-17T08:10:19.9965851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9971526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:19.9977869Z 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-07-17T08:10:19.9983480Z 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-07-17T08:10:19.9989600Z 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-07-17T08:10:19.9995530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_ihfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0001724Z 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-07-17T08:10:20.0007294Z 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-07-17T08:10:20.0013092Z 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-07-17T08:10:20.0019187Z 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-07-17T08:10:20.0024712Z 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-07-17T08:10:20.0030355Z 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-07-17T08:10:20.0035986Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0041850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0049348Z 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-07-17T08:10:20.0055361Z 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-07-17T08:10:20.0061108Z 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-07-17T08:10:20.0066781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_irfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0072211Z 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-07-17T08:10:20.0078488Z 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-07-17T08:10:20.0084151Z 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-07-17T08:10:20.0090154Z 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-07-17T08:10:20.0096036Z 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-07-17T08:10:20.0101622Z 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-07-17T08:10:20.0107359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0112865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfft2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0118760Z 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-07-17T08:10:20.0124380Z 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-07-17T08:10:20.0130106Z 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-07-17T08:10:20.0135939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftfreq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0141912Z 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-07-17T08:10:20.0147765Z 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-07-17T08:10:20.0158946Z 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-07-17T08:10:20.0159888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fft_rfftn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0176707Z 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-07-17T08:10:20.0177816Z 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-07-17T08:10:20.0178764Z 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-07-17T08:10:20.0184621Z 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-07-17T08:10:20.0190241Z 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-07-17T08:10:20.0197235Z 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-07-17T08:10:20.0202757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0208091Z 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-07-17T08:10:20.0213851Z 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-07-17T08:10:20.0219568Z 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-07-17T08:10:20.0225657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0231571Z 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-07-17T08:10:20.0236914Z 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-07-17T08:10:20.0242193Z 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-07-17T08:10:20.0261219Z 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-07-17T08:10:20.0266678Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0272378Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fill_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0277809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0283361Z 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-07-17T08:10:20.0288747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0294339Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fix_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0299824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0305145Z 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-07-17T08:10:20.0310881Z 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-07-17T08:10:20.0316915Z 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-07-17T08:10:20.0322619Z 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-07-17T08:10:20.0328426Z 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-07-17T08:10:20.0334033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0339767Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0345340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0350718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0356746Z 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-07-17T08:10:20.0362450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0367724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fliplr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0373421Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0378760Z 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-07-17T08:10:20.0384168Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0389564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flipud_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0395397Z 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-07-17T08:10:20.0401103Z 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-07-17T08:10:20.0406674Z 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-07-17T08:10:20.0412426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0417990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\flip_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0423357Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\float_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0429027Z 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-07-17T08:10:20.0434661Z 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-07-17T08:10:20.0440121Z 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-07-17T08:10:20.0445867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0456597Z 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-07-17T08:10:20.0462276Z 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-07-17T08:10:20.0467987Z 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-07-17T08:10:20.0473635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0479652Z 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-07-17T08:10:20.0485681Z 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-07-17T08:10:20.0491772Z 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-07-17T08:10:20.0497767Z 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-07-17T08:10:20.0503327Z 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-07-17T08:10:20.0509487Z 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-07-17T08:10:20.0515216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0520861Z 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-07-17T08:10:20.0526500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0532334Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\floor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0538390Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0544150Z 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-07-17T08:10:20.0549920Z 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-07-17T08:10:20.0555680Z 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-07-17T08:10:20.0561290Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0567103Z 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-07-17T08:10:20.0573246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0578898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0584568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0590354Z 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-07-17T08:10:20.0595895Z 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-07-17T08:10:20.0601709Z 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-07-17T08:10:20.0607275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0623335Z 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-07-17T08:10:20.0629022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0634670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0640491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0646258Z 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-07-17T08:10:20.0652083Z 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-07-17T08:10:20.0657975Z 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-07-17T08:10:20.0664357Z 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-07-17T08:10:20.0670521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0676989Z 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-07-17T08:10:20.0683515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0689630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\fmod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0695012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0700694Z 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-07-17T08:10:20.0706547Z 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-07-17T08:10:20.0712887Z 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-07-17T08:10:20.0718757Z 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-07-17T08:10:20.0724981Z 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-07-17T08:10:20.0730791Z 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-07-17T08:10:20.0736646Z 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-07-17T08:10:20.0742500Z 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-07-17T08:10:20.0748252Z 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-07-17T08:10:20.0754343Z 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-07-17T08:10:20.0759940Z 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-07-17T08:10:20.0765698Z 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-07-17T08:10:20.0772006Z 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-07-17T08:10:20.0777718Z 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-07-17T08:10:20.0783284Z 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-07-17T08:10:20.0789129Z 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-07-17T08:10:20.0794846Z 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-07-17T08:10:20.0800540Z 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-07-17T08:10:20.0806383Z 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-07-17T08:10:20.0817218Z 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-07-17T08:10:20.0822872Z 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-07-17T08:10:20.0828974Z 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-07-17T08:10:20.0835084Z 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-07-17T08:10:20.0840722Z 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-07-17T08:10:20.0846649Z 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-07-17T08:10:20.0852395Z 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-07-17T08:10:20.0858504Z 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-07-17T08:10:20.0864171Z 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-07-17T08:10:20.0869865Z 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-07-17T08:10:20.0875969Z 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-07-17T08:10:20.0881474Z 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-07-17T08:10:20.0887229Z 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-07-17T08:10:20.0892852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0898428Z 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-07-17T08:10:20.0904001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0909363Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0914909Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0920392Z 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-07-17T08:10:20.0926156Z 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-07-17T08:10:20.0932293Z 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-07-17T08:10:20.0937842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0943577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0949307Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\frobenius_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0962528Z 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-07-17T08:10:20.0968348Z 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-07-17T08:10:20.0974230Z 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-07-17T08:10:20.0979872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_blob.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0985413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\from_file.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.0991662Z 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-07-17T08:10:20.0997664Z 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-07-17T08:10:20.1003230Z 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-07-17T08:10:20.1008739Z 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-07-17T08:10:20.1014552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1020213Z 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-07-17T08:10:20.1025976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1032142Z 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-07-17T08:10:20.1037549Z 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-07-17T08:10:20.1043077Z 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-07-17T08:10:20.1048568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1054267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\full_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1059600Z 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-07-17T08:10:20.1065570Z 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-07-17T08:10:20.1071222Z 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-07-17T08:10:20.1077359Z 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-07-17T08:10:20.1082947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1088393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1094521Z 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-07-17T08:10:20.1100138Z 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-07-17T08:10:20.1105808Z 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-07-17T08:10:20.1111974Z 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-07-17T08:10:20.1118107Z 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-07-17T08:10:20.1123951Z 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-07-17T08:10:20.1129775Z 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-07-17T08:10:20.1135538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1141163Z 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-07-17T08:10:20.1146875Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1152706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gather_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1158734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1164887Z 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-07-17T08:10:20.1170553Z 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-07-17T08:10:20.1176278Z 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-07-17T08:10:20.1181802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1187221Z 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-07-17T08:10:20.1192730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1198680Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gcd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1203946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1217923Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1218873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1221915Z 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-07-17T08:10:20.1227469Z 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-07-17T08:10:20.1233529Z 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-07-17T08:10:20.1239632Z 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-07-17T08:10:20.1246044Z 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-07-17T08:10:20.1272969Z 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-07-17T08:10:20.1278791Z 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-07-17T08:10:20.1284874Z 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-07-17T08:10:20.1290410Z 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-07-17T08:10:20.1296346Z 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-07-17T08:10:20.1301823Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1307561Z 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-07-17T08:10:20.1313418Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1318827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1324425Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1330331Z 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-07-17T08:10:20.1335874Z 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-07-17T08:10:20.1341452Z 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-07-17T08:10:20.1347364Z 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-07-17T08:10:20.1353113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1358749Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geometric_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1364337Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1369724Z 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-07-17T08:10:20.1375381Z 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-07-17T08:10:20.1380945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1386463Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\geqrf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1392094Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1397672Z 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-07-17T08:10:20.1403778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1408925Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ger_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1414685Z 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-07-17T08:10:20.1420022Z 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-07-17T08:10:20.1425666Z 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-07-17T08:10:20.1431388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1436802Z 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-07-17T08:10:20.1442380Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1447768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ge_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1453048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1458930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1464771Z 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-07-17T08:10:20.1470400Z 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-07-17T08:10:20.1475981Z 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-07-17T08:10:20.1481970Z 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-07-17T08:10:20.1487923Z 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-07-17T08:10:20.1493680Z 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-07-17T08:10:20.1499437Z 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-07-17T08:10:20.1505344Z 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-07-17T08:10:20.1511188Z 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-07-17T08:10:20.1517094Z 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-07-17T08:10:20.1522962Z 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-07-17T08:10:20.1528815Z 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-07-17T08:10:20.1534649Z 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-07-17T08:10:20.1540386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_jvp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1545873Z 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-07-17T08:10:20.1551384Z 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-07-17T08:10:20.1557103Z 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-07-17T08:10:20.1562870Z 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-07-17T08:10:20.1568691Z 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-07-17T08:10:20.1574822Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1580610Z 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-07-17T08:10:20.1585839Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1590803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\glu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1596258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1601934Z 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-07-17T08:10:20.1607735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1613457Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gradient_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1619434Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1626460Z 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-07-17T08:10:20.1631736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1637691Z 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-07-17T08:10:20.1643365Z 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-07-17T08:10:20.1649074Z 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-07-17T08:10:20.1655160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1682047Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\greater_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1683092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\grid_sampler.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1684040Z 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-07-17T08:10:20.1685050Z 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-07-17T08:10:20.1693238Z 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-07-17T08:10:20.1694505Z 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-07-17T08:10:20.1699348Z 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-07-17T08:10:20.1705521Z 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-07-17T08:10:20.1710459Z 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-07-17T08:10:20.1717760Z 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-07-17T08:10:20.1722165Z 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-07-17T08:10:20.1729080Z 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-07-17T08:10:20.1733746Z 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-07-17T08:10:20.1739575Z 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-07-17T08:10:20.1745328Z 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-07-17T08:10:20.1751175Z 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-07-17T08:10:20.1757250Z 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-07-17T08:10:20.1762853Z 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-07-17T08:10:20.1768602Z 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-07-17T08:10:20.1775704Z 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-07-17T08:10:20.1780687Z 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-07-17T08:10:20.1787019Z 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-07-17T08:10:20.1792930Z 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-07-17T08:10:20.1798797Z 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-07-17T08:10:20.1804530Z 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-07-17T08:10:20.1810317Z 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-07-17T08:10:20.1816802Z 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-07-17T08:10:20.1822028Z 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-07-17T08:10:20.1827847Z 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-07-17T08:10:20.1833634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\group_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1839483Z 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-07-17T08:10:20.1845107Z 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-07-17T08:10:20.1850830Z 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-07-17T08:10:20.1861552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1863836Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1869396Z 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-07-17T08:10:20.1875240Z 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-07-17T08:10:20.1880863Z 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-07-17T08:10:20.1886615Z 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-07-17T08:10:20.1892133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1897897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gru_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1903082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1908796Z 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-07-17T08:10:20.1914287Z 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-07-17T08:10:20.1919820Z 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-07-17T08:10:20.1925239Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1930964Z 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-07-17T08:10:20.1936609Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1941971Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\gt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1947569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hamming_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1953437Z 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-07-17T08:10:20.1959993Z 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-07-17T08:10:20.1965752Z 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-07-17T08:10:20.1971515Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hann_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.1977385Z 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-07-17T08:10:20.1983354Z 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-07-17T08:10:20.1988848Z 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-07-17T08:10:20.1994486Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2000023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2006035Z 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-07-17T08:10:20.2011573Z 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-07-17T08:10:20.2017256Z 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-07-17T08:10:20.2023609Z 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-07-17T08:10:20.2029687Z 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-07-17T08:10:20.2035597Z 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-07-17T08:10:20.2041306Z 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-07-17T08:10:20.2047250Z 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-07-17T08:10:20.2070856Z 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-07-17T08:10:20.2076786Z 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-07-17T08:10:20.2082627Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2088899Z 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-07-17T08:10:20.2094898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2100572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2106280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2112046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2118221Z 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-07-17T08:10:20.2124249Z 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-07-17T08:10:20.2130496Z 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-07-17T08:10:20.2137643Z 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-07-17T08:10:20.2143385Z 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-07-17T08:10:20.2149299Z 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-07-17T08:10:20.2155018Z 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-07-17T08:10:20.2161223Z 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-07-17T08:10:20.2166366Z 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-07-17T08:10:20.2194185Z 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-07-17T08:10:20.2194635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2195240Z 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-07-17T08:10:20.2195692Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2197684Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardsigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2203671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2209492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2215963Z 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-07-17T08:10:20.2221595Z 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-07-17T08:10:20.2238312Z 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-07-17T08:10:20.2245370Z 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-07-17T08:10:20.2249982Z 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-07-17T08:10:20.2255799Z 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-07-17T08:10:20.2261605Z 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-07-17T08:10:20.2267265Z 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-07-17T08:10:20.2272920Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2278649Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardswish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2284360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2289686Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2296253Z 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-07-17T08:10:20.2301893Z 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-07-17T08:10:20.2307406Z 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-07-17T08:10:20.2313009Z 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-07-17T08:10:20.2318619Z 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-07-17T08:10:20.2325099Z 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-07-17T08:10:20.2330765Z 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-07-17T08:10:20.2336928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2342381Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hardtanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2347946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2353952Z 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-07-17T08:10:20.2374450Z 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-07-17T08:10:20.2380073Z 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-07-17T08:10:20.2385661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2391604Z 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-07-17T08:10:20.2397186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2402743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\heaviside_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2408505Z 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-07-17T08:10:20.2414433Z 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-07-17T08:10:20.2420011Z 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-07-17T08:10:20.2425621Z 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-07-17T08:10:20.2431313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2437154Z 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-07-17T08:10:20.2442834Z 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-07-17T08:10:20.2448393Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2454065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2460040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2465596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2471626Z 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-07-17T08:10:20.2477313Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2482975Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogramdd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2488975Z 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-07-17T08:10:20.2495151Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2500952Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\histogram_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2506667Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2512299Z 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-07-17T08:10:20.2518079Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2523941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2529726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2535532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2541027Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hspmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2546646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2556732Z 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-07-17T08:10:20.2562155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2567517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2573387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\huber_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2579297Z 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-07-17T08:10:20.2585145Z 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-07-17T08:10:20.2590886Z 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-07-17T08:10:20.2596698Z 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-07-17T08:10:20.2602506Z 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-07-17T08:10:20.2608195Z 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-07-17T08:10:20.2614126Z 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-07-17T08:10:20.2619831Z 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-07-17T08:10:20.2625538Z 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-07-17T08:10:20.2631242Z 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-07-17T08:10:20.2636834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2642749Z 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-07-17T08:10:20.2648426Z 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-07-17T08:10:20.2654207Z 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-07-17T08:10:20.2659876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2667549Z 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-07-17T08:10:20.2673306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2679264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\hypot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2685106Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2691544Z 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-07-17T08:10:20.2697625Z 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-07-17T08:10:20.2703815Z 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-07-17T08:10:20.2709714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2715803Z 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-07-17T08:10:20.2721735Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2725628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\i0_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2730879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2736573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2742238Z 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-07-17T08:10:20.2749202Z 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-07-17T08:10:20.2753763Z 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-07-17T08:10:20.2759280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2764795Z 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-07-17T08:10:20.2770795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2776471Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igammac_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2782448Z 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-07-17T08:10:20.2788520Z 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-07-17T08:10:20.2794447Z 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-07-17T08:10:20.2800018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2821452Z 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-07-17T08:10:20.2827233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2832657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\igamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2838271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2843835Z 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-07-17T08:10:20.2849286Z 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-07-17T08:10:20.2854872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2860584Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\im2col_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2866074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2871571Z 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-07-17T08:10:20.2876976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2882253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\imag_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2887497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2893002Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2898978Z 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-07-17T08:10:20.2904849Z 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-07-17T08:10:20.2910640Z 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-07-17T08:10:20.2916265Z 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-07-17T08:10:20.2921838Z 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-07-17T08:10:20.2927477Z 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-07-17T08:10:20.2933270Z 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-07-17T08:10:20.2938794Z 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-07-17T08:10:20.2944966Z 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-07-17T08:10:20.2950562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.2956522Z 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-07-17T08:10:20.2962166Z 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-07-17T08:10:20.2967784Z 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-07-17T08:10:20.2973687Z 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-07-17T08:10:20.2979410Z 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-07-17T08:10:20.2985371Z 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-07-17T08:10:20.2991022Z 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-07-17T08:10:20.2996742Z 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-07-17T08:10:20.3002620Z 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-07-17T08:10:20.3008513Z 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-07-17T08:10:20.3014143Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3020314Z 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-07-17T08:10:20.3026739Z 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-07-17T08:10:20.3032678Z 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-07-17T08:10:20.3038452Z 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-07-17T08:10:20.3058719Z 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-07-17T08:10:20.3064528Z 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-07-17T08:10:20.3070471Z 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-07-17T08:10:20.3075959Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3082043Z 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-07-17T08:10:20.3097841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3098924Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3099831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3105571Z 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-07-17T08:10:20.3111382Z 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-07-17T08:10:20.3117048Z 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-07-17T08:10:20.3122943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3129203Z 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-07-17T08:10:20.3135107Z 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-07-17T08:10:20.3145470Z 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-07-17T08:10:20.3151255Z 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-07-17T08:10:20.3157038Z 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-07-17T08:10:20.3162883Z 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-07-17T08:10:20.3168828Z 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-07-17T08:10:20.3175212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\index_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3181270Z 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-07-17T08:10:20.3187748Z 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-07-17T08:10:20.3193535Z 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-07-17T08:10:20.3199383Z 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-07-17T08:10:20.3205687Z 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-07-17T08:10:20.3212004Z 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-07-17T08:10:20.3217970Z 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-07-17T08:10:20.3225035Z 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-07-17T08:10:20.3229411Z 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-07-17T08:10:20.3235059Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3240707Z 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-07-17T08:10:20.3246329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3252555Z 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-07-17T08:10:20.3258360Z 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-07-17T08:10:20.3263970Z 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-07-17T08:10:20.3269687Z 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-07-17T08:10:20.3275442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3280727Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3286470Z 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-07-17T08:10:20.3292673Z 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-07-17T08:10:20.3298635Z 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-07-17T08:10:20.3304329Z 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-07-17T08:10:20.3309795Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3327856Z 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-07-17T08:10:20.3333650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3339446Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inner_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3345082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\instance_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3350935Z 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-07-17T08:10:20.3356573Z 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-07-17T08:10:20.3362354Z 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-07-17T08:10:20.3367956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\int_repr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3373781Z 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-07-17T08:10:20.3379560Z 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-07-17T08:10:20.3385191Z 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-07-17T08:10:20.3390176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3396683Z 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-07-17T08:10:20.3401100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3406632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\inverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3412468Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3418073Z 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-07-17T08:10:20.3423867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3429607Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isclose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3435472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3441209Z 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-07-17T08:10:20.3447075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3452371Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isfinite_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3458423Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3464055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3470087Z 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-07-17T08:10:20.3475697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3481329Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3487423Z 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-07-17T08:10:20.3493081Z 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-07-17T08:10:20.3499022Z 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-07-17T08:10:20.3504635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3510657Z 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-07-17T08:10:20.3516336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3522134Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3527394Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3533580Z 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-07-17T08:10:20.3539265Z 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-07-17T08:10:20.3544902Z 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-07-17T08:10:20.3552341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3558343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isnan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3564061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3569925Z 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-07-17T08:10:20.3575575Z 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-07-17T08:10:20.3581344Z 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-07-17T08:10:20.3587137Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3592708Z 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-07-17T08:10:20.3598558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3604251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isneginf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3609011Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3616127Z 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-07-17T08:10:20.3621553Z 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-07-17T08:10:20.3627234Z 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-07-17T08:10:20.3633058Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3638771Z 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-07-17T08:10:20.3644555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3649385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isposinf_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3655581Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3660784Z 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-07-17T08:10:20.3666247Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3671689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\isreal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3677160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3682845Z 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-07-17T08:10:20.3688489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3693994Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\istft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3699562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3719551Z 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-07-17T08:10:20.3724999Z 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-07-17T08:10:20.3730345Z 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-07-17T08:10:20.3735913Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_complex.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3741757Z 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-07-17T08:10:20.3747243Z 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-07-17T08:10:20.3752546Z 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-07-17T08:10:20.3758359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3763711Z 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-07-17T08:10:20.3769084Z 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-07-17T08:10:20.3774437Z 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-07-17T08:10:20.3779953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_distributed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3786506Z 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-07-17T08:10:20.3791932Z 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-07-17T08:10:20.3797362Z 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-07-17T08:10:20.3803116Z 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-07-17T08:10:20.3809114Z 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-07-17T08:10:20.3814778Z 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-07-17T08:10:20.3820321Z 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-07-17T08:10:20.3825837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_inference.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3831730Z 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-07-17T08:10:20.3837219Z 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-07-17T08:10:20.3842524Z 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-07-17T08:10:20.3848078Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_leaf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3853609Z 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-07-17T08:10:20.3859375Z 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-07-17T08:10:20.3864670Z 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-07-17T08:10:20.3870244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3875510Z 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-07-17T08:10:20.3880917Z 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-07-17T08:10:20.3886389Z 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-07-17T08:10:20.3895291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3904021Z 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-07-17T08:10:20.3909814Z 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-07-17T08:10:20.3915179Z 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-07-17T08:10:20.3920757Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_pinned.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.3926572Z 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-07-17T08:10:20.3932120Z 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-07-17T08:10:20.3937712Z 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-07-17T08:10:20.3943299Z 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-07-17T08:10:20.3949054Z 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-07-17T08:10:20.3955682Z 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-07-17T08:10:20.3961456Z 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-07-17T08:10:20.3967371Z 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-07-17T08:10:20.3972954Z 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-07-17T08:10:20.3978526Z 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-07-17T08:10:20.3985202Z 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-07-17T08:10:20.3989709Z 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-07-17T08:10:20.3995567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\is_signed.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4001251Z 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-07-17T08:10:20.4006680Z 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-07-17T08:10:20.4012299Z 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-07-17T08:10:20.4017897Z 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-07-17T08:10:20.4023809Z 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-07-17T08:10:20.4029310Z 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-07-17T08:10:20.4034920Z 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-07-17T08:10:20.4040431Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4045984Z 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-07-17T08:10:20.4051458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4056768Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\item_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4062073Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kaiser_window.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4067979Z 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-07-17T08:10:20.4073618Z 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-07-17T08:10:20.4079395Z 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-07-17T08:10:20.4086180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kl_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4091763Z 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-07-17T08:10:20.4096328Z 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-07-17T08:10:20.4101878Z 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-07-17T08:10:20.4107642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4113261Z 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-07-17T08:10:20.4119147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4124850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kron_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4130170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4136604Z 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-07-17T08:10:20.4143857Z 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-07-17T08:10:20.4148367Z 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-07-17T08:10:20.4154077Z 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-07-17T08:10:20.4161015Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4167194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\kthvalue_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4173021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\l1_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4207910Z 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-07-17T08:10:20.4209023Z 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-07-17T08:10:20.4209948Z 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-07-17T08:10:20.4210944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\layer_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4213496Z 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-07-17T08:10:20.4214620Z 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-07-17T08:10:20.4226042Z 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-07-17T08:10:20.4231662Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4236075Z 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-07-17T08:10:20.4242938Z 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-07-17T08:10:20.4247210Z 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-07-17T08:10:20.4252774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4273033Z 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-07-17T08:10:20.4278632Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4284016Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lcm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4290063Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4295047Z 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-07-17T08:10:20.4300575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4306299Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ldexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4312135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4316887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\leaky_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4322425Z 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-07-17T08:10:20.4328559Z 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-07-17T08:10:20.4334351Z 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-07-17T08:10:20.4340002Z 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-07-17T08:10:20.4345560Z 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-07-17T08:10:20.4351515Z 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-07-17T08:10:20.4357193Z 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-07-17T08:10:20.4382766Z 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-07-17T08:10:20.4388741Z 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-07-17T08:10:20.4394398Z 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-07-17T08:10:20.4400193Z 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-07-17T08:10:20.4405813Z 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-07-17T08:10:20.4411464Z 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-07-17T08:10:20.4417230Z 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-07-17T08:10:20.4422938Z 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-07-17T08:10:20.4428472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4434344Z 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-07-17T08:10:20.4444458Z 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-07-17T08:10:20.4449955Z 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-07-17T08:10:20.4455590Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4461225Z 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-07-17T08:10:20.4467273Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4472583Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lerp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4477917Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4483456Z 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-07-17T08:10:20.4489481Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4495487Z 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-07-17T08:10:20.4501060Z 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-07-17T08:10:20.4506593Z 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-07-17T08:10:20.4512598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4518158Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\less_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4524058Z 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-07-17T08:10:20.4537738Z 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-07-17T08:10:20.4543478Z 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-07-17T08:10:20.4549253Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4554651Z 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-07-17T08:10:20.4560624Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4566558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\le_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4572070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4577829Z 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-07-17T08:10:20.4583240Z 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-07-17T08:10:20.4589935Z 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-07-17T08:10:20.4596941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4602079Z 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-07-17T08:10:20.4607282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4614455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4619834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4625092Z 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-07-17T08:10:20.4630040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_fresh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4636531Z 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-07-17T08:10:20.4641514Z 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-07-17T08:10:20.4649279Z 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-07-17T08:10:20.4655115Z 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-07-17T08:10:20.4660722Z 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-07-17T08:10:20.4666648Z 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-07-17T08:10:20.4672259Z 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-07-17T08:10:20.4677984Z 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-07-17T08:10:20.4699699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4700618Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4705882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cholesky.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4712223Z 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-07-17T08:10:20.4718099Z 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-07-17T08:10:20.4724403Z 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-07-17T08:10:20.4728788Z 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-07-17T08:10:20.4735372Z 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-07-17T08:10:20.4741054Z 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-07-17T08:10:20.4746895Z 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-07-17T08:10:20.4752747Z 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-07-17T08:10:20.4758434Z 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-07-17T08:10:20.4764231Z 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-07-17T08:10:20.4769781Z 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-07-17T08:10:20.4775466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cond.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4785840Z 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-07-17T08:10:20.4791430Z 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-07-17T08:10:20.4797024Z 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-07-17T08:10:20.4802728Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_cross.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4808741Z 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-07-17T08:10:20.4814677Z 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-07-17T08:10:20.4820379Z 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-07-17T08:10:20.4826292Z 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-07-17T08:10:20.4832680Z 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-07-17T08:10:20.4837922Z 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-07-17T08:10:20.4843529Z 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-07-17T08:10:20.4849195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4855517Z 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-07-17T08:10:20.4861122Z 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-07-17T08:10:20.4866649Z 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-07-17T08:10:20.4872237Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_diagonal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4878167Z 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-07-17T08:10:20.4883754Z 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-07-17T08:10:20.4889193Z 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-07-17T08:10:20.4894932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eig.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4900625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4906364Z 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-07-17T08:10:20.4942046Z 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-07-17T08:10:20.4947613Z 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-07-17T08:10:20.4953217Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4958934Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_eigvalsh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.4964877Z 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-07-17T08:10:20.4970752Z 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-07-17T08:10:20.4977145Z 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-07-17T08:10:20.4983281Z 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-07-17T08:10:20.4989843Z 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-07-17T08:10:20.4995543Z 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-07-17T08:10:20.5001286Z 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-07-17T08:10:20.5007022Z 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-07-17T08:10:20.5012226Z 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-07-17T08:10:20.5018787Z 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-07-17T08:10:20.5024540Z 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-07-17T08:10:20.5030022Z 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-07-17T08:10:20.5036113Z 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-07-17T08:10:20.5041831Z 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-07-17T08:10:20.5048137Z 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-07-17T08:10:20.5054085Z 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-07-17T08:10:20.5060003Z 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-07-17T08:10:20.5065845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_inv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5072034Z 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-07-17T08:10:20.5077659Z 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-07-17T08:10:20.5083826Z 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-07-17T08:10:20.5089472Z 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-07-17T08:10:20.5096423Z 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-07-17T08:10:20.5102336Z 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-07-17T08:10:20.5112744Z 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-07-17T08:10:20.5118479Z 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-07-17T08:10:20.5124145Z 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-07-17T08:10:20.5130096Z 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-07-17T08:10:20.5135648Z 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-07-17T08:10:20.5141499Z 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-07-17T08:10:20.5147813Z 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-07-17T08:10:20.5153570Z 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-07-17T08:10:20.5159668Z 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-07-17T08:10:20.5165879Z 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-07-17T08:10:20.5172385Z 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-07-17T08:10:20.5178317Z 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-07-17T08:10:20.5187805Z 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-07-17T08:10:20.5190864Z 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-07-17T08:10:20.5209097Z 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-07-17T08:10:20.5210120Z 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-07-17T08:10:20.5211233Z 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-07-17T08:10:20.5215973Z 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-07-17T08:10:20.5222477Z 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-07-17T08:10:20.5228394Z 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-07-17T08:10:20.5234555Z 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-07-17T08:10:20.5240325Z 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-07-17T08:10:20.5246276Z 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-07-17T08:10:20.5252109Z 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-07-17T08:10:20.5258205Z 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-07-17T08:10:20.5263911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lstsq.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5269658Z 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-07-17T08:10:20.5275271Z 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-07-17T08:10:20.5281060Z 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-07-17T08:10:20.5286750Z 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-07-17T08:10:20.5292818Z 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-07-17T08:10:20.5298745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_lu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5304801Z 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-07-17T08:10:20.5310386Z 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-07-17T08:10:20.5316114Z 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-07-17T08:10:20.5321773Z 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-07-17T08:10:20.5327739Z 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-07-17T08:10:20.5333862Z 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-07-17T08:10:20.5340381Z 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-07-17T08:10:20.5345848Z 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-07-17T08:10:20.5351907Z 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-07-17T08:10:20.5357646Z 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-07-17T08:10:20.5363299Z 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-07-17T08:10:20.5369119Z 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-07-17T08:10:20.5375174Z 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-07-17T08:10:20.5380811Z 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-07-17T08:10:20.5386465Z 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-07-17T08:10:20.5406088Z 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-07-17T08:10:20.5411476Z 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-07-17T08:10:20.5417197Z 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-07-17T08:10:20.5422896Z 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-07-17T08:10:20.5428811Z 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-07-17T08:10:20.5434858Z 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-07-17T08:10:20.5440504Z 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-07-17T08:10:20.5446188Z 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-07-17T08:10:20.5452077Z 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-07-17T08:10:20.5458028Z 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-07-17T08:10:20.5463715Z 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-07-17T08:10:20.5469494Z 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-07-17T08:10:20.5475098Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5480885Z 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-07-17T08:10:20.5486593Z 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-07-17T08:10:20.5492426Z 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-07-17T08:10:20.5498165Z 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-07-17T08:10:20.5504251Z 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-07-17T08:10:20.5510111Z 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-07-17T08:10:20.5520900Z 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-07-17T08:10:20.5526543Z 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-07-17T08:10:20.5532433Z 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-07-17T08:10:20.5538186Z 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-07-17T08:10:20.5544182Z 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-07-17T08:10:20.5550192Z 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-07-17T08:10:20.5556002Z 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-07-17T08:10:20.5561343Z 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-07-17T08:10:20.5567321Z 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-07-17T08:10:20.5573054Z 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-07-17T08:10:20.5578779Z 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-07-17T08:10:20.5584712Z 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-07-17T08:10:20.5590724Z 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-07-17T08:10:20.5612652Z 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-07-17T08:10:20.5618291Z 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-07-17T08:10:20.5624293Z 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-07-17T08:10:20.5630274Z 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-07-17T08:10:20.5635972Z 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-07-17T08:10:20.5641863Z 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-07-17T08:10:20.5647422Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5653677Z 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-07-17T08:10:20.5659629Z 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-07-17T08:10:20.5665283Z 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-07-17T08:10:20.5671166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_pinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5677481Z 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-07-17T08:10:20.5684083Z 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-07-17T08:10:20.5690447Z 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-07-17T08:10:20.5696584Z 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-07-17T08:10:20.5702508Z 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-07-17T08:10:20.5708851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5715226Z 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-07-17T08:10:20.5721469Z 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-07-17T08:10:20.5727862Z 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-07-17T08:10:20.5733808Z 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-07-17T08:10:20.5739638Z 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-07-17T08:10:20.5745481Z 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-07-17T08:10:20.5751325Z 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-07-17T08:10:20.5757325Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5763304Z 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-07-17T08:10:20.5778148Z 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-07-17T08:10:20.5783865Z 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-07-17T08:10:20.5789509Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5800380Z 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-07-17T08:10:20.5806270Z 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-07-17T08:10:20.5813006Z 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-07-17T08:10:20.5818035Z 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-07-17T08:10:20.5823642Z 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-07-17T08:10:20.5829346Z 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-07-17T08:10:20.5834777Z 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-07-17T08:10:20.5840499Z 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-07-17T08:10:20.5846305Z 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-07-17T08:10:20.5852332Z 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-07-17T08:10:20.5858059Z 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-07-17T08:10:20.5863811Z 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-07-17T08:10:20.5869622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5875480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_svdvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5881948Z 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-07-17T08:10:20.5887841Z 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-07-17T08:10:20.5893849Z 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-07-17T08:10:20.5899915Z 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-07-17T08:10:20.5905838Z 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-07-17T08:10:20.5911505Z 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-07-17T08:10:20.5917365Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5923441Z 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-07-17T08:10:20.5929312Z 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-07-17T08:10:20.5935372Z 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-07-17T08:10:20.5941724Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_tensorsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5947715Z 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-07-17T08:10:20.5953584Z 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-07-17T08:10:20.5959380Z 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-07-17T08:10:20.5973532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.5974154Z 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-07-17T08:10:20.5979816Z 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-07-17T08:10:20.5985543Z 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-07-17T08:10:20.5991101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linalg_vecdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6014426Z 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-07-17T08:10:20.6036783Z 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-07-17T08:10:20.6042544Z 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-07-17T08:10:20.6048666Z 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-07-17T08:10:20.6054648Z 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-07-17T08:10:20.6060230Z 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-07-17T08:10:20.6065864Z 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-07-17T08:10:20.6071853Z 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-07-17T08:10:20.6077637Z 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-07-17T08:10:20.6083736Z 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-07-17T08:10:20.6100425Z 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-07-17T08:10:20.6100837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6102244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6108427Z 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-07-17T08:10:20.6114114Z 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-07-17T08:10:20.6119739Z 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-07-17T08:10:20.6126541Z 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-07-17T08:10:20.6132544Z 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-07-17T08:10:20.6138295Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6144084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6151220Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6155776Z 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-07-17T08:10:20.6161189Z 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-07-17T08:10:20.6167360Z 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-07-17T08:10:20.6173043Z 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-07-17T08:10:20.6178602Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6184564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\linspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6190203Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6195344Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6201065Z 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-07-17T08:10:20.6206487Z 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-07-17T08:10:20.6212394Z 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-07-17T08:10:20.6217977Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6223557Z 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-07-17T08:10:20.6229244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6234803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log10_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6240852Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6246834Z 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-07-17T08:10:20.6252617Z 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-07-17T08:10:20.6258176Z 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-07-17T08:10:20.6263805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6269269Z 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-07-17T08:10:20.6274855Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6280488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log1p_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6286156Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6291992Z 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-07-17T08:10:20.6297684Z 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-07-17T08:10:20.6303197Z 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-07-17T08:10:20.6308787Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6314492Z 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-07-17T08:10:20.6319956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6325286Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6330577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6336230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6342561Z 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-07-17T08:10:20.6348445Z 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-07-17T08:10:20.6354517Z 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-07-17T08:10:20.6360206Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6365902Z 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-07-17T08:10:20.6371679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6394297Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6400649Z 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-07-17T08:10:20.6406378Z 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-07-17T08:10:20.6412357Z 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-07-17T08:10:20.6418300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6424060Z 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-07-17T08:10:20.6429808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6435824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logaddexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6441445Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6447582Z 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-07-17T08:10:20.6453427Z 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-07-17T08:10:20.6459201Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6464902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6470545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6476107Z 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-07-17T08:10:20.6481754Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6488127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6494252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_and.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6500082Z 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-07-17T08:10:20.6505706Z 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-07-17T08:10:20.6511465Z 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-07-17T08:10:20.6517911Z 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-07-17T08:10:20.6523564Z 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-07-17T08:10:20.6529500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_not.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6535925Z 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-07-17T08:10:20.6541496Z 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-07-17T08:10:20.6547352Z 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-07-17T08:10:20.6553349Z 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-07-17T08:10:20.6559570Z 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-07-17T08:10:20.6565523Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6571696Z 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-07-17T08:10:20.6577834Z 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-07-17T08:10:20.6586009Z 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-07-17T08:10:20.6596491Z 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-07-17T08:10:20.6603459Z 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-07-17T08:10:20.6607746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logical_xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6613920Z 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-07-17T08:10:20.6619873Z 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-07-17T08:10:20.6625559Z 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-07-17T08:10:20.6631386Z 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-07-17T08:10:20.6636995Z 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-07-17T08:10:20.6642530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6647911Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6654209Z 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-07-17T08:10:20.6660018Z 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-07-17T08:10:20.6665670Z 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-07-17T08:10:20.6671358Z 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-07-17T08:10:20.6677063Z 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-07-17T08:10:20.6683345Z 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-07-17T08:10:20.6688562Z 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-07-17T08:10:20.6694266Z 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-07-17T08:10:20.6700268Z 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-07-17T08:10:20.6706387Z 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-07-17T08:10:20.6712493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6717772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6723493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6729163Z 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-07-17T08:10:20.6734936Z 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-07-17T08:10:20.6740457Z 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-07-17T08:10:20.6746374Z 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-07-17T08:10:20.6752032Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6757645Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logspace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6763404Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6769339Z 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-07-17T08:10:20.6775138Z 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-07-17T08:10:20.6781069Z 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-07-17T08:10:20.6786962Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6792504Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\logsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6798597Z 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-07-17T08:10:20.6804921Z 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-07-17T08:10:20.6810944Z 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-07-17T08:10:20.6817123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6822721Z 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-07-17T08:10:20.6829023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6834993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6842183Z 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-07-17T08:10:20.6847985Z 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-07-17T08:10:20.6853794Z 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-07-17T08:10:20.6858634Z 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-07-17T08:10:20.6865855Z 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-07-17T08:10:20.6871484Z 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-07-17T08:10:20.6877136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6900540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6906182Z 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-07-17T08:10:20.6912038Z 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-07-17T08:10:20.6917978Z 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-07-17T08:10:20.6923880Z 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-07-17T08:10:20.6929664Z 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-07-17T08:10:20.6936203Z 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-07-17T08:10:20.6942074Z 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-07-17T08:10:20.6947857Z 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-07-17T08:10:20.6953725Z 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-07-17T08:10:20.6959611Z 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-07-17T08:10:20.6965381Z 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-07-17T08:10:20.6971441Z 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-07-17T08:10:20.6977360Z 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-07-17T08:10:20.6982995Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.6988848Z 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-07-17T08:10:20.6994754Z 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-07-17T08:10:20.7000839Z 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-07-17T08:10:20.7006586Z 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-07-17T08:10:20.7012716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7018528Z 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-07-17T08:10:20.7024046Z 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-07-17T08:10:20.7029714Z 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-07-17T08:10:20.7035664Z 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-07-17T08:10:20.7041350Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7047092Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7053230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7058797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_cell.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7064518Z 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-07-17T08:10:20.7070120Z 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-07-17T08:10:20.7075706Z 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-07-17T08:10:20.7082521Z 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-07-17T08:10:20.7087107Z 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-07-17T08:10:20.7093178Z 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-07-17T08:10:20.7099010Z 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-07-17T08:10:20.7104534Z 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-07-17T08:10:20.7110331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7115931Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lstm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7121136Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7126791Z 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-07-17T08:10:20.7132341Z 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-07-17T08:10:20.7138005Z 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-07-17T08:10:20.7143532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7148959Z 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-07-17T08:10:20.7154503Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7160022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7165447Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7171399Z 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-07-17T08:10:20.7176940Z 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-07-17T08:10:20.7182290Z 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-07-17T08:10:20.7187956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\lu_unpack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7193953Z 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-07-17T08:10:20.7199863Z 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-07-17T08:10:20.7205570Z 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-07-17T08:10:20.7211256Z 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-07-17T08:10:20.7217017Z 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-07-17T08:10:20.7222710Z 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-07-17T08:10:20.7228419Z 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-07-17T08:10:20.7234273Z 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-07-17T08:10:20.7239966Z 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-07-17T08:10:20.7245546Z 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-07-17T08:10:20.7251090Z 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-07-17T08:10:20.7256800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_fill.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7262614Z 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-07-17T08:10:20.7268502Z 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-07-17T08:10:20.7274786Z 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-07-17T08:10:20.7318627Z 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-07-17T08:10:20.7319078Z 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-07-17T08:10:20.7319509Z 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-07-17T08:10:20.7320019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7327719Z 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-07-17T08:10:20.7334317Z 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-07-17T08:10:20.7340088Z 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-07-17T08:10:20.7346077Z 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-07-17T08:10:20.7352617Z 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-07-17T08:10:20.7358286Z 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-07-17T08:10:20.7364071Z 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-07-17T08:10:20.7369990Z 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-07-17T08:10:20.7376333Z 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-07-17T08:10:20.7382284Z 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-07-17T08:10:20.7388114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\masked_select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7393810Z 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-07-17T08:10:20.7399774Z 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-07-17T08:10:20.7405815Z 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-07-17T08:10:20.7411606Z 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-07-17T08:10:20.7417255Z 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-07-17T08:10:20.7423122Z 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-07-17T08:10:20.7428971Z 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-07-17T08:10:20.7434515Z 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-07-17T08:10:20.7440093Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7445557Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7451649Z 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-07-17T08:10:20.7457306Z 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-07-17T08:10:20.7463019Z 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-07-17T08:10:20.7468880Z 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-07-17T08:10:20.7474492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7480215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matmul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7511055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7516931Z 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-07-17T08:10:20.7522909Z 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-07-17T08:10:20.7528456Z 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-07-17T08:10:20.7534052Z 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-07-17T08:10:20.7539967Z 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-07-17T08:10:20.7545523Z 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-07-17T08:10:20.7550983Z 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-07-17T08:10:20.7556765Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_H.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7562459Z 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-07-17T08:10:20.7568038Z 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-07-17T08:10:20.7573650Z 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-07-17T08:10:20.7579132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\matrix_power.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7585084Z 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-07-17T08:10:20.7590884Z 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-07-17T08:10:20.7596710Z 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-07-17T08:10:20.7602244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7624867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7630657Z 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-07-17T08:10:20.7636160Z 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-07-17T08:10:20.7641701Z 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-07-17T08:10:20.7647517Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7653323Z 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-07-17T08:10:20.7659199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7665060Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\maximum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7671276Z 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-07-17T08:10:20.7677243Z 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-07-17T08:10:20.7683216Z 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-07-17T08:10:20.7688886Z 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-07-17T08:10:20.7694547Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7700610Z 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-07-17T08:10:20.7706784Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7712396Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7717957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7724262Z 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-07-17T08:10:20.7730139Z 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-07-17T08:10:20.7736329Z 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-07-17T08:10:20.7741989Z 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-07-17T08:10:20.7748315Z 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-07-17T08:10:20.7754107Z 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-07-17T08:10:20.7759835Z 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-07-17T08:10:20.7765460Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7771982Z 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-07-17T08:10:20.7777464Z 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-07-17T08:10:20.7783243Z 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-07-17T08:10:20.7789912Z 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-07-17T08:10:20.7795634Z 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-07-17T08:10:20.7801215Z 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-07-17T08:10:20.7806986Z 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-07-17T08:10:20.7813002Z 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-07-17T08:10:20.7818866Z 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-07-17T08:10:20.7825302Z 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-07-17T08:10:20.7831042Z 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-07-17T08:10:20.7836768Z 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-07-17T08:10:20.7842496Z 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-07-17T08:10:20.7848366Z 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-07-17T08:10:20.7854817Z 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-07-17T08:10:20.7860505Z 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-07-17T08:10:20.7866706Z 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-07-17T08:10:20.7872417Z 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-07-17T08:10:20.7878215Z 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-07-17T08:10:20.7884262Z 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-07-17T08:10:20.7890234Z 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-07-17T08:10:20.7896051Z 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-07-17T08:10:20.7901898Z 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-07-17T08:10:20.7907456Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_pool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.7913334Z 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-07-17T08:10:20.7919182Z 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-07-17T08:10:20.7924827Z 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-07-17T08:10:20.7930576Z 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-07-17T08:10:20.7936867Z 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-07-17T08:10:20.7942643Z 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-07-17T08:10:20.7948432Z 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-07-17T08:10:20.7954458Z 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-07-17T08:10:20.7993056Z 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-07-17T08:10:20.7999117Z 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-07-17T08:10:20.8004907Z 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-07-17T08:10:20.8011840Z 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-07-17T08:10:20.8017821Z 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-07-17T08:10:20.8023776Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8030089Z 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-07-17T08:10:20.8035909Z 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-07-17T08:10:20.8047131Z 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-07-17T08:10:20.8053008Z 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-07-17T08:10:20.8058873Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\max_unpool3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8064921Z 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-07-17T08:10:20.8071435Z 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-07-17T08:10:20.8077940Z 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-07-17T08:10:20.8083892Z 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-07-17T08:10:20.8089745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8095720Z 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-07-17T08:10:20.8101413Z 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-07-17T08:10:20.8107168Z 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-07-17T08:10:20.8112819Z 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-07-17T08:10:20.8118625Z 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-07-17T08:10:20.8124346Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8130112Z 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-07-17T08:10:20.8135973Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8141704Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8147340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8153150Z 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-07-17T08:10:20.8158859Z 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-07-17T08:10:20.8164678Z 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-07-17T08:10:20.8170343Z 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-07-17T08:10:20.8176067Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8181957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\median_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8187572Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8193272Z 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-07-17T08:10:20.8199522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8226406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\meshgrid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8227322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8228413Z 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-07-17T08:10:20.8229465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8233928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mH_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8239432Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8244951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8250807Z 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-07-17T08:10:20.8257832Z 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-07-17T08:10:20.8263720Z 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-07-17T08:10:20.8269387Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8275163Z 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-07-17T08:10:20.8280930Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8286409Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\minimum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8292408Z 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-07-17T08:10:20.8309262Z 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-07-17T08:10:20.8314737Z 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-07-17T08:10:20.8350421Z 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-07-17T08:10:20.8355950Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8361272Z 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-07-17T08:10:20.8366850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8372420Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\min_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8377867Z 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-07-17T08:10:20.8384121Z 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-07-17T08:10:20.8389873Z 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-07-17T08:10:20.8395472Z 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-07-17T08:10:20.8401261Z 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-07-17T08:10:20.8406960Z 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-07-17T08:10:20.8413211Z 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-07-17T08:10:20.8419140Z 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-07-17T08:10:20.8424823Z 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-07-17T08:10:20.8430405Z 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-07-17T08:10:20.8436082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8442028Z 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-07-17T08:10:20.8447911Z 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-07-17T08:10:20.8453998Z 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-07-17T08:10:20.8459835Z 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-07-17T08:10:20.8465855Z 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-07-17T08:10:20.8471606Z 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-07-17T08:10:20.8477477Z 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-07-17T08:10:20.8483327Z 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-07-17T08:10:20.8489292Z 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-07-17T08:10:20.8495423Z 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-07-17T08:10:20.8501158Z 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-07-17T08:10:20.8506918Z 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-07-17T08:10:20.8517911Z 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-07-17T08:10:20.8523894Z 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-07-17T08:10:20.8530202Z 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-07-17T08:10:20.8536138Z 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-07-17T08:10:20.8541745Z 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-07-17T08:10:20.8547488Z 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-07-17T08:10:20.8553764Z 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-07-17T08:10:20.8559573Z 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-07-17T08:10:20.8565627Z 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-07-17T08:10:20.8571686Z 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-07-17T08:10:20.8577369Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\miopen_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8583156Z 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-07-17T08:10:20.8589255Z 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-07-17T08:10:20.8594907Z 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-07-17T08:10:20.8600988Z 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-07-17T08:10:20.8606849Z 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-07-17T08:10:20.8613139Z 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-07-17T08:10:20.8622166Z 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-07-17T08:10:20.8625342Z 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-07-17T08:10:20.8631255Z 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-07-17T08:10:20.8637232Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8642831Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8649028Z 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-07-17T08:10:20.8655237Z 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-07-17T08:10:20.8660951Z 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-07-17T08:10:20.8666786Z 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-07-17T08:10:20.8672924Z 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-07-17T08:10:20.8679118Z 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-07-17T08:10:20.8684686Z 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-07-17T08:10:20.8690510Z 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-07-17T08:10:20.8696226Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8701854Z 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-07-17T08:10:20.8707482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8737349Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mish_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8743036Z 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-07-17T08:10:20.8749384Z 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-07-17T08:10:20.8755695Z 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-07-17T08:10:20.8761652Z 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-07-17T08:10:20.8767781Z 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-07-17T08:10:20.8781136Z 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-07-17T08:10:20.8787102Z 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-07-17T08:10:20.8793876Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8798808Z 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-07-17T08:10:20.8804567Z 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-07-17T08:10:20.8810315Z 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-07-17T08:10:20.8815958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mkldnn_linear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.8822042Z 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-07-17T08:10:20.8832450Z 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-07-17T08:10:20.8838151Z 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-07-17T08:10:20.8844416Z 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-07-17T08:10:20.8851271Z 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-07-17T08:10:20.8856570Z 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-07-17T08:10:20.8862069Z 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-07-17T08:10:20.8867873Z 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-07-17T08:10:20.8873619Z 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-07-17T08:10:20.8879645Z 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-07-17T08:10:20.8885525Z 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-07-17T08:10:20.8891416Z 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-07-17T08:10:20.8897456Z 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-07-17T08:10:20.8903236Z 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-07-17T08:10:20.8909046Z 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-07-17T08:10:20.8914627Z 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-07-17T08:10:20.8920525Z 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-07-17T08:10:20.8927064Z 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-07-17T08:10:20.8932723Z 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-07-17T08:10:20.8938483Z 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-07-17T08:10:20.8944537Z 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-07-17T08:10:20.8950199Z 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-07-17T08:10:20.8955935Z 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-07-17T08:10:20.8961836Z 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-07-17T08:10:20.8967797Z 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-07-17T08:10:20.8973983Z 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-07-17T08:10:20.8979852Z 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-07-17T08:10:20.8985656Z 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-07-17T08:10:20.8991543Z 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-07-17T08:10:20.8997415Z 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-07-17T08:10:20.9003285Z 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-07-17T08:10:20.9008931Z 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-07-17T08:10:20.9015265Z 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-07-17T08:10:20.9021100Z 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-07-17T08:10:20.9026861Z 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-07-17T08:10:20.9032667Z 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-07-17T08:10:20.9039228Z 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-07-17T08:10:20.9045240Z 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-07-17T08:10:20.9051702Z 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-07-17T08:10:20.9057419Z 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-07-17T08:10:20.9063393Z 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-07-17T08:10:20.9069544Z 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-07-17T08:10:20.9076673Z 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-07-17T08:10:20.9088266Z 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-07-17T08:10:20.9094317Z 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-07-17T08:10:20.9099635Z 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-07-17T08:10:20.9106057Z 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-07-17T08:10:20.9111717Z 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-07-17T08:10:20.9117461Z 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-07-17T08:10:20.9134593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9140279Z 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-07-17T08:10:20.9145846Z 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-07-17T08:10:20.9150627Z 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-07-17T08:10:20.9163282Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9164356Z 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-07-17T08:10:20.9167518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9173196Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9178575Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9184514Z 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-07-17T08:10:20.9190459Z 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-07-17T08:10:20.9195974Z 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-07-17T08:10:20.9201427Z 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-07-17T08:10:20.9207865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9213764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mode_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9219453Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9225172Z 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-07-17T08:10:20.9230880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9236701Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\moveaxis_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9242315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9248110Z 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-07-17T08:10:20.9253991Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9259676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\movedim_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9279559Z 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-07-17T08:10:20.9285558Z 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-07-17T08:10:20.9291094Z 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-07-17T08:10:20.9297458Z 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-07-17T08:10:20.9303438Z 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-07-17T08:10:20.9309965Z 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-07-17T08:10:20.9315873Z 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-07-17T08:10:20.9321848Z 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-07-17T08:10:20.9327323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mse_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9332913Z 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-07-17T08:10:20.9338628Z 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-07-17T08:10:20.9344599Z 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-07-17T08:10:20.9350355Z 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-07-17T08:10:20.9356457Z 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-07-17T08:10:20.9362481Z 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-07-17T08:10:20.9406894Z 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-07-17T08:10:20.9407921Z 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-07-17T08:10:20.9408905Z 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-07-17T08:10:20.9409880Z 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-07-17T08:10:20.9412288Z 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-07-17T08:10:20.9413262Z 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-07-17T08:10:20.9414233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9415279Z 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-07-17T08:10:20.9419537Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9425175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\msort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9431135Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9436479Z 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-07-17T08:10:20.9442165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9447478Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mT_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9452835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9458541Z 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-07-17T08:10:20.9464508Z 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-07-17T08:10:20.9470266Z 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-07-17T08:10:20.9476222Z 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-07-17T08:10:20.9481880Z 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-07-17T08:10:20.9492891Z 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-07-17T08:10:20.9498722Z 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-07-17T08:10:20.9504347Z 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-07-17T08:10:20.9510247Z 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-07-17T08:10:20.9516312Z 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-07-17T08:10:20.9522109Z 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-07-17T08:10:20.9527713Z 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-07-17T08:10:20.9534102Z 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-07-17T08:10:20.9540414Z 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-07-17T08:10:20.9546026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9551776Z 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-07-17T08:10:20.9557296Z 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-07-17T08:10:20.9563461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9569209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multinomial_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9574879Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9580710Z 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-07-17T08:10:20.9586076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9592057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\multiply_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9597689Z 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-07-17T08:10:20.9603412Z 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-07-17T08:10:20.9609292Z 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-07-17T08:10:20.9615085Z 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-07-17T08:10:20.9620830Z 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-07-17T08:10:20.9626502Z 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-07-17T08:10:20.9632611Z 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-07-17T08:10:20.9638332Z 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-07-17T08:10:20.9644046Z 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-07-17T08:10:20.9649881Z 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-07-17T08:10:20.9656037Z 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-07-17T08:10:20.9661884Z 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-07-17T08:10:20.9667775Z 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-07-17T08:10:20.9673376Z 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-07-17T08:10:20.9679062Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9684359Z 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-07-17T08:10:20.9689967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9714416Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mul_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9720165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9725996Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9732037Z 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-07-17T08:10:20.9738199Z 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-07-17T08:10:20.9744295Z 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-07-17T08:10:20.9750127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9756679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mvlgamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9762967Z 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-07-17T08:10:20.9768595Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9774526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\mv_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9780077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9785685Z 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-07-17T08:10:20.9791165Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9798147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmean_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9802458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9808278Z 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-07-17T08:10:20.9814063Z 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-07-17T08:10:20.9819911Z 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-07-17T08:10:20.9825555Z 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-07-17T08:10:20.9831426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9837022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanmedian_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9842789Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9848593Z 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-07-17T08:10:20.9854020Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9859832Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nanquantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9865490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9871105Z 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-07-17T08:10:20.9876752Z 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-07-17T08:10:20.9882323Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9887947Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nansum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9893583Z 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-07-17T08:10:20.9899288Z 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-07-17T08:10:20.9905108Z 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-07-17T08:10:20.9910769Z 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-07-17T08:10:20.9916401Z 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-07-17T08:10:20.9922052Z 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-07-17T08:10:20.9927720Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9933797Z 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-07-17T08:10:20.9939246Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9945158Z 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-07-17T08:10:20.9950842Z 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-07-17T08:10:20.9956517Z 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-07-17T08:10:20.9962144Z 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-07-17T08:10:20.9967736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9973443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\narrow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:20.9979575Z 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-07-17T08:10:20.9985317Z 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-07-17T08:10:20.9991398Z 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-07-17T08:10:20.9997099Z 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-07-17T08:10:21.0002896Z 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-07-17T08:10:21.0008585Z 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-07-17T08:10:21.0014369Z 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-07-17T08:10:21.0021317Z 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-07-17T08:10:21.0027326Z 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-07-17T08:10:21.0033125Z 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-07-17T08:10:21.0039031Z 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-07-17T08:10:21.0048821Z 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-07-17T08:10:21.0056277Z 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-07-17T08:10:21.0061947Z 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-07-17T08:10:21.0068162Z 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-07-17T08:10:21.0073058Z 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-07-17T08:10:21.0079659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0085306Z 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-07-17T08:10:21.0091728Z 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-07-17T08:10:21.0098029Z 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-07-17T08:10:21.0104053Z 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-07-17T08:10:21.0109982Z 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-07-17T08:10:21.0115712Z 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-07-17T08:10:21.0121810Z 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-07-17T08:10:21.0127743Z 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-07-17T08:10:21.0133702Z 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-07-17T08:10:21.0139769Z 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-07-17T08:10:21.0165844Z 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-07-17T08:10:21.0171567Z 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-07-17T08:10:21.0177514Z 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-07-17T08:10:21.0183555Z 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-07-17T08:10:21.0189232Z 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-07-17T08:10:21.0195365Z 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-07-17T08:10:21.0201307Z 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-07-17T08:10:21.0207191Z 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-07-17T08:10:21.0214185Z 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-07-17T08:10:21.0220676Z 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-07-17T08:10:21.0226846Z 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-07-17T08:10:21.0234216Z 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-07-17T08:10:21.0238793Z 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-07-17T08:10:21.0246248Z 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-07-17T08:10:21.0252343Z 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-07-17T08:10:21.0257445Z 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-07-17T08:10:21.0264047Z 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-07-17T08:10:21.0269539Z 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-07-17T08:10:21.0275368Z 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-07-17T08:10:21.0281286Z 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-07-17T08:10:21.0287523Z 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-07-17T08:10:21.0293330Z 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-07-17T08:10:21.0299022Z 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-07-17T08:10:21.0305042Z 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-07-17T08:10:21.0310963Z 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-07-17T08:10:21.0316596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\native_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0322598Z 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-07-17T08:10:21.0328320Z 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-07-17T08:10:21.0334066Z 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-07-17T08:10:21.0339745Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0345126Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0351025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0356648Z 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-07-17T08:10:21.0361919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0367336Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\negative_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0373350Z 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-07-17T08:10:21.0378790Z 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-07-17T08:10:21.0384215Z 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-07-17T08:10:21.0390141Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0395336Z 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-07-17T08:10:21.0400689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0406359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\neg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0411790Z 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-07-17T08:10:21.0417593Z 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-07-17T08:10:21.0423185Z 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-07-17T08:10:21.0429169Z 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-07-17T08:10:21.0434910Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_empty.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0440786Z 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-07-17T08:10:21.0446250Z 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-07-17T08:10:21.0451989Z 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-07-17T08:10:21.0457838Z 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-07-17T08:10:21.0463818Z 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-07-17T08:10:21.0471036Z 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-07-17T08:10:21.0476922Z 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-07-17T08:10:21.0482735Z 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-07-17T08:10:21.0488657Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_full.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0494661Z 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-07-17T08:10:21.0500200Z 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-07-17T08:10:21.0505925Z 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-07-17T08:10:21.0511821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0517764Z 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-07-17T08:10:21.0523439Z 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-07-17T08:10:21.0529074Z 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-07-17T08:10:21.0535176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\new_zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0542233Z 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-07-17T08:10:21.0546614Z 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-07-17T08:10:21.0552277Z 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-07-17T08:10:21.0558025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0591990Z 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-07-17T08:10:21.0605978Z 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-07-17T08:10:21.0612081Z 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-07-17T08:10:21.0617801Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0623577Z 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-07-17T08:10:21.0629494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0635540Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nextafter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0641644Z 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-07-17T08:10:21.0647169Z 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-07-17T08:10:21.0653059Z 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-07-17T08:10:21.0658623Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0664204Z 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-07-17T08:10:21.0674967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0680555Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ne_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0686539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0692167Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nll_loss2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0697796Z 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-07-17T08:10:21.0703732Z 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-07-17T08:10:21.0709556Z 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-07-17T08:10:21.0718463Z 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-07-17T08:10:21.0721639Z 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-07-17T08:10:21.0728284Z 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-07-17T08:10:21.0735236Z 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-07-17T08:10:21.0741421Z 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-07-17T08:10:21.0747467Z 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-07-17T08:10:21.0753465Z 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-07-17T08:10:21.0757989Z 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-07-17T08:10:21.0763842Z 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-07-17T08:10:21.0769698Z 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-07-17T08:10:21.0775651Z 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-07-17T08:10:21.0781977Z 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-07-17T08:10:21.0787642Z 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-07-17T08:10:21.0793424Z 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-07-17T08:10:21.0799091Z 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-07-17T08:10:21.0804955Z 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-07-17T08:10:21.0811728Z 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-07-17T08:10:21.0817015Z 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-07-17T08:10:21.0823166Z 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-07-17T08:10:21.0828880Z 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-07-17T08:10:21.0834851Z 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-07-17T08:10:21.0840325Z 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-07-17T08:10:21.0846348Z 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-07-17T08:10:21.0852266Z 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-07-17T08:10:21.0858062Z 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-07-17T08:10:21.0863799Z 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-07-17T08:10:21.0894759Z 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-07-17T08:10:21.0900115Z 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-07-17T08:10:21.0905699Z 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-07-17T08:10:21.0916745Z 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-07-17T08:10:21.0922319Z 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-07-17T08:10:21.0928165Z 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-07-17T08:10:21.0934548Z 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-07-17T08:10:21.0940065Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0945566Z 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-07-17T08:10:21.0951155Z 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-07-17T08:10:21.0957359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0963385Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0969301Z 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-07-17T08:10:21.0975452Z 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-07-17T08:10:21.0980921Z 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-07-17T08:10:21.0986563Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0992356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nonzero_static.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.0998324Z 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-07-17T08:10:21.1004285Z 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-07-17T08:10:21.1010084Z 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-07-17T08:10:21.1016107Z 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-07-17T08:10:21.1021976Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1027497Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1033262Z 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-07-17T08:10:21.1039417Z 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-07-17T08:10:21.1045359Z 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-07-17T08:10:21.1051437Z 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-07-17T08:10:21.1057268Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1063181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\normal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1069445Z 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-07-17T08:10:21.1075419Z 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-07-17T08:10:21.1082033Z 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-07-17T08:10:21.1120564Z 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-07-17T08:10:21.1126236Z 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-07-17T08:10:21.1132178Z 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-07-17T08:10:21.1138155Z 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-07-17T08:10:21.1144987Z 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-07-17T08:10:21.1150853Z 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-07-17T08:10:21.1156428Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1162235Z 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-07-17T08:10:21.1168251Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1174899Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\norm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1180088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\not_equal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1186769Z 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-07-17T08:10:21.1192103Z 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-07-17T08:10:21.1197712Z 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-07-17T08:10:21.1204229Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\nuclear_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1210395Z 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-07-17T08:10:21.1216398Z 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-07-17T08:10:21.1221982Z 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-07-17T08:10:21.1228742Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\numpy_T.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1234341Z 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-07-17T08:10:21.1239793Z 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-07-17T08:10:21.1245084Z 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-07-17T08:10:21.1250766Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1257066Z 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-07-17T08:10:21.1262816Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1268713Z 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-07-17T08:10:21.1274203Z 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-07-17T08:10:21.1279816Z 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-07-17T08:10:21.1287070Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1293480Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ones_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1299747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\one_hot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1306724Z 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-07-17T08:10:21.1313103Z 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-07-17T08:10:21.1319707Z 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-07-17T08:10:21.1326716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1333320Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1339845Z 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-07-17T08:10:21.1345400Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1350882Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\orgqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1357140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1362524Z 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-07-17T08:10:21.1369377Z 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-07-17T08:10:21.1373935Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1379538Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ormqr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1385408Z 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-07-17T08:10:21.1390760Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1396205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\or_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1401804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1407663Z 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-07-17T08:10:21.1414041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1419659Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\outer_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1425216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\output_nr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1430801Z 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-07-17T08:10:21.1436737Z 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-07-17T08:10:21.1441690Z 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-07-17T08:10:21.1447401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1452890Z 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-07-17T08:10:21.1458314Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1463682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1469076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pad_sequence.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1475003Z 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-07-17T08:10:21.1480558Z 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-07-17T08:10:21.1486098Z 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-07-17T08:10:21.1492006Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pairwise_distance.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1497822Z 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-07-17T08:10:21.1504193Z 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-07-17T08:10:21.1509346Z 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-07-17T08:10:21.1515019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1520387Z 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-07-17T08:10:21.1525968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1532359Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pdist_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1538133Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1543713Z 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-07-17T08:10:21.1548942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1555399Z 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-07-17T08:10:21.1561295Z 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-07-17T08:10:21.1567098Z 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-07-17T08:10:21.1573016Z 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-07-17T08:10:21.1578965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1618616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\permute_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1624260Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1629365Z 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-07-17T08:10:21.1635123Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1640037Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pinverse_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1647310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1660190Z 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-07-17T08:10:21.1665816Z 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-07-17T08:10:21.1671777Z 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-07-17T08:10:21.1677466Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_shuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1683433Z 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-07-17T08:10:21.1689180Z 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-07-17T08:10:21.1695183Z 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-07-17T08:10:21.1700991Z 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-07-17T08:10:21.1706797Z 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-07-17T08:10:21.1712747Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pixel_unshuffle.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1719541Z 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-07-17T08:10:21.1725331Z 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-07-17T08:10:21.1752008Z 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-07-17T08:10:21.1757968Z 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-07-17T08:10:21.1763697Z 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-07-17T08:10:21.1769518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1775096Z 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-07-17T08:10:21.1781448Z 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-07-17T08:10:21.1810755Z 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-07-17T08:10:21.1816317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1822166Z 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-07-17T08:10:21.1828520Z 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-07-17T08:10:21.1834101Z 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-07-17T08:10:21.1839722Z 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-07-17T08:10:21.1860881Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\poisson_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1866252Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1871754Z 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-07-17T08:10:21.1877459Z 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-07-17T08:10:21.1883789Z 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-07-17T08:10:21.1889506Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1895366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1902216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1908174Z 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-07-17T08:10:21.1913877Z 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-07-17T08:10:21.1919763Z 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-07-17T08:10:21.1925590Z 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-07-17T08:10:21.1941045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1946922Z 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-07-17T08:10:21.1953125Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1959490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\polygamma_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1965800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1971690Z 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-07-17T08:10:21.1978988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1984565Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\positive_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1989171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.1996222Z 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-07-17T08:10:21.2001770Z 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-07-17T08:10:21.2007148Z 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-07-17T08:10:21.2012954Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2018676Z 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-07-17T08:10:21.2023710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2031211Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\pow_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2036556Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2041101Z 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-07-17T08:10:21.2065862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2100341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2105815Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2111649Z 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-07-17T08:10:21.2117608Z 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-07-17T08:10:21.2123323Z 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-07-17T08:10:21.2132516Z 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-07-17T08:10:21.2138337Z 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-07-17T08:10:21.2146171Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2151881Z 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-07-17T08:10:21.2157172Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2162160Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\prod_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2181036Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\promote_types.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2187002Z 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-07-17T08:10:21.2192704Z 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-07-17T08:10:21.2198677Z 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-07-17T08:10:21.2204292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2209718Z 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-07-17T08:10:21.2215822Z 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-07-17T08:10:21.2221411Z 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-07-17T08:10:21.2227034Z 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-07-17T08:10:21.2232753Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2238177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\put_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2243424Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2250095Z 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-07-17T08:10:21.2255633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2262348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qr_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2266800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2272017Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2277277Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\qscheme_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2282878Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2288441Z 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-07-17T08:10:21.2293949Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2299671Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\quantile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.2305193Z 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-07-17T08:10:21.2312164Z 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-07-17T08:10:21.2328605Z 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-07-17T08:10:21.2334429Z 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-07-17T08:10:21.2340169Z 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-07-17T08:10:21.2347181Z 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-07-17T08:10:21.2352636Z 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-07-17T08:10:21.2358622Z 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-07-17T08:10:21.2364333Z 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-07-17T08:10:21.2370224Z 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-07-17T08:10:21.2375985Z 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-07-17T08:10:21.2381783Z 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-07-17T08:10:21.2387937Z 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-07-17T08:10:21.2394700Z 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-07-17T08:10:21.2400374Z 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-07-17T08:10:21.2406011Z 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-07-17T08:10:21.2411752Z 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-07-17T08:10:21.2417722Z 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-07-17T08:10:21.2423442Z 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-07-17T08:10:21.2429354Z 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-07-17T08:10:21.2435067Z 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-07-17T08:10:21.2441826Z 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-07-17T08:10:21.2447583Z 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-07-17T08:10:21.2453186Z 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-07-17T08:10:21.2459473Z 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-07-17T08:10:21.2465374Z 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-07-17T08:10:21.2471538Z 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-07-17T08:10:21.2477205Z 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-07-17T08:10:21.2482858Z 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-07-17T08:10:21.2488795Z 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-07-17T08:10:21.2494611Z 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-07-17T08:10:21.2500136Z 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-07-17T08:10:21.2506703Z 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-07-17T08:10:21.2512526Z 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-07-17T08:10:21.2518026Z 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-07-17T08:10:21.2524031Z 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-07-17T08:10:21.2529680Z 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-07-17T08:10:21.2535464Z 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-07-17T08:10:21.2541349Z 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-07-17T08:10:21.2547386Z 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-07-17T08:10:21.2553487Z 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-07-17T08:10:21.2559425Z 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-07-17T08:10:21.2566141Z 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-07-17T08:10:21.2572758Z 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-07-17T08:10:21.2578843Z 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-07-17T08:10:21.2584524Z 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-07-17T08:10:21.2590289Z 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-07-17T08:10:21.2596230Z 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-07-17T08:10:21.2601962Z 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-07-17T08:10:21.2607701Z 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-07-17T08:10:21.2613516Z 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-07-17T08:10:21.4495263Z 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-07-17T08:10:21.4500768Z 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-07-17T08:10:21.4512252Z 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-07-17T08:10:21.4529442Z 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-07-17T08:10:21.4536701Z 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-07-17T08:10:21.4543239Z 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-07-17T08:10:21.4549203Z 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-07-17T08:10:21.4555619Z 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-07-17T08:10:21.4561287Z 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-07-17T08:10:21.4567755Z 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-07-17T08:10:21.4574048Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\q_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4589850Z 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-07-17T08:10:21.4595838Z 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-07-17T08:10:21.4601922Z 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-07-17T08:10:21.4616293Z 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-07-17T08:10:21.4622230Z 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-07-17T08:10:21.4631896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4647698Z 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-07-17T08:10:21.4659558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4665800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rad2deg_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4671376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4677358Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4683573Z 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-07-17T08:10:21.4689210Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4695752Z 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-07-17T08:10:21.4701460Z 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-07-17T08:10:21.4707293Z 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-07-17T08:10:21.4713465Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4719155Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randint_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4724927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4736462Z 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-07-17T08:10:21.4742609Z 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-07-17T08:10:21.4748081Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4754625Z 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-07-17T08:10:21.4760648Z 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-07-17T08:10:21.4766837Z 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-07-17T08:10:21.4773259Z 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-07-17T08:10:21.4779458Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4785953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4792205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4797816Z 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-07-17T08:10:21.4803608Z 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-07-17T08:10:21.4809308Z 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-07-17T08:10:21.4815249Z 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-07-17T08:10:21.4820914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4826301Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\random_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4832144Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4837852Z 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-07-17T08:10:21.4843289Z 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-07-17T08:10:21.4849103Z 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-07-17T08:10:21.4855087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4860646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\randperm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4872946Z 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-07-17T08:10:21.4878825Z 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-07-17T08:10:21.4884285Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4889997Z 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-07-17T08:10:21.4918413Z 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-07-17T08:10:21.4924019Z 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-07-17T08:10:21.4929800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4935343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rand_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4940695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4946284Z 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-07-17T08:10:21.4951787Z 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-07-17T08:10:21.4957423Z 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-07-17T08:10:21.4963276Z 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-07-17T08:10:21.4968908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4974600Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\range_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4980267Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4986149Z 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-07-17T08:10:21.4991580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.4997025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\ravel_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5002592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5008176Z 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-07-17T08:10:21.5013726Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5018988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\real_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5024234Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5030229Z 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-07-17T08:10:21.5035754Z 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-07-17T08:10:21.5041876Z 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-07-17T08:10:21.5047800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5053420Z 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-07-17T08:10:21.5058963Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5064774Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reciprocal_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5070508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\record_stream.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5076713Z 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-07-17T08:10:21.5082418Z 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-07-17T08:10:21.5087928Z 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-07-17T08:10:21.5094083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\refine_names.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5101037Z 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-07-17T08:10:21.5106368Z 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-07-17T08:10:21.5111865Z 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-07-17T08:10:21.5117579Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5124148Z 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-07-17T08:10:21.5130255Z 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-07-17T08:10:21.5135913Z 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-07-17T08:10:21.5141700Z 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-07-17T08:10:21.5147977Z 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-07-17T08:10:21.5153889Z 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-07-17T08:10:21.5159565Z 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-07-17T08:10:21.5173919Z 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-07-17T08:10:21.5180501Z 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-07-17T08:10:21.5186329Z 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-07-17T08:10:21.5192121Z 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-07-17T08:10:21.5198592Z 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-07-17T08:10:21.5204858Z 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-07-17T08:10:21.5211507Z 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-07-17T08:10:21.5218244Z 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-07-17T08:10:21.5224179Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5230133Z 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-07-17T08:10:21.5236304Z 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-07-17T08:10:21.5242484Z 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-07-17T08:10:21.5248305Z 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-07-17T08:10:21.5255111Z 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-07-17T08:10:21.5260519Z 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-07-17T08:10:21.5266289Z 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-07-17T08:10:21.5272333Z 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-07-17T08:10:21.5278139Z 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-07-17T08:10:21.5283922Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reflection_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5289722Z 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-07-17T08:10:21.5296420Z 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-07-17T08:10:21.5303076Z 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-07-17T08:10:21.5308966Z 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-07-17T08:10:21.5314978Z 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-07-17T08:10:21.5320830Z 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-07-17T08:10:21.5327249Z 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-07-17T08:10:21.5333154Z 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-07-17T08:10:21.5339460Z 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-07-17T08:10:21.5345087Z 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-07-17T08:10:21.5350863Z 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-07-17T08:10:21.5357716Z 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-07-17T08:10:21.5362740Z 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-07-17T08:10:21.5368492Z 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-07-17T08:10:21.5374471Z 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-07-17T08:10:21.5380637Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5385775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5391573Z 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-07-17T08:10:21.5396964Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5402413Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu6_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5424623Z 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-07-17T08:10:21.5429976Z 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-07-17T08:10:21.5435528Z 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-07-17T08:10:21.5441247Z 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-07-17T08:10:21.5447191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5452842Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\relu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5458309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5464561Z 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-07-17T08:10:21.5470283Z 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-07-17T08:10:21.5476056Z 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-07-17T08:10:21.5481788Z 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-07-17T08:10:21.5487545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5493373Z 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-07-17T08:10:21.5499007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5504961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\remainder_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5510896Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5516283Z 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-07-17T08:10:21.5521841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5527562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rename_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5538551Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5543941Z 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-07-17T08:10:21.5549802Z 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-07-17T08:10:21.5555393Z 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-07-17T08:10:21.5561593Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5567790Z 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-07-17T08:10:21.5577188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5583500Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\renorm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5589763Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5596051Z 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-07-17T08:10:21.5602018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_interleave.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5608132Z 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-07-17T08:10:21.5614346Z 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-07-17T08:10:21.5620214Z 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-07-17T08:10:21.5626054Z 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-07-17T08:10:21.5631870Z 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-07-17T08:10:21.5637944Z 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-07-17T08:10:21.5643806Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5649835Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\repeat_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5655725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5661469Z 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-07-17T08:10:21.5667792Z 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-07-17T08:10:21.5678156Z 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-07-17T08:10:21.5684351Z 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-07-17T08:10:21.5690139Z 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-07-17T08:10:21.5696186Z 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-07-17T08:10:21.5706829Z 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-07-17T08:10:21.5712707Z 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-07-17T08:10:21.5719194Z 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-07-17T08:10:21.5725054Z 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-07-17T08:10:21.5730931Z 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-07-17T08:10:21.5736866Z 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-07-17T08:10:21.5742975Z 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-07-17T08:10:21.5748825Z 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-07-17T08:10:21.5754940Z 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-07-17T08:10:21.5761040Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5767349Z 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-07-17T08:10:21.5773687Z 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-07-17T08:10:21.5779936Z 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-07-17T08:10:21.5786115Z 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-07-17T08:10:21.5791954Z 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-07-17T08:10:21.5799231Z 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-07-17T08:10:21.5805173Z 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-07-17T08:10:21.5811419Z 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-07-17T08:10:21.5817785Z 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-07-17T08:10:21.5823390Z 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-07-17T08:10:21.5829229Z 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-07-17T08:10:21.5835367Z 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-07-17T08:10:21.5841353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\replication_pad3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5847148Z 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-07-17T08:10:21.5853139Z 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-07-17T08:10:21.5859011Z 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-07-17T08:10:21.5865200Z 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-07-17T08:10:21.5871100Z 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-07-17T08:10:21.5877157Z 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-07-17T08:10:21.5883010Z 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-07-17T08:10:21.5888848Z 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-07-17T08:10:21.5895106Z 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-07-17T08:10:21.5900969Z 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-07-17T08:10:21.5907047Z 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-07-17T08:10:21.5912997Z 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-07-17T08:10:21.5918797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\requires_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5924570Z 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-07-17T08:10:21.5930408Z 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-07-17T08:10:21.5935968Z 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-07-17T08:10:21.5941647Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5947153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.5952921Z 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-07-17T08:10:21.5958661Z 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-07-17T08:10:21.5989077Z 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-07-17T08:10:21.5994631Z 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-07-17T08:10:21.6000697Z 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-07-17T08:10:21.6006957Z 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-07-17T08:10:21.6012655Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6018614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\reshape_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6023967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6029956Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6036325Z 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-07-17T08:10:21.6041781Z 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-07-17T08:10:21.6047588Z 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-07-17T08:10:21.6053768Z 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-07-17T08:10:21.6059933Z 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-07-17T08:10:21.6065898Z 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-07-17T08:10:21.6071837Z 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-07-17T08:10:21.6077846Z 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-07-17T08:10:21.6083930Z 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-07-17T08:10:21.6089945Z 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-07-17T08:10:21.6095918Z 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-07-17T08:10:21.6101749Z 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-07-17T08:10:21.6107331Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6127225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resize_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6133148Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6139006Z 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-07-17T08:10:21.6144688Z 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-07-17T08:10:21.6150430Z 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-07-17T08:10:21.6156635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\resolve_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6163328Z 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-07-17T08:10:21.6169155Z 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-07-17T08:10:21.6174672Z 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-07-17T08:10:21.6180490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\result_type.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6212157Z 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-07-17T08:10:21.6221258Z 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-07-17T08:10:21.6227114Z 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-07-17T08:10:21.6232862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retains_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6238624Z 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-07-17T08:10:21.6251148Z 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-07-17T08:10:21.6256243Z 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-07-17T08:10:21.6271343Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\retain_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6272440Z 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-07-17T08:10:21.6276811Z 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-07-17T08:10:21.6283074Z 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-07-17T08:10:21.6288978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rms_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6295029Z 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-07-17T08:10:21.6299330Z 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-07-17T08:10:21.6306369Z 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-07-17T08:10:21.6310697Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6316238Z 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-07-17T08:10:21.6322722Z 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-07-17T08:10:21.6327795Z 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-07-17T08:10:21.6333572Z 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-07-17T08:10:21.6339442Z 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-07-17T08:10:21.6345027Z 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-07-17T08:10:21.6351056Z 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-07-17T08:10:21.6357244Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rnn_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6362858Z 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-07-17T08:10:21.6368444Z 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-07-17T08:10:21.6374080Z 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-07-17T08:10:21.6379844Z 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-07-17T08:10:21.6385675Z 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-07-17T08:10:21.6391278Z 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-07-17T08:10:21.6397436Z 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-07-17T08:10:21.6403450Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6409685Z 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-07-17T08:10:21.6420594Z 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-07-17T08:10:21.6426229Z 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-07-17T08:10:21.6431780Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6437289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\roll_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6442759Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6448545Z 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-07-17T08:10:21.6454306Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6464281Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rot90_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6469865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6475602Z 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-07-17T08:10:21.6481016Z 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-07-17T08:10:21.6486632Z 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-07-17T08:10:21.6492353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6498250Z 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-07-17T08:10:21.6509510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6515180Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\round_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6520859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6532288Z 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-07-17T08:10:21.6537725Z 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-07-17T08:10:21.6544155Z 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-07-17T08:10:21.6550032Z 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-07-17T08:10:21.6555760Z 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-07-17T08:10:21.6601791Z 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-07-17T08:10:21.6602858Z 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-07-17T08:10:21.6603827Z 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-07-17T08:10:21.6604778Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\row_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6605904Z 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-07-17T08:10:21.6608386Z 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-07-17T08:10:21.6609350Z 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-07-17T08:10:21.6610351Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6615111Z 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-07-17T08:10:21.6620695Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6626559Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rrelu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6632083Z 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-07-17T08:10:21.6638080Z 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-07-17T08:10:21.6644501Z 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-07-17T08:10:21.6650753Z 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-07-17T08:10:21.6656786Z 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-07-17T08:10:21.6662639Z 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-07-17T08:10:21.6668438Z 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-07-17T08:10:21.6674215Z 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-07-17T08:10:21.6680225Z 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-07-17T08:10:21.6690110Z 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-07-17T08:10:21.6696058Z 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-07-17T08:10:21.6701808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6707401Z 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-07-17T08:10:21.6713012Z 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-07-17T08:10:21.6718873Z 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-07-17T08:10:21.6724644Z 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-07-17T08:10:21.6730315Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6736508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rshift_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6742166Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6748019Z 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-07-17T08:10:21.6753526Z 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-07-17T08:10:21.6759271Z 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-07-17T08:10:21.6765023Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6774572Z 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-07-17T08:10:21.6780231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6786298Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6791573Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6797104Z 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-07-17T08:10:21.6802707Z 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-07-17T08:10:21.6808243Z 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-07-17T08:10:21.6814194Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6819834Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\rsub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6825120Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scalar_tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6830940Z 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-07-17T08:10:21.6836486Z 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-07-17T08:10:21.6842052Z 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-07-17T08:10:21.6847796Z 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-07-17T08:10:21.6921563Z 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-07-17T08:10:21.6927095Z 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-07-17T08:10:21.6932882Z 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-07-17T08:10:21.6939074Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6944566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.6950712Z 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-07-17T08:10:21.6956923Z 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-07-17T08:10:21.6962809Z 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-07-17T08:10:21.6968651Z 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-07-17T08:10:21.6974811Z 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-07-17T08:10:21.6980738Z 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-07-17T08:10:21.6986565Z 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-07-17T08:10:21.6992465Z 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-07-17T08:10:21.6998587Z 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-07-17T08:10:21.7009030Z 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-07-17T08:10:21.7015006Z 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-07-17T08:10:21.7020702Z 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-07-17T08:10:21.7026472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7032381Z 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-07-17T08:10:21.7038147Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7043918Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7050010Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\scatter_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7056438Z 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-07-17T08:10:21.7062216Z 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-07-17T08:10:21.7069006Z 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-07-17T08:10:21.7073821Z 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-07-17T08:10:21.7079625Z 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-07-17T08:10:21.7085425Z 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-07-17T08:10:21.7091829Z 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-07-17T08:10:21.7097578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7103345Z 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-07-17T08:10:21.7108802Z 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-07-17T08:10:21.7114327Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7120529Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\searchsorted_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7126086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\segment_reduce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7136197Z 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-07-17T08:10:21.7141761Z 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-07-17T08:10:21.7155319Z 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-07-17T08:10:21.7156399Z 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-07-17T08:10:21.7159523Z 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-07-17T08:10:21.7165256Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7170634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7181288Z 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-07-17T08:10:21.7187014Z 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-07-17T08:10:21.7193255Z 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-07-17T08:10:21.7198959Z 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-07-17T08:10:21.7204894Z 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-07-17T08:10:21.7210681Z 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-07-17T08:10:21.7221376Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7232938Z 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-07-17T08:10:21.7239306Z 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-07-17T08:10:21.7244964Z 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-07-17T08:10:21.7251047Z 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-07-17T08:10:21.7256961Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7262861Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7268821Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\select_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7279135Z 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-07-17T08:10:21.7285407Z 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-07-17T08:10:21.7291613Z 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-07-17T08:10:21.7297579Z 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-07-17T08:10:21.7303676Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7309890Z 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-07-17T08:10:21.7315706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7326258Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\selu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7330508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7336465Z 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-07-17T08:10:21.7342295Z 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-07-17T08:10:21.7347818Z 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-07-17T08:10:21.7353755Z 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-07-17T08:10:21.7359236Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_data.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7369593Z 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-07-17T08:10:21.7375202Z 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-07-17T08:10:21.7380542Z 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-07-17T08:10:21.7386231Z 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-07-17T08:10:21.7391824Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7397521Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\set_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7403197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7409515Z 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-07-17T08:10:21.7415006Z 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-07-17T08:10:21.7420570Z 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-07-17T08:10:21.7426231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7431385Z 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-07-17T08:10:21.7436907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7442379Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sgn_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7447688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7453508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7459688Z 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-07-17T08:10:21.7469469Z 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-07-17T08:10:21.7475156Z 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-07-17T08:10:21.7480915Z 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-07-17T08:10:21.7486815Z 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-07-17T08:10:21.7492835Z 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-07-17T08:10:21.7498571Z 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-07-17T08:10:21.7505147Z 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-07-17T08:10:21.7510895Z 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-07-17T08:10:21.7516540Z 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-07-17T08:10:21.7538981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7544479Z 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-07-17T08:10:21.7556865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7562769Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sigmoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7568414Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7573809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7579672Z 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-07-17T08:10:21.7585386Z 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-07-17T08:10:21.7591783Z 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-07-17T08:10:21.7597598Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7604015Z 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-07-17T08:10:21.7609585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7615338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\signbit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7621485Z 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-07-17T08:10:21.7627317Z 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-07-17T08:10:21.7632859Z 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-07-17T08:10:21.7642926Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7648443Z 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-07-17T08:10:21.7654502Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7660410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sign_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7665785Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7671154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7677109Z 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-07-17T08:10:21.7682987Z 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-07-17T08:10:21.7688690Z 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-07-17T08:10:21.7694928Z 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-07-17T08:10:21.7700779Z 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-07-17T08:10:21.7706891Z 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-07-17T08:10:21.7712710Z 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-07-17T08:10:21.7719611Z 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-07-17T08:10:21.7725572Z 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-07-17T08:10:21.7731145Z 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-07-17T08:10:21.7736939Z 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-07-17T08:10:21.7742646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7748458Z 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-07-17T08:10:21.7754061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7759706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\silu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7764169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7769636Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7775613Z 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-07-17T08:10:21.7796376Z 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-07-17T08:10:21.7797356Z 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-07-17T08:10:21.7798309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7801910Z 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-07-17T08:10:21.7807586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7812033Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7817489Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7823484Z 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-07-17T08:10:21.7829119Z 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-07-17T08:10:21.7835014Z 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-07-17T08:10:21.7840670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7851241Z 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-07-17T08:10:21.7856837Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7862302Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sinh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7867960Z 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-07-17T08:10:21.7873459Z 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-07-17T08:10:21.7879383Z 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-07-17T08:10:21.7899672Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7909792Z 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-07-17T08:10:21.7915539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7921426Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sin_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7926932Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7932558Z 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-07-17T08:10:21.7938019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7943408Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\size_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7953715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7959193Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.7965214Z 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-07-17T08:10:21.7971240Z 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-07-17T08:10:21.7977086Z 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-07-17T08:10:21.7983205Z 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-07-17T08:10:21.7988980Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8000775Z 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-07-17T08:10:21.8006569Z 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-07-17T08:10:21.8012237Z 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-07-17T08:10:21.8017972Z 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-07-17T08:10:21.8023938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_inverse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8029630Z 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-07-17T08:10:21.8035486Z 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-07-17T08:10:21.8041301Z 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-07-17T08:10:21.8055367Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8061264Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8066969Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slice_scatter.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8073466Z 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-07-17T08:10:21.8079105Z 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-07-17T08:10:21.8085236Z 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-07-17T08:10:21.8091115Z 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-07-17T08:10:21.8096958Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8102621Z 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-07-17T08:10:21.8108341Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8114001Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slogdet_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8119850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\slow_conv3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8125977Z 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-07-17T08:10:21.8131910Z 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-07-17T08:10:21.8138137Z 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-07-17T08:10:21.8149688Z 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-07-17T08:10:21.8156123Z 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-07-17T08:10:21.8161979Z 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-07-17T08:10:21.8168025Z 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-07-17T08:10:21.8173874Z 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-07-17T08:10:21.8184144Z 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-07-17T08:10:21.8190189Z 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-07-17T08:10:21.8196101Z 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-07-17T08:10:21.8202473Z 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-07-17T08:10:21.8208301Z 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-07-17T08:10:21.8214385Z 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-07-17T08:10:21.8220806Z 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-07-17T08:10:21.8241485Z 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-07-17T08:10:21.8247267Z 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-07-17T08:10:21.8253533Z 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-07-17T08:10:21.8260615Z 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-07-17T08:10:21.8266527Z 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-07-17T08:10:21.8273543Z 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-07-17T08:10:21.8279534Z 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-07-17T08:10:21.8285806Z 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-07-17T08:10:21.8292163Z 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-07-17T08:10:21.8298743Z 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-07-17T08:10:21.8305243Z 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-07-17T08:10:21.8311357Z 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-07-17T08:10:21.8317496Z 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-07-17T08:10:21.8323790Z 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-07-17T08:10:21.8330270Z 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-07-17T08:10:21.8336126Z 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-07-17T08:10:21.8341920Z 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-07-17T08:10:21.8347978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8353398Z 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-07-17T08:10:21.8359114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8364635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\smm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8369872Z 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-07-17T08:10:21.8375829Z 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-07-17T08:10:21.8382150Z 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-07-17T08:10:21.8387972Z 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-07-17T08:10:21.8394065Z 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-07-17T08:10:21.8400012Z 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-07-17T08:10:21.8405776Z 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-07-17T08:10:21.8411875Z 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-07-17T08:10:21.8417860Z 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-07-17T08:10:21.8423668Z 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-07-17T08:10:21.8429892Z 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-07-17T08:10:21.8435386Z 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-07-17T08:10:21.8440962Z 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-07-17T08:10:21.8446499Z 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-07-17T08:10:21.8456737Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8462630Z 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-07-17T08:10:21.8468883Z 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-07-17T08:10:21.8473988Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8479620Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8485280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8490919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8496874Z 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-07-17T08:10:21.8502768Z 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-07-17T08:10:21.8508446Z 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-07-17T08:10:21.8514287Z 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-07-17T08:10:21.8555161Z 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-07-17T08:10:21.8560964Z 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-07-17T08:10:21.8566722Z 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-07-17T08:10:21.8573061Z 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-07-17T08:10:21.8578979Z 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-07-17T08:10:21.8584949Z 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-07-17T08:10:21.8590525Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8596190Z 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-07-17T08:10:21.8601825Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8607625Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softplus_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8613108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8618967Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8625036Z 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-07-17T08:10:21.8630616Z 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-07-17T08:10:21.8637141Z 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-07-17T08:10:21.8642415Z 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-07-17T08:10:21.8648588Z 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-07-17T08:10:21.8660209Z 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-07-17T08:10:21.8666042Z 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-07-17T08:10:21.8672069Z 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-07-17T08:10:21.8677627Z 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-07-17T08:10:21.8684647Z 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-07-17T08:10:21.8689291Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8695150Z 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-07-17T08:10:21.8701130Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8706800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\softshrink_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8712538Z 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-07-17T08:10:21.8718157Z 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-07-17T08:10:21.8724143Z 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-07-17T08:10:21.8729951Z 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-07-17T08:10:21.8735926Z 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-07-17T08:10:21.8746668Z 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-07-17T08:10:21.8752337Z 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-07-17T08:10:21.8758182Z 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-07-17T08:10:21.8763891Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8769654Z 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-07-17T08:10:21.8775462Z 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-07-17T08:10:21.8781529Z 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-07-17T08:10:21.8787635Z 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-07-17T08:10:21.8793209Z 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-07-17T08:10:21.8838702Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8839665Z 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-07-17T08:10:21.8840639Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8841562Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sort_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8842510Z 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-07-17T08:10:21.8845023Z 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-07-17T08:10:21.8846191Z 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-07-17T08:10:21.8848004Z 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-07-17T08:10:21.8854042Z 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-07-17T08:10:21.8860194Z 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-07-17T08:10:21.8866105Z 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-07-17T08:10:21.8871968Z 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-07-17T08:10:21.8882134Z 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-07-17T08:10:21.8888200Z 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-07-17T08:10:21.8894187Z 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-07-17T08:10:21.8900037Z 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-07-17T08:10:21.8905815Z 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-07-17T08:10:21.8912071Z 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-07-17T08:10:21.8918253Z 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-07-17T08:10:21.8924071Z 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-07-17T08:10:21.8929842Z 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-07-17T08:10:21.8935831Z 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-07-17T08:10:21.8941703Z 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-07-17T08:10:21.8947604Z 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-07-17T08:10:21.8953479Z 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-07-17T08:10:21.8959136Z 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-07-17T08:10:21.8965225Z 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-07-17T08:10:21.8970933Z 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-07-17T08:10:21.8977221Z 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-07-17T08:10:21.8982828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.8988642Z 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-07-17T08:10:21.8994241Z 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-07-17T08:10:21.8999830Z 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-07-17T08:10:21.9005444Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_mask.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9011413Z 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-07-17T08:10:21.9017004Z 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-07-17T08:10:21.9022678Z 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-07-17T08:10:21.9028571Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sparse_resize.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9034294Z 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-07-17T08:10:21.9040233Z 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-07-17T08:10:21.9046104Z 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-07-17T08:10:21.9052111Z 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-07-17T08:10:21.9057995Z 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-07-17T08:10:21.9064156Z 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-07-17T08:10:21.9069808Z 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-07-17T08:10:21.9075360Z 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-07-17T08:10:21.9081002Z 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-07-17T08:10:21.9087380Z 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-07-17T08:10:21.9094174Z 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-07-17T08:10:21.9099908Z 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-07-17T08:10:21.9105631Z 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-07-17T08:10:21.9111670Z 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-07-17T08:10:21.9122672Z 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-07-17T08:10:21.9128355Z 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-07-17T08:10:21.9134213Z 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-07-17T08:10:21.9140275Z 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-07-17T08:10:21.9146432Z 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-07-17T08:10:21.9152436Z 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-07-17T08:10:21.9158316Z 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-07-17T08:10:21.9164568Z 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-07-17T08:10:21.9170792Z 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-07-17T08:10:21.9176749Z 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-07-17T08:10:21.9198014Z 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-07-17T08:10:21.9204223Z 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-07-17T08:10:21.9210070Z 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-07-17T08:10:21.9216092Z 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-07-17T08:10:21.9222267Z 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-07-17T08:10:21.9228472Z 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-07-17T08:10:21.9234264Z 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-07-17T08:10:21.9240389Z 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-07-17T08:10:21.9246241Z 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-07-17T08:10:21.9252309Z 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-07-17T08:10:21.9258304Z 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-07-17T08:10:21.9264962Z 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-07-17T08:10:21.9272035Z 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-07-17T08:10:21.9279456Z 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-07-17T08:10:21.9300626Z 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-07-17T08:10:21.9301733Z 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-07-17T08:10:21.9303343Z 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-07-17T08:10:21.9304383Z 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-07-17T08:10:21.9309298Z 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-07-17T08:10:21.9315204Z 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-07-17T08:10:21.9327401Z 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-07-17T08:10:21.9333678Z 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-07-17T08:10:21.9340018Z 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-07-17T08:10:21.9345831Z 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-07-17T08:10:21.9352495Z 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-07-17T08:10:21.9357668Z 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-07-17T08:10:21.9363705Z 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-07-17T08:10:21.9369418Z 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-07-17T08:10:21.9375243Z 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-07-17T08:10:21.9381475Z 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-07-17T08:10:21.9387602Z 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-07-17T08:10:21.9393873Z 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-07-17T08:10:21.9399741Z 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-07-17T08:10:21.9406157Z 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-07-17T08:10:21.9417332Z 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-07-17T08:10:21.9428052Z 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-07-17T08:10:21.9434236Z 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-07-17T08:10:21.9440646Z 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-07-17T08:10:21.9446817Z 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-07-17T08:10:21.9453000Z 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-07-17T08:10:21.9459993Z 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-07-17T08:10:21.9470478Z 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-07-17T08:10:21.9476925Z 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-07-17T08:10:21.9482877Z 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-07-17T08:10:21.9488786Z 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-07-17T08:10:21.9494868Z 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-07-17T08:10:21.9500800Z 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-07-17T08:10:21.9507299Z 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-07-17T08:10:21.9519344Z 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-07-17T08:10:21.9525057Z 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-07-17T08:10:21.9531034Z 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-07-17T08:10:21.9536940Z 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-07-17T08:10:21.9543532Z 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-07-17T08:10:21.9549172Z 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-07-17T08:10:21.9554977Z 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-07-17T08:10:21.9565734Z 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-07-17T08:10:21.9572118Z 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-07-17T08:10:21.9578821Z 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-07-17T08:10:21.9605014Z 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-07-17T08:10:21.9611007Z 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-07-17T08:10:21.9617005Z 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-07-17T08:10:21.9622854Z 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-07-17T08:10:21.9628968Z 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-07-17T08:10:21.9634922Z 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-07-17T08:10:21.9640617Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_digamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9647909Z 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-07-17T08:10:21.9653932Z 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-07-17T08:10:21.9659828Z 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-07-17T08:10:21.9665069Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_entr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9672393Z 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-07-17T08:10:21.9677722Z 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-07-17T08:10:21.9683494Z 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-07-17T08:10:21.9689351Z 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-07-17T08:10:21.9695148Z 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-07-17T08:10:21.9701057Z 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-07-17T08:10:21.9707067Z 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-07-17T08:10:21.9712938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9718828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9724788Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfcx.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9731105Z 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-07-17T08:10:21.9737045Z 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-07-17T08:10:21.9743105Z 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-07-17T08:10:21.9749134Z 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-07-17T08:10:21.9755131Z 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-07-17T08:10:21.9773381Z 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-07-17T08:10:21.9781960Z 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-07-17T08:10:21.9786043Z 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-07-17T08:10:21.9810624Z 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-07-17T08:10:21.9811656Z 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-07-17T08:10:21.9812619Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_erfinv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9813737Z 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-07-17T08:10:21.9819620Z 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-07-17T08:10:21.9825854Z 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-07-17T08:10:21.9831964Z 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-07-17T08:10:21.9837722Z 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-07-17T08:10:21.9843267Z 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-07-17T08:10:21.9849330Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_exp2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9855493Z 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-07-17T08:10:21.9861866Z 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-07-17T08:10:21.9867137Z 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-07-17T08:10:21.9872851Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9878813Z 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-07-17T08:10:21.9884457Z 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-07-17T08:10:21.9890124Z 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-07-17T08:10:21.9896725Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9902898Z 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-07-17T08:10:21.9908640Z 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-07-17T08:10:21.9914209Z 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-07-17T08:10:21.9920000Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammainc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9925743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaincc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9932062Z 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-07-17T08:10:21.9938446Z 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-07-17T08:10:21.9944582Z 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-07-17T08:10:21.9950936Z 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-07-17T08:10:21.9956818Z 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-07-17T08:10:21.9962636Z 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-07-17T08:10:21.9968386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_gammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:21.9974657Z 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-07-17T08:10:21.9980595Z 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-07-17T08:10:21.9986636Z 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-07-17T08:10:21.9992549Z 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-07-17T08:10:21.9998371Z 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-07-17T08:10:22.0004661Z 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-07-17T08:10:22.0010806Z 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-07-17T08:10:22.0016701Z 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-07-17T08:10:22.0022701Z 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-07-17T08:10:22.0028676Z 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-07-17T08:10:22.0034626Z 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-07-17T08:10:22.0040672Z 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-07-17T08:10:22.0046861Z 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-07-17T08:10:22.0053583Z 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-07-17T08:10:22.0059239Z 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-07-17T08:10:22.0065052Z 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-07-17T08:10:22.0071240Z 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-07-17T08:10:22.0077068Z 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-07-17T08:10:22.0083053Z 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-07-17T08:10:22.0088936Z 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-07-17T08:10:22.0095130Z 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-07-17T08:10:22.0101127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0107919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i0e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0113861Z 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-07-17T08:10:22.0119625Z 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-07-17T08:10:22.0125358Z 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-07-17T08:10:22.0131118Z 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-07-17T08:10:22.0136969Z 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-07-17T08:10:22.0142859Z 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-07-17T08:10:22.0148658Z 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-07-17T08:10:22.0155000Z 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-07-17T08:10:22.0160601Z 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-07-17T08:10:22.0166106Z 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-07-17T08:10:22.0205124Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0210937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_i1e.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0217161Z 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-07-17T08:10:22.0223249Z 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-07-17T08:10:22.0229043Z 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-07-17T08:10:22.0234763Z 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-07-17T08:10:22.0240419Z 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-07-17T08:10:22.0246116Z 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-07-17T08:10:22.0252462Z 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-07-17T08:10:22.0258405Z 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-07-17T08:10:22.0264241Z 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-07-17T08:10:22.0269897Z 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-07-17T08:10:22.0275687Z 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-07-17T08:10:22.0281253Z 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-07-17T08:10:22.0287032Z 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-07-17T08:10:22.0292996Z 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-07-17T08:10:22.0299473Z 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-07-17T08:10:22.0305749Z 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-07-17T08:10:22.0311656Z 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-07-17T08:10:22.0317392Z 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-07-17T08:10:22.0323319Z 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-07-17T08:10:22.0329326Z 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-07-17T08:10:22.0335382Z 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-07-17T08:10:22.0341178Z 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-07-17T08:10:22.0347098Z 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-07-17T08:10:22.0362992Z 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-07-17T08:10:22.0364311Z 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-07-17T08:10:22.0366930Z 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-07-17T08:10:22.0408110Z 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-07-17T08:10:22.0409291Z 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-07-17T08:10:22.0410445Z 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-07-17T08:10:22.0413114Z 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-07-17T08:10:22.0414696Z 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-07-17T08:10:22.0415831Z 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-07-17T08:10:22.0416865Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0420470Z 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-07-17T08:10:22.0426419Z 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-07-17T08:10:22.0432051Z 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-07-17T08:10:22.0442391Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0448408Z 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-07-17T08:10:22.0454397Z 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-07-17T08:10:22.0460566Z 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-07-17T08:10:22.0466348Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_logsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0472411Z 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-07-17T08:10:22.0478056Z 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-07-17T08:10:22.0483995Z 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-07-17T08:10:22.0489897Z 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-07-17T08:10:22.0496069Z 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-07-17T08:10:22.0501812Z 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-07-17T08:10:22.0507593Z 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-07-17T08:10:22.0513347Z 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-07-17T08:10:22.0519349Z 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-07-17T08:10:22.0525205Z 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-07-17T08:10:22.0531494Z 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-07-17T08:10:22.0537436Z 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-07-17T08:10:22.0545139Z 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-07-17T08:10:22.0549677Z 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-07-17T08:10:22.0555464Z 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-07-17T08:10:22.0561480Z 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-07-17T08:10:22.0572672Z 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-07-17T08:10:22.0578531Z 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-07-17T08:10:22.0584714Z 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-07-17T08:10:22.0590767Z 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-07-17T08:10:22.0596982Z 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-07-17T08:10:22.0602955Z 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-07-17T08:10:22.0608796Z 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-07-17T08:10:22.0614696Z 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-07-17T08:10:22.0621099Z 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-07-17T08:10:22.0626980Z 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-07-17T08:10:22.0633161Z 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-07-17T08:10:22.0639042Z 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-07-17T08:10:22.0645709Z 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-07-17T08:10:22.0651545Z 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-07-17T08:10:22.0657595Z 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-07-17T08:10:22.0663544Z 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-07-17T08:10:22.0669955Z 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-07-17T08:10:22.0676407Z 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-07-17T08:10:22.0682273Z 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-07-17T08:10:22.0688332Z 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-07-17T08:10:22.0694590Z 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-07-17T08:10:22.0701157Z 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-07-17T08:10:22.0707150Z 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-07-17T08:10:22.0713174Z 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-07-17T08:10:22.0719912Z 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-07-17T08:10:22.0725793Z 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-07-17T08:10:22.0732091Z 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-07-17T08:10:22.0738150Z 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-07-17T08:10:22.0744394Z 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-07-17T08:10:22.0750828Z 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-07-17T08:10:22.0757835Z 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-07-17T08:10:22.0763886Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_multigammaln.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0769962Z 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-07-17T08:10:22.0776316Z 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-07-17T08:10:22.0781991Z 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-07-17T08:10:22.0787813Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtr.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0794319Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_ndtri.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0801232Z 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-07-17T08:10:22.0807735Z 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-07-17T08:10:22.0814395Z 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-07-17T08:10:22.0820411Z 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-07-17T08:10:22.0826353Z 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-07-17T08:10:22.0832253Z 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-07-17T08:10:22.0838272Z 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-07-17T08:10:22.0844335Z 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-07-17T08:10:22.0850494Z 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-07-17T08:10:22.0856125Z 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-07-17T08:10:22.0862007Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_polygamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0868046Z 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-07-17T08:10:22.0879647Z 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-07-17T08:10:22.0891303Z 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-07-17T08:10:22.0895300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_psi.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0901625Z 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-07-17T08:10:22.0907353Z 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-07-17T08:10:22.0912578Z 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-07-17T08:10:22.0918340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.0924411Z 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-07-17T08:10:22.0930139Z 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-07-17T08:10:22.0936075Z 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-07-17T08:10:22.0942921Z 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-07-17T08:10:22.0949327Z 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-07-17T08:10:22.0955118Z 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-07-17T08:10:22.0962486Z 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-07-17T08:10:22.0969074Z 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-07-17T08:10:22.0975459Z 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-07-17T08:10:22.0981428Z 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-07-17T08:10:22.0987294Z 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-07-17T08:10:22.0993161Z 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-07-17T08:10:22.0999416Z 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-07-17T08:10:22.1005350Z 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-07-17T08:10:22.1011442Z 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-07-17T08:10:22.1017405Z 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-07-17T08:10:22.1023367Z 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-07-17T08:10:22.1029453Z 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-07-17T08:10:22.1035994Z 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-07-17T08:10:22.1041871Z 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-07-17T08:10:22.1048404Z 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-07-17T08:10:22.1054694Z 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-07-17T08:10:22.1060616Z 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-07-17T08:10:22.1066751Z 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-07-17T08:10:22.1072735Z 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-07-17T08:10:22.1078789Z 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-07-17T08:10:22.1085517Z 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-07-17T08:10:22.1091493Z 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-07-17T08:10:22.1098031Z 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-07-17T08:10:22.1104693Z 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-07-17T08:10:22.1110494Z 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-07-17T08:10:22.1116380Z 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-07-17T08:10:22.1122508Z 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-07-17T08:10:22.1128406Z 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-07-17T08:10:22.1134453Z 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-07-17T08:10:22.1144980Z 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-07-17T08:10:22.1150995Z 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-07-17T08:10:22.1157212Z 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-07-17T08:10:22.1163758Z 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-07-17T08:10:22.1170019Z 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-07-17T08:10:22.1176063Z 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-07-17T08:10:22.1182259Z 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-07-17T08:10:22.1188516Z 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-07-17T08:10:22.1194586Z 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-07-17T08:10:22.1211070Z 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-07-17T08:10:22.1217442Z 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-07-17T08:10:22.1223845Z 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-07-17T08:10:22.1230510Z 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-07-17T08:10:22.1236621Z 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-07-17T08:10:22.1262793Z 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-07-17T08:10:22.1269426Z 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-07-17T08:10:22.1275612Z 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-07-17T08:10:22.1281769Z 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-07-17T08:10:22.1287984Z 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-07-17T08:10:22.1294231Z 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-07-17T08:10:22.1300809Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_sinc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1307409Z 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-07-17T08:10:22.1313664Z 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-07-17T08:10:22.1319691Z 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-07-17T08:10:22.1325951Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1332463Z 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-07-17T08:10:22.1338664Z 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-07-17T08:10:22.1344675Z 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-07-17T08:10:22.1351054Z 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-07-17T08:10:22.1357280Z 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-07-17T08:10:22.1363720Z 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-07-17T08:10:22.1370777Z 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-07-17T08:10:22.1377392Z 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-07-17T08:10:22.1383560Z 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-07-17T08:10:22.1389340Z 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-07-17T08:10:22.1399824Z 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-07-17T08:10:22.1405585Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlog1py.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1412454Z 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-07-17T08:10:22.1418437Z 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-07-17T08:10:22.1424563Z 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-07-17T08:10:22.1430414Z 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-07-17T08:10:22.1436324Z 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-07-17T08:10:22.1442236Z 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-07-17T08:10:22.1448599Z 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-07-17T08:10:22.1454562Z 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-07-17T08:10:22.1460616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1466997Z 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-07-17T08:10:22.1472719Z 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-07-17T08:10:22.1479074Z 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-07-17T08:10:22.1484928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\special_zeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1491214Z 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-07-17T08:10:22.1497230Z 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-07-17T08:10:22.1503321Z 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-07-17T08:10:22.1509230Z 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-07-17T08:10:22.1515125Z 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-07-17T08:10:22.1521372Z 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-07-17T08:10:22.1527193Z 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-07-17T08:10:22.1533233Z 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-07-17T08:10:22.1539185Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1544975Z 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-07-17T08:10:22.1550843Z 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-07-17T08:10:22.1556212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1562003Z 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-07-17T08:10:22.1574343Z 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-07-17T08:10:22.1580099Z 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-07-17T08:10:22.1585819Z 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-07-17T08:10:22.1591532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1597176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\split_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1602869Z 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-07-17T08:10:22.1614801Z 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-07-17T08:10:22.1624693Z 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-07-17T08:10:22.1631048Z 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-07-17T08:10:22.1637462Z 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-07-17T08:10:22.1643306Z 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-07-17T08:10:22.1649124Z 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-07-17T08:10:22.1655100Z 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-07-17T08:10:22.1661033Z 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-07-17T08:10:22.1667156Z 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-07-17T08:10:22.1674628Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1680549Z 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-07-17T08:10:22.1686144Z 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-07-17T08:10:22.1691897Z 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-07-17T08:10:22.1697677Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1703409Z 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-07-17T08:10:22.1709018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1714859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sqrt_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1720197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1725932Z 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-07-17T08:10:22.1730491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1736272Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\square_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1741942Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1755040Z 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-07-17T08:10:22.1760903Z 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-07-17T08:10:22.1766569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1772597Z 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-07-17T08:10:22.1778392Z 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-07-17T08:10:22.1784252Z 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-07-17T08:10:22.1789890Z 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-07-17T08:10:22.1809906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1810333Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\squeeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1810741Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1816072Z 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-07-17T08:10:22.1822107Z 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-07-17T08:10:22.1828107Z 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-07-17T08:10:22.1833938Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1838858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sspaddmm_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1845189Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1850571Z 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-07-17T08:10:22.1856105Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1861650Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1867163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1872729Z 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-07-17T08:10:22.1878310Z 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-07-17T08:10:22.1883829Z 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-07-17T08:10:22.1889440Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1895598Z 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-07-17T08:10:22.1901688Z 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-07-17T08:10:22.1907213Z 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-07-17T08:10:22.1912800Z 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-07-17T08:10:22.1918628Z 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-07-17T08:10:22.1924318Z 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-07-17T08:10:22.1930111Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1935965Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\std_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1941490Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1948296Z 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-07-17T08:10:22.1953482Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1958522Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stft_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1963814Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1969244Z 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-07-17T08:10:22.1974781Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1980127Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\stride_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1985914Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.1990992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2009133Z 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-07-17T08:10:22.2014828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2020407Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\subtract_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2026569Z 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-07-17T08:10:22.2032174Z 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-07-17T08:10:22.2037894Z 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-07-17T08:10:22.2043417Z 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-07-17T08:10:22.2049132Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2054465Z 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-07-17T08:10:22.2060030Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2065553Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sub_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2070827Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2076544Z 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-07-17T08:10:22.2082765Z 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-07-17T08:10:22.2088481Z 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-07-17T08:10:22.2094163Z 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-07-17T08:10:22.2100325Z 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-07-17T08:10:22.2105808Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2111193Z 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-07-17T08:10:22.2116943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2122546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sum_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2127973Z 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-07-17T08:10:22.2134972Z 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-07-17T08:10:22.2140454Z 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-07-17T08:10:22.2146681Z 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-07-17T08:10:22.2152292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2158059Z 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-07-17T08:10:22.2163564Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2173856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\svd_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2179322Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2185053Z 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-07-17T08:10:22.2190700Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2196353Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapaxes_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2202163Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2207823Z 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-07-17T08:10:22.2214222Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2220099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\swapdims_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.2225924Z 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-07-17T08:10:22.2232244Z 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-07-17T08:10:22.3395679Z 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-07-17T08:10:22.3402500Z 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-07-17T08:10:22.3408692Z 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-07-17T08:10:22.3414876Z 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-07-17T08:10:22.3420755Z 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-07-17T08:10:22.3426601Z 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-07-17T08:10:22.3432804Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_numel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3438698Z 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-07-17T08:10:22.3444301Z 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-07-17T08:10:22.3449818Z 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-07-17T08:10:22.3455888Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_size.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3461493Z 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-07-17T08:10:22.3467080Z 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-07-17T08:10:22.3473606Z 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-07-17T08:10:22.3487596Z 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-07-17T08:10:22.3488779Z 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-07-17T08:10:22.3493366Z 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-07-17T08:10:22.3498740Z 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-07-17T08:10:22.3505335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\sym_stride.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3511374Z 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-07-17T08:10:22.3521443Z 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-07-17T08:10:22.3527360Z 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-07-17T08:10:22.3533090Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3538109Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3543510Z 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-07-17T08:10:22.3549581Z 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-07-17T08:10:22.3555101Z 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-07-17T08:10:22.3560654Z 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-07-17T08:10:22.3566358Z 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-07-17T08:10:22.3571961Z 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-07-17T08:10:22.3577498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3583099Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\take_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3588723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3593867Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3599188Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3605050Z 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-07-17T08:10:22.3610532Z 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-07-17T08:10:22.3616231Z 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-07-17T08:10:22.3621849Z 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-07-17T08:10:22.3627818Z 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-07-17T08:10:22.3633589Z 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-07-17T08:10:22.3639362Z 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-07-17T08:10:22.3645715Z 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-07-17T08:10:22.3651121Z 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-07-17T08:10:22.3656738Z 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-07-17T08:10:22.3662227Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3667511Z 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-07-17T08:10:22.3673195Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3678561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tanh_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3684226Z 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-07-17T08:10:22.3689676Z 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-07-17T08:10:22.3695303Z 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-07-17T08:10:22.3700710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3705872Z 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-07-17T08:10:22.3711589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3716928Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tan_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3722131Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3727526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3734190Z 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-07-17T08:10:22.3739661Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3745340Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensordot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3751014Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tensor_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3757191Z 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-07-17T08:10:22.3763100Z 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-07-17T08:10:22.3769009Z 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-07-17T08:10:22.3774811Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\thnn_conv2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3780839Z 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-07-17T08:10:22.3786375Z 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-07-17T08:10:22.3792104Z 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-07-17T08:10:22.3797895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3824874Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3831446Z 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-07-17T08:10:22.3837219Z 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-07-17T08:10:22.3843414Z 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-07-17T08:10:22.3849420Z 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-07-17T08:10:22.3855532Z 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-07-17T08:10:22.3873572Z 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-07-17T08:10:22.3879458Z 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-07-17T08:10:22.3886067Z 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-07-17T08:10:22.3891572Z 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-07-17T08:10:22.3897809Z 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-07-17T08:10:22.3903616Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3909299Z 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-07-17T08:10:22.3915146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3920782Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\threshold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3939317Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3940469Z 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-07-17T08:10:22.3941527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3943083Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tile_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3948225Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3953384Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3959155Z 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-07-17T08:10:22.3964883Z 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-07-17T08:10:22.3970340Z 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-07-17T08:10:22.3976154Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3981668Z 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-07-17T08:10:22.3988278Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.3993197Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\topk_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4016007Z 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-07-17T08:10:22.4021472Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4026656Z 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-07-17T08:10:22.4032495Z 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-07-17T08:10:22.4038169Z 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-07-17T08:10:22.4043674Z 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-07-17T08:10:22.4049444Z 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-07-17T08:10:22.4055086Z 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-07-17T08:10:22.4060877Z 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-07-17T08:10:22.4066289Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_mkldnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4071711Z 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-07-17T08:10:22.4104265Z 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-07-17T08:10:22.4109978Z 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-07-17T08:10:22.4115803Z 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-07-17T08:10:22.4121762Z 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-07-17T08:10:22.4127613Z 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-07-17T08:10:22.4133434Z 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-07-17T08:10:22.4139269Z 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-07-17T08:10:22.4144968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4150498Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4156009Z 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-07-17T08:10:22.4162245Z 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-07-17T08:10:22.4168707Z 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-07-17T08:10:22.4174436Z 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-07-17T08:10:22.4180582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4186122Z 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-07-17T08:10:22.4191811Z 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-07-17T08:10:22.4197509Z 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-07-17T08:10:22.4203496Z 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-07-17T08:10:22.4209364Z 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-07-17T08:10:22.4215523Z 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-07-17T08:10:22.4221267Z 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-07-17T08:10:22.4226894Z 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-07-17T08:10:22.4233932Z 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-07-17T08:10:22.4239671Z 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-07-17T08:10:22.4245587Z 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-07-17T08:10:22.4251580Z 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-07-17T08:10:22.4257286Z 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-07-17T08:10:22.4263028Z 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-07-17T08:10:22.4268934Z 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-07-17T08:10:22.4274568Z 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-07-17T08:10:22.4280363Z 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-07-17T08:10:22.4286105Z 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-07-17T08:10:22.4291916Z 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-07-17T08:10:22.4297919Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4304207Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4310435Z 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-07-17T08:10:22.4316298Z 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-07-17T08:10:22.4322791Z 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-07-17T08:10:22.4328744Z 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-07-17T08:10:22.4348558Z 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-07-17T08:10:22.4349555Z 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-07-17T08:10:22.4350541Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4354355Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trace_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4360118Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4372503Z 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-07-17T08:10:22.4377129Z 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-07-17T08:10:22.4383406Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4389168Z 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-07-17T08:10:22.4395118Z 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-07-17T08:10:22.4400892Z 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-07-17T08:10:22.4406477Z 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-07-17T08:10:22.4412250Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4417845Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\transpose_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4423530Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4430400Z 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-07-17T08:10:22.4435275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4440849Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapezoid_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4446510Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4452359Z 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-07-17T08:10:22.4457750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4463153Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trapz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4484263Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triangular_solve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4490721Z 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-07-17T08:10:22.4496332Z 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-07-17T08:10:22.4502173Z 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-07-17T08:10:22.4507841Z 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-07-17T08:10:22.4513589Z 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-07-17T08:10:22.4519286Z 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-07-17T08:10:22.4525384Z 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-07-17T08:10:22.4530895Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4536690Z 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-07-17T08:10:22.4542077Z 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-07-17T08:10:22.4547648Z 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-07-17T08:10:22.4553176Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4558904Z 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-07-17T08:10:22.4564628Z 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-07-17T08:10:22.4570277Z 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-07-17T08:10:22.4576047Z 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-07-17T08:10:22.4581735Z 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-07-17T08:10:22.4587800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4592688Z 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-07-17T08:10:22.4598129Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4603532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\tril_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4609119Z 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-07-17T08:10:22.4615024Z 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-07-17T08:10:22.4620609Z 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-07-17T08:10:22.4626188Z 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-07-17T08:10:22.4631840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4637544Z 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-07-17T08:10:22.4643401Z 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-07-17T08:10:22.4649038Z 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-07-17T08:10:22.4654629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4660380Z 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-07-17T08:10:22.4665985Z 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-07-17T08:10:22.4671605Z 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-07-17T08:10:22.4677272Z 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-07-17T08:10:22.4683055Z 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-07-17T08:10:22.4688887Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4694624Z 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-07-17T08:10:22.4700305Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4706046Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\triu_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4711746Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\true_divide.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4717654Z 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-07-17T08:10:22.4725230Z 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-07-17T08:10:22.4731102Z 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-07-17T08:10:22.4736974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4742828Z 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-07-17T08:10:22.4748333Z 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-07-17T08:10:22.4753991Z 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-07-17T08:10:22.4759690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4765524Z 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-07-17T08:10:22.4771356Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4777614Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\trunc_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4783561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\type_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4788968Z 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-07-17T08:10:22.4795039Z 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-07-17T08:10:22.4800474Z 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-07-17T08:10:22.4806371Z 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-07-17T08:10:22.4812170Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4817877Z 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-07-17T08:10:22.4824215Z 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-07-17T08:10:22.4830047Z 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-07-17T08:10:22.4835711Z 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-07-17T08:10:22.4841533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4846829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\t_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4857589Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4864096Z 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-07-17T08:10:22.4872509Z 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-07-17T08:10:22.4878981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4886843Z 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-07-17T08:10:22.4892761Z 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-07-17T08:10:22.4898022Z 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-07-17T08:10:22.4903747Z 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-07-17T08:10:22.4909663Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4915231Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unbind_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4920897Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4926675Z 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-07-17T08:10:22.4933098Z 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-07-17T08:10:22.4938480Z 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-07-17T08:10:22.4944094Z 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-07-17T08:10:22.4949698Z 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-07-17T08:10:22.4955427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4960921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unflatten_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4966436Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4971643Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.4978245Z 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-07-17T08:10:22.4983261Z 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-07-17T08:10:22.4989259Z 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-07-17T08:10:22.4994847Z 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-07-17T08:10:22.5000550Z 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-07-17T08:10:22.5006186Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5012218Z 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-07-17T08:10:22.5018096Z 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-07-17T08:10:22.5023873Z 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-07-17T08:10:22.5029547Z 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-07-17T08:10:22.5035272Z 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-07-17T08:10:22.5040920Z 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-07-17T08:10:22.5046630Z 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-07-17T08:10:22.5052386Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5057771Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unfold_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5063415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5069056Z 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-07-17T08:10:22.5074983Z 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-07-17T08:10:22.5080611Z 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-07-17T08:10:22.5086218Z 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-07-17T08:10:22.5091902Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5097462Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\uniform_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5103159Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_consecutive.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5108978Z 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-07-17T08:10:22.5114913Z 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-07-17T08:10:22.5120568Z 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-07-17T08:10:22.5126350Z 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-07-17T08:10:22.5132863Z 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-07-17T08:10:22.5138690Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unique_dim.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5144510Z 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-07-17T08:10:22.5150599Z 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-07-17T08:10:22.5156689Z 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-07-17T08:10:22.5162326Z 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-07-17T08:10:22.5168154Z 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-07-17T08:10:22.5174243Z 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-07-17T08:10:22.5179956Z 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-07-17T08:10:22.5186318Z 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-07-17T08:10:22.5191880Z 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-07-17T08:10:22.5197443Z 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-07-17T08:10:22.5203192Z 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-07-17T08:10:22.5208981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_chunk.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5214865Z 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-07-17T08:10:22.5220299Z 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-07-17T08:10:22.5225937Z 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-07-17T08:10:22.5231532Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsafe_split.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5237704Z 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-07-17T08:10:22.5243347Z 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-07-17T08:10:22.5249067Z 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-07-17T08:10:22.5254944Z 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-07-17T08:10:22.5261108Z 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-07-17T08:10:22.5266904Z 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-07-17T08:10:22.5272686Z 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-07-17T08:10:22.5278328Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5284153Z 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-07-17T08:10:22.5289580Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5295617Z 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-07-17T08:10:22.5317349Z 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-07-17T08:10:22.5322947Z 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-07-17T08:10:22.5328707Z 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-07-17T08:10:22.5335983Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5342491Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\unsqueeze_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5348175Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bicubic2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5354007Z 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-07-17T08:10:22.5360339Z 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-07-17T08:10:22.5365969Z 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-07-17T08:10:22.5371819Z 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-07-17T08:10:22.5377764Z 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-07-17T08:10:22.5383607Z 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-07-17T08:10:22.5389434Z 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-07-17T08:10:22.5395719Z 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-07-17T08:10:22.5401912Z 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-07-17T08:10:22.5407714Z 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-07-17T08:10:22.5413560Z 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-07-17T08:10:22.5419500Z 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-07-17T08:10:22.5425307Z 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-07-17T08:10:22.5431193Z 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-07-17T08:10:22.5437000Z 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-07-17T08:10:22.5443062Z 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-07-17T08:10:22.5449443Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_bilinear2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5456059Z 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-07-17T08:10:22.5462641Z 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-07-17T08:10:22.5469001Z 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-07-17T08:10:22.5475376Z 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-07-17T08:10:22.5481184Z 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-07-17T08:10:22.5487179Z 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-07-17T08:10:22.5493267Z 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-07-17T08:10:22.5499364Z 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-07-17T08:10:22.5505772Z 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-07-17T08:10:22.5511881Z 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-07-17T08:10:22.5518363Z 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-07-17T08:10:22.5524226Z 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-07-17T08:10:22.5531500Z 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-07-17T08:10:22.5542931Z 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-07-17T08:10:22.5548903Z 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-07-17T08:10:22.5554597Z 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-07-17T08:10:22.5560336Z 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-07-17T08:10:22.5566025Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_linear1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.5571973Z 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-07-17T08:10:22.5578353Z 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-07-17T08:10:22.5584247Z 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-07-17T08:10:22.6369452Z 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-07-17T08:10:22.6375291Z 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-07-17T08:10:22.6381285Z 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-07-17T08:10:22.6387482Z 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-07-17T08:10:22.6393406Z 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-07-17T08:10:22.6399453Z 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-07-17T08:10:22.6405337Z 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-07-17T08:10:22.6411022Z 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-07-17T08:10:22.6417304Z 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-07-17T08:10:22.6423130Z 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-07-17T08:10:22.6428928Z 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-07-17T08:10:22.6434588Z 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-07-17T08:10:22.6440120Z 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-07-17T08:10:22.6445883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest1d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6451752Z 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-07-17T08:10:22.6458275Z 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-07-17T08:10:22.6464038Z 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-07-17T08:10:22.6477798Z 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-07-17T08:10:22.6478998Z 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-07-17T08:10:22.6483717Z 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-07-17T08:10:22.6489737Z 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-07-17T08:10:22.6495326Z 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-07-17T08:10:22.6501352Z 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-07-17T08:10:22.6507213Z 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-07-17T08:10:22.6513073Z 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-07-17T08:10:22.6519103Z 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-07-17T08:10:22.6525191Z 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-07-17T08:10:22.6531344Z 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-07-17T08:10:22.6537597Z 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-07-17T08:10:22.6543887Z 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-07-17T08:10:22.6549892Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6555916Z 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-07-17T08:10:22.6562483Z 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-07-17T08:10:22.6597332Z 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-07-17T08:10:22.6598507Z 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-07-17T08:10:22.6599737Z 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-07-17T08:10:22.6600869Z 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-07-17T08:10:22.6603396Z 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-07-17T08:10:22.6604506Z 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-07-17T08:10:22.6609377Z 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-07-17T08:10:22.6639983Z 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-07-17T08:10:22.6647859Z 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-07-17T08:10:22.6652675Z 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-07-17T08:10:22.6659198Z 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-07-17T08:10:22.6665042Z 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-07-17T08:10:22.6671400Z 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-07-17T08:10:22.6677463Z 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-07-17T08:10:22.6683108Z 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-07-17T08:10:22.6688877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_nearest3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6695170Z 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-07-17T08:10:22.6701479Z 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-07-17T08:10:22.6707299Z 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-07-17T08:10:22.6713213Z 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-07-17T08:10:22.6719133Z 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-07-17T08:10:22.6725038Z 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-07-17T08:10:22.6731203Z 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-07-17T08:10:22.6737182Z 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-07-17T08:10:22.6743422Z 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-07-17T08:10:22.6749256Z 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-07-17T08:10:22.6754998Z 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-07-17T08:10:22.6760972Z 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-07-17T08:10:22.6766649Z 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-07-17T08:10:22.6773858Z 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-07-17T08:10:22.6780126Z 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-07-17T08:10:22.6786029Z 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-07-17T08:10:22.6791850Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\upsample_trilinear3d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6797734Z 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-07-17T08:10:22.6804368Z 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-07-17T08:10:22.6810261Z 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-07-17T08:10:22.6816162Z 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-07-17T08:10:22.6821919Z 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-07-17T08:10:22.6828185Z 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-07-17T08:10:22.6834053Z 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-07-17T08:10:22.6839932Z 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-07-17T08:10:22.6846137Z 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-07-17T08:10:22.6852038Z 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-07-17T08:10:22.6862386Z 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-07-17T08:10:22.6868460Z 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-07-17T08:10:22.6874500Z 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-07-17T08:10:22.6880629Z 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-07-17T08:10:22.6886475Z 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-07-17T08:10:22.6892470Z 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-07-17T08:10:22.6898045Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6907679Z 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-07-17T08:10:22.6913442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6919538Z 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-07-17T08:10:22.6925665Z 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-07-17T08:10:22.6931172Z 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-07-17T08:10:22.6937137Z 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-07-17T08:10:22.6942591Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6948670Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6954509Z 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-07-17T08:10:22.6960459Z 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-07-17T08:10:22.6966095Z 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-07-17T08:10:22.6971920Z 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-07-17T08:10:22.6977633Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6983917Z 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-07-17T08:10:22.6989799Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.6995304Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vander_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7001205Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7006847Z 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-07-17T08:10:22.7013016Z 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-07-17T08:10:22.7018746Z 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-07-17T08:10:22.7024405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_mean.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7061656Z 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-07-17T08:10:22.7067473Z 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-07-17T08:10:22.7073181Z 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-07-17T08:10:22.7078966Z 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-07-17T08:10:22.7085150Z 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-07-17T08:10:22.7090906Z 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-07-17T08:10:22.7096898Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7102652Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\var_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7108451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7114696Z 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-07-17T08:10:22.7120368Z 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-07-17T08:10:22.7126077Z 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-07-17T08:10:22.7131829Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7137545Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vdot_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7142972Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7149005Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_as.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7154328Z 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-07-17T08:10:22.7160143Z 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-07-17T08:10:22.7166563Z 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-07-17T08:10:22.7172717Z 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-07-17T08:10:22.7178428Z 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-07-17T08:10:22.7184518Z 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-07-17T08:10:22.7190649Z 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-07-17T08:10:22.7197507Z 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-07-17T08:10:22.7203326Z 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-07-17T08:10:22.7209354Z 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-07-17T08:10:22.7215143Z 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-07-17T08:10:22.7221177Z 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-07-17T08:10:22.7227343Z 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-07-17T08:10:22.7232720Z 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-07-17T08:10:22.7238402Z 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-07-17T08:10:22.7244161Z 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-07-17T08:10:22.7250405Z 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-07-17T08:10:22.7262030Z 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-07-17T08:10:22.7267878Z 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-07-17T08:10:22.7274032Z 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-07-17T08:10:22.7279995Z 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-07-17T08:10:22.7285965Z 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-07-17T08:10:22.7291891Z 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-07-17T08:10:22.7297780Z 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-07-17T08:10:22.7303141Z 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-07-17T08:10:22.7309093Z 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-07-17T08:10:22.7314805Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7320813Z 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-07-17T08:10:22.7326617Z 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-07-17T08:10:22.7332125Z 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-07-17T08:10:22.7337827Z 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-07-17T08:10:22.7343566Z 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-07-17T08:10:22.7349243Z 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-07-17T08:10:22.7355866Z 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-07-17T08:10:22.7361578Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7367569Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\view_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7372941Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7378502Z 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-07-17T08:10:22.7383921Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7389342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vsplit_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7399084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7404878Z 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-07-17T08:10:22.7410750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7447689Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\vstack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7485270Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7492259Z 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-07-17T08:10:22.7499189Z 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-07-17T08:10:22.7507495Z 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-07-17T08:10:22.7514764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7521722Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\where_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7528797Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7537328Z 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-07-17T08:10:22.7544344Z 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-07-17T08:10:22.7551776Z 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-07-17T08:10:22.7560141Z 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-07-17T08:10:22.7565978Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7573400Z 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-07-17T08:10:22.7578974Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7584665Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xlogy_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7591936Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7597231Z 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-07-17T08:10:22.7602642Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7608087Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\xor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7613461Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7620360Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7626273Z 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-07-17T08:10:22.7631706Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_like.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7637485Z 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-07-17T08:10:22.7647890Z 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-07-17T08:10:22.7653630Z 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-07-17T08:10:22.7659343Z 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-07-17T08:10:22.7665271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7671438Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zeros_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7677489Z 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-07-17T08:10:22.7683171Z 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-07-17T08:10:22.7692910Z 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-07-17T08:10:22.7698764Z 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-07-17T08:10:22.7704318Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7709800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\zero_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7715353Z 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-07-17T08:10:22.7721070Z 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-07-17T08:10:22.7726944Z 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-07-17T08:10:22.7732749Z 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-07-17T08:10:22.7738812Z 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-07-17T08:10:22.7744473Z 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-07-17T08:10:22.7750479Z 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-07-17T08:10:22.7756411Z 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-07-17T08:10:22.7762051Z 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-07-17T08:10:22.7768159Z 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-07-17T08:10:22.7777978Z 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-07-17T08:10:22.7784083Z 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-07-17T08:10:22.7790454Z 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-07-17T08:10:22.7797368Z 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-07-17T08:10:22.7803583Z 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-07-17T08:10:22.7809362Z 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-07-17T08:10:22.7815168Z 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-07-17T08:10:22.7821146Z 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-07-17T08:10:22.7827143Z 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-07-17T08:10:22.7833338Z 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-07-17T08:10:22.7839501Z 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-07-17T08:10:22.7846203Z 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-07-17T08:10:22.7852361Z 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-07-17T08:10:22.7879874Z 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-07-17T08:10:22.7880877Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_addmm_activation.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7882095Z 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-07-17T08:10:22.7884888Z 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-07-17T08:10:22.7885999Z 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-07-17T08:10:22.7891614Z 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-07-17T08:10:22.7897631Z 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-07-17T08:10:22.7903898Z 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-07-17T08:10:22.7909895Z 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-07-17T08:10:22.7915715Z 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-07-17T08:10:22.7921707Z 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-07-17T08:10:22.7927440Z 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-07-17T08:10:22.7933216Z 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-07-17T08:10:22.7938945Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_add_relu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7944840Z 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-07-17T08:10:22.7955529Z 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-07-17T08:10:22.7962085Z 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-07-17T08:10:22.7966805Z 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-07-17T08:10:22.7972946Z 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-07-17T08:10:22.7978699Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.7984228Z 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-07-17T08:10:22.7990618Z 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-07-17T08:10:22.7996135Z 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-07-17T08:10:22.8001588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8007219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_aminmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8013215Z 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-07-17T08:10:22.8019379Z 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-07-17T08:10:22.8025304Z 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-07-17T08:10:22.8031068Z 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-07-17T08:10:22.8041505Z 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-07-17T08:10:22.8047337Z 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-07-17T08:10:22.8053240Z 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-07-17T08:10:22.8059151Z 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-07-17T08:10:22.8064771Z 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-07-17T08:10:22.8096488Z 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-07-17T08:10:22.8102142Z 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-07-17T08:10:22.8108085Z 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-07-17T08:10:22.8114482Z 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-07-17T08:10:22.8120366Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_async.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8126155Z 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-07-17T08:10:22.8132243Z 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-07-17T08:10:22.8137766Z 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-07-17T08:10:22.8143710Z 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-07-17T08:10:22.8150086Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_assert_scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8156477Z 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-07-17T08:10:22.8162909Z 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-07-17T08:10:22.8168461Z 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-07-17T08:10:22.8181643Z 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-07-17T08:10:22.8182963Z 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-07-17T08:10:22.8188505Z 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-07-17T08:10:22.8199971Z 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-07-17T08:10:22.8206166Z 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-07-17T08:10:22.8212209Z 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-07-17T08:10:22.8218061Z 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-07-17T08:10:22.8223850Z 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-07-17T08:10:22.8229429Z 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-07-17T08:10:22.8235205Z 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-07-17T08:10:22.8241265Z 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-07-17T08:10:22.8250753Z 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-07-17T08:10:22.8257424Z 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-07-17T08:10:22.8263455Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8269409Z 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-07-17T08:10:22.8275101Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8280993Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8286864Z 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-07-17T08:10:22.8292725Z 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-07-17T08:10:22.8298915Z 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-07-17T08:10:22.8304722Z 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-07-17T08:10:22.8310591Z 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-07-17T08:10:22.8335038Z 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-07-17T08:10:22.8340935Z 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-07-17T08:10:22.8359844Z 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-07-17T08:10:22.8360878Z 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-07-17T08:10:22.8362031Z 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-07-17T08:10:22.8366794Z 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-07-17T08:10:22.8373027Z 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-07-17T08:10:22.8379005Z 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-07-17T08:10:22.8385213Z 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-07-17T08:10:22.8390972Z 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-07-17T08:10:22.8397033Z 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-07-17T08:10:22.8402755Z 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-07-17T08:10:22.8408666Z 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-07-17T08:10:22.8414738Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Byte.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8420535Z 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-07-17T08:10:22.8425927Z 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-07-17T08:10:22.8431340Z 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-07-17T08:10:22.8436943Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Char.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8443393Z 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-07-17T08:10:22.8449203Z 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-07-17T08:10:22.8454691Z 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-07-17T08:10:22.8460296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Double.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8466066Z 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-07-17T08:10:22.8476587Z 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-07-17T08:10:22.8482167Z 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-07-17T08:10:22.8487937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Float.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8494103Z 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-07-17T08:10:22.8499837Z 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-07-17T08:10:22.8505284Z 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-07-17T08:10:22.8510939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Half.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8521778Z 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-07-17T08:10:22.8527368Z 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-07-17T08:10:22.8532873Z 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-07-17T08:10:22.8538736Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Int.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8544949Z 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-07-17T08:10:22.8550631Z 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-07-17T08:10:22.8556007Z 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-07-17T08:10:22.8561675Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Long.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8567558Z 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-07-17T08:10:22.8573209Z 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-07-17T08:10:22.8579122Z 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-07-17T08:10:22.8584718Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cast_Short.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8590596Z 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-07-17T08:10:22.8596417Z 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-07-17T08:10:22.8605244Z 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-07-17T08:10:22.8608526Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8614543Z 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-07-17T08:10:22.8620512Z 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-07-17T08:10:22.8626433Z 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-07-17T08:10:22.8632386Z 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-07-17T08:10:22.8637935Z 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-07-17T08:10:22.8643773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8649795Z 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-07-17T08:10:22.8655615Z 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-07-17T08:10:22.8661615Z 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-07-17T08:10:22.8667416Z 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-07-17T08:10:22.8673205Z 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-07-17T08:10:22.8679023Z 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-07-17T08:10:22.8685105Z 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-07-17T08:10:22.8690793Z 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-07-17T08:10:22.8696973Z 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-07-17T08:10:22.8702888Z 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-07-17T08:10:22.8708663Z 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-07-17T08:10:22.8714915Z 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-07-17T08:10:22.8720880Z 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-07-17T08:10:22.8726592Z 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-07-17T08:10:22.8732500Z 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-07-17T08:10:22.8738243Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_chunk_cat.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8744197Z 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-07-17T08:10:22.8750592Z 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-07-17T08:10:22.8756485Z 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-07-17T08:10:22.8762351Z 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-07-17T08:10:22.8772577Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8778477Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8784446Z 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-07-17T08:10:22.8790587Z 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-07-17T08:10:22.8796539Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8802335Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesced_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8808356Z 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-07-17T08:10:22.8814372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8820433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_coalesce_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8826487Z 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-07-17T08:10:22.8862322Z 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-07-17T08:10:22.8868285Z 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-07-17T08:10:22.8874146Z 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-07-17T08:10:22.8880466Z 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-07-17T08:10:22.8892051Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8897736Z 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-07-17T08:10:22.8903405Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8909462Z 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-07-17T08:10:22.8915192Z 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-07-17T08:10:22.8920876Z 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-07-17T08:10:22.8926197Z 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-07-17T08:10:22.8933630Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8937908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8943361Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conj_physical.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.8949276Z 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-07-17T08:10:22.8954842Z 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-07-17T08:10:22.8960520Z 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-07-17T08:10:22.8966226Z 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-07-17T08:10:22.8978419Z 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-07-17T08:10:22.8984125Z 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-07-17T08:10:22.8990175Z 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-07-17T08:10:22.8995771Z 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-07-17T08:10:22.9001702Z 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-07-17T08:10:22.9008443Z 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-07-17T08:10:22.9014413Z 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-07-17T08:10:22.9020141Z 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-07-17T08:10:22.9026474Z 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-07-17T08:10:22.9032566Z 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-07-17T08:10:22.9038508Z 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-07-17T08:10:22.9044355Z 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-07-17T08:10:22.9050322Z 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-07-17T08:10:22.9056296Z 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-07-17T08:10:22.9062206Z 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-07-17T08:10:22.9068117Z 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-07-17T08:10:22.9074051Z 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-07-17T08:10:22.9080515Z 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-07-17T08:10:22.9087218Z 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-07-17T08:10:22.9093184Z 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-07-17T08:10:22.9098730Z 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-07-17T08:10:22.9104844Z 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-07-17T08:10:22.9110420Z 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-07-17T08:10:22.9116269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9122313Z 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-07-17T08:10:22.9128257Z 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-07-17T08:10:22.9134026Z 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-07-17T08:10:22.9140168Z 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-07-17T08:10:22.9146084Z 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-07-17T08:10:22.9151964Z 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-07-17T08:10:22.9157783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_mode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9163887Z 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-07-17T08:10:22.9169854Z 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-07-17T08:10:22.9175913Z 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-07-17T08:10:22.9181653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9187415Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_convolution_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9193212Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_conv_depthwise2d.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9199290Z 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-07-17T08:10:22.9205090Z 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-07-17T08:10:22.9210655Z 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-07-17T08:10:22.9216723Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_copy_from.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9222450Z 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-07-17T08:10:22.9233863Z 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-07-17T08:10:22.9239614Z 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-07-17T08:10:22.9245178Z 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-07-17T08:10:22.9251261Z 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-07-17T08:10:22.9257575Z 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-07-17T08:10:22.9270409Z 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-07-17T08:10:22.9276338Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cslt_compress.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9282162Z 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-07-17T08:10:22.9287950Z 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-07-17T08:10:22.9293564Z 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-07-17T08:10:22.9299340Z 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-07-17T08:10:22.9306497Z 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-07-17T08:10:22.9312933Z 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-07-17T08:10:22.9318963Z 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-07-17T08:10:22.9325106Z 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-07-17T08:10:22.9331067Z 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-07-17T08:10:22.9337416Z 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-07-17T08:10:22.9343295Z 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-07-17T08:10:22.9349041Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_ctc_loss.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9354891Z 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-07-17T08:10:22.9361680Z 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-07-17T08:10:22.9367032Z 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-07-17T08:10:22.9372851Z 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-07-17T08:10:22.9378869Z 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-07-17T08:10:22.9384666Z 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-07-17T08:10:22.9390656Z 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-07-17T08:10:22.9396325Z 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-07-17T08:10:22.9402033Z 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-07-17T08:10:22.9413505Z 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-07-17T08:10:22.9419307Z 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-07-17T08:10:22.9424893Z 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-07-17T08:10:22.9430644Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9436552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward_cuda_dispatch.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9442121Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9447679Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_attention_backward_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9453532Z 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-07-17T08:10:22.9459536Z 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-07-17T08:10:22.9465365Z 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-07-17T08:10:22.9471076Z 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-07-17T08:10:22.9477225Z 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-07-17T08:10:22.9483093Z 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-07-17T08:10:22.9488727Z 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-07-17T08:10:22.9494808Z 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-07-17T08:10:22.9500400Z 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-07-17T08:10:22.9506892Z 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-07-17T08:10:22.9513064Z 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-07-17T08:10:22.9518861Z 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-07-17T08:10:22.9524683Z 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-07-17T08:10:22.9530418Z 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-07-17T08:10:22.9536162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cudnn_rnn.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9542030Z 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-07-17T08:10:22.9548654Z 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-07-17T08:10:22.9554462Z 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-07-17T08:10:22.9560255Z 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-07-17T08:10:22.9566103Z 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-07-17T08:10:22.9572160Z 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-07-17T08:10:22.9577944Z 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-07-17T08:10:22.9584105Z 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-07-17T08:10:22.9590273Z 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-07-17T08:10:22.9596190Z 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-07-17T08:10:22.9602077Z 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-07-17T08:10:22.9608003Z 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-07-17T08:10:22.9615523Z 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-07-17T08:10:22.9622193Z 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-07-17T08:10:22.9628502Z 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-07-17T08:10:22.9634137Z 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-07-17T08:10:22.9639686Z 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-07-17T08:10:22.9645417Z 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-07-17T08:10:22.9651159Z 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-07-17T08:10:22.9657101Z 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-07-17T08:10:22.9663307Z 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-07-17T08:10:22.9669033Z 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-07-17T08:10:22.9674958Z 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-07-17T08:10:22.9681247Z 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-07-17T08:10:22.9687207Z 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-07-17T08:10:22.9693325Z 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-07-17T08:10:22.9699045Z 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-07-17T08:10:22.9710203Z 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-07-17T08:10:22.9716215Z 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-07-17T08:10:22.9738554Z 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-07-17T08:10:22.9744635Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummax_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9750463Z 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-07-17T08:10:22.9756209Z 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-07-17T08:10:22.9762038Z 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-07-17T08:10:22.9767867Z 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-07-17T08:10:22.9773716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_cummin_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9779723Z 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-07-17T08:10:22.9785521Z 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-07-17T08:10:22.9791272Z 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-07-17T08:10:22.9796999Z 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-07-17T08:10:22.9802783Z 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-07-17T08:10:22.9808794Z 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-07-17T08:10:22.9814905Z 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-07-17T08:10:22.9820538Z 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-07-17T08:10:22.9826401Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9831783Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9837586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimI_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9843204Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9853653Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9859730Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dimV_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9865750Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dim_arange.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9871710Z 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-07-17T08:10:22.9877797Z 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-07-17T08:10:22.9882005Z 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-07-17T08:10:22.9888998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_dirichlet_grad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9898177Z 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-07-17T08:10:22.9905153Z 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-07-17T08:10:22.9909556Z 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-07-17T08:10:22.9915159Z 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-07-17T08:10:22.9920936Z 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-07-17T08:10:22.9926701Z 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-07-17T08:10:22.9932418Z 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-07-17T08:10:22.9938181Z 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-07-17T08:10:22.9943727Z 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-07-17T08:10:22.9956495Z 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-07-17T08:10:22.9962270Z 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-07-17T08:10:22.9968448Z 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-07-17T08:10:22.9974264Z 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-07-17T08:10:22.9980026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:22.9990351Z 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-07-17T08:10:22.9996088Z 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-07-17T08:10:23.0001745Z 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-07-17T08:10:23.0007983Z 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-07-17T08:10:23.0013946Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0019622Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_efficientzerotensor_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0025331Z 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-07-17T08:10:23.0035986Z 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-07-17T08:10:23.0041873Z 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-07-17T08:10:23.0047838Z 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-07-17T08:10:23.0053685Z 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-07-17T08:10:23.0059623Z 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-07-17T08:10:23.0065592Z 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-07-17T08:10:23.0071313Z 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-07-17T08:10:23.0081383Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_embedding_bag.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0087076Z 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-07-17T08:10:23.0093575Z 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-07-17T08:10:23.0099333Z 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-07-17T08:10:23.0105112Z 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-07-17T08:10:23.0110858Z 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-07-17T08:10:23.0116833Z 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-07-17T08:10:23.0132107Z 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-07-17T08:10:23.0139076Z 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-07-17T08:10:23.0160626Z 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-07-17T08:10:23.0163144Z 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-07-17T08:10:23.0164555Z 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-07-17T08:10:23.0165733Z 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-07-17T08:10:23.0168772Z 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-07-17T08:10:23.0174576Z 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-07-17T08:10:23.0180491Z 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-07-17T08:10:23.0186447Z 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-07-17T08:10:23.0192145Z 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-07-17T08:10:23.0198353Z 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-07-17T08:10:23.0204530Z 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-07-17T08:10:23.0210527Z 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-07-17T08:10:23.0222207Z 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-07-17T08:10:23.0228327Z 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-07-17T08:10:23.0234304Z 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-07-17T08:10:23.0240762Z 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-07-17T08:10:23.0246777Z 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-07-17T08:10:23.0253492Z 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-07-17T08:10:23.0259340Z 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-07-17T08:10:23.0274435Z 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-07-17T08:10:23.0280953Z 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-07-17T08:10:23.0287230Z 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-07-17T08:10:23.0293211Z 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-07-17T08:10:23.0299206Z 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-07-17T08:10:23.0305191Z 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-07-17T08:10:23.0312383Z 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-07-17T08:10:23.0318115Z 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-07-17T08:10:23.0324155Z 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-07-17T08:10:23.0330100Z 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-07-17T08:10:23.0335891Z 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-07-17T08:10:23.0347515Z 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-07-17T08:10:23.0368951Z 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-07-17T08:10:23.0370148Z 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-07-17T08:10:23.0371432Z 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-07-17T08:10:23.0376791Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_euclidean_dist.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0382956Z 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-07-17T08:10:23.0388744Z 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-07-17T08:10:23.0394586Z 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-07-17T08:10:23.0400551Z 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-07-17T08:10:23.0406469Z 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-07-17T08:10:23.0417185Z 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-07-17T08:10:23.0423392Z 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-07-17T08:10:23.0429584Z 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-07-17T08:10:23.0435549Z 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-07-17T08:10:23.0441892Z 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-07-17T08:10:23.0447784Z 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-07-17T08:10:23.0454095Z 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-07-17T08:10:23.0464297Z 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-07-17T08:10:23.0470479Z 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-07-17T08:10:23.0476326Z 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-07-17T08:10:23.0482502Z 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-07-17T08:10:23.0488823Z 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-07-17T08:10:23.0494983Z 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-07-17T08:10:23.0500991Z 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-07-17T08:10:23.0507586Z 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-07-17T08:10:23.0513515Z 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-07-17T08:10:23.0519481Z 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-07-17T08:10:23.0525404Z 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-07-17T08:10:23.0531302Z 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-07-17T08:10:23.0537467Z 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-07-17T08:10:23.0543380Z 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-07-17T08:10:23.0549704Z 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-07-17T08:10:23.0555668Z 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-07-17T08:10:23.0561898Z 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-07-17T08:10:23.0568090Z 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-07-17T08:10:23.0578972Z 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-07-17T08:10:23.0584586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0589986Z 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-07-17T08:10:23.0595777Z 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-07-17T08:10:23.0601430Z 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-07-17T08:10:23.0607054Z 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-07-17T08:10:23.0613042Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_c2r.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0618452Z 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-07-17T08:10:23.0624274Z 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-07-17T08:10:23.0629992Z 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-07-17T08:10:23.0635943Z 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-07-17T08:10:23.0641868Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fft_r2c.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0654380Z 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-07-17T08:10:23.0660146Z 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-07-17T08:10:23.0665886Z 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-07-17T08:10:23.0671616Z 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-07-17T08:10:23.0677412Z 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-07-17T08:10:23.0684361Z 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-07-17T08:10:23.0695655Z 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-07-17T08:10:23.0701659Z 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-07-17T08:10:23.0707295Z 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-07-17T08:10:23.0713191Z 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-07-17T08:10:23.0718974Z 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-07-17T08:10:23.0724565Z 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-07-17T08:10:23.0730391Z 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-07-17T08:10:23.0736387Z 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-07-17T08:10:23.0742620Z 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-07-17T08:10:23.0748230Z 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-07-17T08:10:23.0753856Z 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-07-17T08:10:23.0759518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0765188Z 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-07-17T08:10:23.0770699Z 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-07-17T08:10:23.0776546Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0782230Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foobar_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0787773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_abs.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0794181Z 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-07-17T08:10:23.0799802Z 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-07-17T08:10:23.0805469Z 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-07-17T08:10:23.0811451Z 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-07-17T08:10:23.0817773Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_acos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0823808Z 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-07-17T08:10:23.0829655Z 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-07-17T08:10:23.0835295Z 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-07-17T08:10:23.0841216Z 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-07-17T08:10:23.0847018Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_add.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0853116Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcdiv.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0859166Z 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-07-17T08:10:23.0866248Z 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-07-17T08:10:23.0872296Z 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-07-17T08:10:23.0878521Z 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-07-17T08:10:23.0884714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_addcmul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0891442Z 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-07-17T08:10:23.0897727Z 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-07-17T08:10:23.0904740Z 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-07-17T08:10:23.0911085Z 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-07-17T08:10:23.0917342Z 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-07-17T08:10:23.0923494Z 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-07-17T08:10:23.0929380Z 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-07-17T08:10:23.0936585Z 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-07-17T08:10:23.0946219Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_asin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0952818Z 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-07-17T08:10:23.0958411Z 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-07-17T08:10:23.0964212Z 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-07-17T08:10:23.0969917Z 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-07-17T08:10:23.0975812Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_atan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.0981760Z 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-07-17T08:10:23.0992802Z 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-07-17T08:10:23.0998625Z 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-07-17T08:10:23.1004517Z 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-07-17T08:10:23.1010173Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_ceil.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1016382Z 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-07-17T08:10:23.1022044Z 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-07-17T08:10:23.1027749Z 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-07-17T08:10:23.1033683Z 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-07-17T08:10:23.1040036Z 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-07-17T08:10:23.1046106Z 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-07-17T08:10:23.1052214Z 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-07-17T08:10:23.1058079Z 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-07-17T08:10:23.1063824Z 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-07-17T08:10:23.1069703Z 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-07-17T08:10:23.1076026Z 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-07-17T08:10:23.1081732Z 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-07-17T08:10:23.1087893Z 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-07-17T08:10:23.1093820Z 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-07-17T08:10:23.1099596Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1105603Z 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-07-17T08:10:23.1111290Z 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-07-17T08:10:23.1117039Z 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-07-17T08:10:23.1123472Z 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-07-17T08:10:23.1129373Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cos.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1135944Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_cosh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1142422Z 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-07-17T08:10:23.1148340Z 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-07-17T08:10:23.1154850Z 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-07-17T08:10:23.1167483Z 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-07-17T08:10:23.1175025Z 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-07-17T08:10:23.1181214Z 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-07-17T08:10:23.1187996Z 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-07-17T08:10:23.1194002Z 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-07-17T08:10:23.1200022Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_div.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1207109Z 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-07-17T08:10:23.1213870Z 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-07-17T08:10:23.1221633Z 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-07-17T08:10:23.1227488Z 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-07-17T08:10:23.1233216Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erf.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1239292Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_erfc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1245519Z 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-07-17T08:10:23.1251880Z 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-07-17T08:10:23.1258109Z 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-07-17T08:10:23.1264135Z 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-07-17T08:10:23.1270561Z 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-07-17T08:10:23.1276888Z 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-07-17T08:10:23.1283182Z 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-07-17T08:10:23.1290437Z 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-07-17T08:10:23.1296508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_exp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1302300Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_expm1.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1308663Z 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-07-17T08:10:23.1314523Z 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-07-17T08:10:23.1320678Z 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-07-17T08:10:23.1326879Z 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-07-17T08:10:23.1333768Z 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-07-17T08:10:23.1340098Z 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-07-17T08:10:23.1346439Z 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-07-17T08:10:23.1353837Z 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-07-17T08:10:23.1376715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_floor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1377311Z 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-07-17T08:10:23.1377906Z 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-07-17T08:10:23.1379198Z 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-07-17T08:10:23.1404039Z 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-07-17T08:10:23.1409707Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_frac.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1416149Z 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-07-17T08:10:23.1427809Z 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-07-17T08:10:23.1432366Z 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-07-17T08:10:23.1438181Z 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-07-17T08:10:23.1444280Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lerp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1450656Z 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-07-17T08:10:23.1456443Z 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-07-17T08:10:23.1462424Z 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-07-17T08:10:23.1468597Z 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-07-17T08:10:23.1474588Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_lgamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1480746Z 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-07-17T08:10:23.1487239Z 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-07-17T08:10:23.1493394Z 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-07-17T08:10:23.1499280Z 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-07-17T08:10:23.1505108Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1511265Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log10.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1518320Z 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-07-17T08:10:23.1524151Z 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-07-17T08:10:23.1530199Z 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-07-17T08:10:23.1536616Z 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-07-17T08:10:23.1542669Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log1p.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1548697Z 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-07-17T08:10:23.1554611Z 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-07-17T08:10:23.1560755Z 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-07-17T08:10:23.1566807Z 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-07-17T08:10:23.1572859Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_log2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1579216Z 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-07-17T08:10:23.1589865Z 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-07-17T08:10:23.1595710Z 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-07-17T08:10:23.1601567Z 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-07-17T08:10:23.1608192Z 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-07-17T08:10:23.1633389Z 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-07-17T08:10:23.1639105Z 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-07-17T08:10:23.1645065Z 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-07-17T08:10:23.1651209Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_max.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1657566Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_maximum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1664139Z 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-07-17T08:10:23.1670356Z 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-07-17T08:10:23.1676331Z 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-07-17T08:10:23.1682816Z 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-07-17T08:10:23.1690014Z 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-07-17T08:10:23.1696532Z 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-07-17T08:10:23.1702627Z 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-07-17T08:10:23.1708709Z 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-07-17T08:10:23.1714342Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_minimum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1720698Z 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-07-17T08:10:23.1726911Z 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-07-17T08:10:23.1733217Z 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-07-17T08:10:23.1739206Z 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-07-17T08:10:23.1745494Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_mul.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1751842Z 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-07-17T08:10:23.1758034Z 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-07-17T08:10:23.1764943Z 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-07-17T08:10:23.1771707Z 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-07-17T08:10:23.1777439Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_neg.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1783312Z 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-07-17T08:10:23.1789456Z 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-07-17T08:10:23.1795733Z 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-07-17T08:10:23.1802111Z 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-07-17T08:10:23.1808221Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1814433Z 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-07-17T08:10:23.1820561Z 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-07-17T08:10:23.1826752Z 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-07-17T08:10:23.1833201Z 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-07-17T08:10:23.1839113Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_pow.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1845648Z 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-07-17T08:10:23.1851848Z 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-07-17T08:10:23.1858049Z 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-07-17T08:10:23.1864072Z 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-07-17T08:10:23.1876483Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_reciprocal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1883197Z 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-07-17T08:10:23.1889579Z 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-07-17T08:10:23.1895942Z 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-07-17T08:10:23.1902120Z 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-07-17T08:10:23.1908139Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_round.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1914652Z 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-07-17T08:10:23.1920450Z 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-07-17T08:10:23.1926358Z 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-07-17T08:10:23.1932677Z 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-07-17T08:10:23.1938464Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_rsqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1944651Z 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-07-17T08:10:23.1950355Z 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-07-17T08:10:23.1956028Z 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-07-17T08:10:23.1962154Z 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-07-17T08:10:23.1983100Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sigmoid.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.1989186Z 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-07-17T08:10:23.1995135Z 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-07-17T08:10:23.2001303Z 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-07-17T08:10:23.2007595Z 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-07-17T08:10:23.2012906Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sign.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2019467Z 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-07-17T08:10:23.2024679Z 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-07-17T08:10:23.2030435Z 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-07-17T08:10:23.2036440Z 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-07-17T08:10:23.2042451Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sin.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2048184Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sinh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2054229Z 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-07-17T08:10:23.2065413Z 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-07-17T08:10:23.2071282Z 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-07-17T08:10:23.2077202Z 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-07-17T08:10:23.2083562Z 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-07-17T08:10:23.2095607Z 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-07-17T08:10:23.2101753Z 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-07-17T08:10:23.2107714Z 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-07-17T08:10:23.2113527Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sqrt.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2119828Z 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-07-17T08:10:23.2125492Z 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-07-17T08:10:23.2131477Z 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-07-17T08:10:23.2137525Z 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-07-17T08:10:23.2143288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_sub.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2149462Z 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-07-17T08:10:23.2155252Z 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-07-17T08:10:23.2161518Z 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-07-17T08:10:23.2167257Z 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-07-17T08:10:23.2173568Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tan.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2179501Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_tanh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2185946Z 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-07-17T08:10:23.2191968Z 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-07-17T08:10:23.2199020Z 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-07-17T08:10:23.2204916Z 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-07-17T08:10:23.2211029Z 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-07-17T08:10:23.2216744Z 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-07-17T08:10:23.2222796Z 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-07-17T08:10:23.2228883Z 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-07-17T08:10:23.2234841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_trunc.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2241426Z 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-07-17T08:10:23.2247393Z 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-07-17T08:10:23.2253746Z 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-07-17T08:10:23.2260231Z 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-07-17T08:10:23.2266271Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_foreach_zero.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2272881Z 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-07-17T08:10:23.2279800Z 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-07-17T08:10:23.2285948Z 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-07-17T08:10:23.2291718Z 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-07-17T08:10:23.2297544Z 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-07-17T08:10:23.2303573Z 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-07-17T08:10:23.2309362Z 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-07-17T08:10:23.2315456Z 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-07-17T08:10:23.2321336Z 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-07-17T08:10:23.2333828Z 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-07-17T08:10:23.2340045Z 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-07-17T08:10:23.2346399Z 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-07-17T08:10:23.2352464Z 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-07-17T08:10:23.2358893Z 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-07-17T08:10:23.2365105Z 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-07-17T08:10:23.2386979Z 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-07-17T08:10:23.2387626Z 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-07-17T08:10:23.2388244Z 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-07-17T08:10:23.2392880Z 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-07-17T08:10:23.2398896Z 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-07-17T08:10:23.2404567Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adagrad.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2410827Z 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-07-17T08:10:23.2417048Z 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-07-17T08:10:23.2423231Z 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-07-17T08:10:23.2429190Z 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-07-17T08:10:23.2435162Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adam.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2440953Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_adamw.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2447022Z 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-07-17T08:10:23.2453076Z 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-07-17T08:10:23.2458710Z 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-07-17T08:10:23.2464441Z 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-07-17T08:10:23.2470277Z 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-07-17T08:10:23.2476571Z 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-07-17T08:10:23.2484309Z 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-07-17T08:10:23.2490083Z 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-07-17T08:10:23.2496353Z 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-07-17T08:10:23.2502179Z 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-07-17T08:10:23.2507981Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_dropout.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2514230Z 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-07-17T08:10:23.2520093Z 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-07-17T08:10:23.2525950Z 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-07-17T08:10:23.2532045Z 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-07-17T08:10:23.2538101Z 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-07-17T08:10:23.2544050Z 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-07-17T08:10:23.2550181Z 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-07-17T08:10:23.2556035Z 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-07-17T08:10:23.2561974Z 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-07-17T08:10:23.2568688Z 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-07-17T08:10:23.2574445Z 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-07-17T08:10:23.2580185Z 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-07-17T08:10:23.2585842Z 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-07-17T08:10:23.2591972Z 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-07-17T08:10:23.2598044Z 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-07-17T08:10:23.2604188Z 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-07-17T08:10:23.2610267Z 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-07-17T08:10:23.2616233Z 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-07-17T08:10:23.2622329Z 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-07-17T08:10:23.2628199Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fused_sgd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2634455Z 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-07-17T08:10:23.2640483Z 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-07-17T08:10:23.2646588Z 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-07-17T08:10:23.2652939Z 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-07-17T08:10:23.2658983Z 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-07-17T08:10:23.2664772Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_fw_primal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2672420Z 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-07-17T08:10:23.2678276Z 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-07-17T08:10:23.2684500Z 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-07-17T08:10:23.2690204Z 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-07-17T08:10:23.2696233Z 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-07-17T08:10:23.2702159Z 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-07-17T08:10:23.2708117Z 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-07-17T08:10:23.2713655Z 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-07-17T08:10:23.2720014Z 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-07-17T08:10:23.2726338Z 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-07-17T08:10:23.2732196Z 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-07-17T08:10:23.2738557Z 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-07-17T08:10:23.2744704Z 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-07-17T08:10:23.2750646Z 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-07-17T08:10:23.2756681Z 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-07-17T08:10:23.2762692Z 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-07-17T08:10:23.2769102Z 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-07-17T08:10:23.2775609Z 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-07-17T08:10:23.2781588Z 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-07-17T08:10:23.2787674Z 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-07-17T08:10:23.2793524Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_grouped_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.2799488Z 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-07-17T08:10:23.2805504Z 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-07-17T08:10:23.2811284Z 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-07-17T08:10:23.2817513Z 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-07-17T08:10:23.2823981Z 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-07-17T08:10:23.2829787Z 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-07-17T08:10:23.2835501Z 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-07-17T08:10:23.2841869Z 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-07-17T08:10:23.2847958Z 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-07-17T08:10:23.2853715Z 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-07-17T08:10:23.2865615Z 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-07-17T08:10:23.2871587Z 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-07-17T08:10:23.2878329Z 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-07-17T08:10:23.2883936Z 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-07-17T08:10:23.2889740Z 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-07-17T08:10:23.2895843Z 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-07-17T08:10:23.2901614Z 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-07-17T08:10:23.2908267Z 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-07-17T08:10:23.2914359Z 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-07-17T08:10:23.2920161Z 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-07-17T08:10:23.2926090Z 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-07-17T08:10:23.2932101Z 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-07-17T08:10:23.2938592Z 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-07-17T08:10:23.2944520Z 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-07-17T08:10:23.2950781Z 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-07-17T08:10:23.2957011Z 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-07-17T08:10:23.2963094Z 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-07-17T08:10:23.2969038Z 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-07-17T08:10:23.2974719Z 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-07-17T08:10:23.2980828Z 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-07-17T08:10:23.2987221Z 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-07-17T08:10:23.2992805Z 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-07-17T08:10:23.2998786Z 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-07-17T08:10:23.3004715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3009966Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3017200Z 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-07-17T08:10:23.3022261Z 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-07-17T08:10:23.3028073Z 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-07-17T08:10:23.3033890Z 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-07-17T08:10:23.3055012Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3060715Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_indices_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3066542Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_int_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3071999Z 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-07-17T08:10:23.3077850Z 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-07-17T08:10:23.3083680Z 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-07-17T08:10:23.3089284Z 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-07-17T08:10:23.3095210Z 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-07-17T08:10:23.3101384Z 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-07-17T08:10:23.3107196Z 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-07-17T08:10:23.3112630Z 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-07-17T08:10:23.3119000Z 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-07-17T08:10:23.3124314Z 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-07-17T08:10:23.3130336Z 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-07-17T08:10:23.3136106Z 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-07-17T08:10:23.3141840Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_is_zerotensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3147907Z 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-07-17T08:10:23.3153498Z 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-07-17T08:10:23.3159345Z 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-07-17T08:10:23.3165372Z 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-07-17T08:10:23.3171727Z 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-07-17T08:10:23.3177719Z 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-07-17T08:10:23.3183562Z 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-07-17T08:10:23.3189541Z 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-07-17T08:10:23.3195310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lazy_clone.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3201178Z 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-07-17T08:10:23.3207306Z 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-07-17T08:10:23.3212839Z 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-07-17T08:10:23.3219887Z 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-07-17T08:10:23.3225796Z 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-07-17T08:10:23.3235354Z 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-07-17T08:10:23.3240722Z 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-07-17T08:10:23.3246880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_det.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3254462Z 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-07-17T08:10:23.3260315Z 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-07-17T08:10:23.3266149Z 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-07-17T08:10:23.3271856Z 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-07-17T08:10:23.3277628Z 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-07-17T08:10:23.3283695Z 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-07-17T08:10:23.3289722Z 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-07-17T08:10:23.3295870Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigh.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3302152Z 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-07-17T08:10:23.3312269Z 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-07-17T08:10:23.3318112Z 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-07-17T08:10:23.3323939Z 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-07-17T08:10:23.3329886Z 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-07-17T08:10:23.3336407Z 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-07-17T08:10:23.3342402Z 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-07-17T08:10:23.3348191Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_eigvals.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3354107Z 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-07-17T08:10:23.3360168Z 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-07-17T08:10:23.3365992Z 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-07-17T08:10:23.3372266Z 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-07-17T08:10:23.3378758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_slogdet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3385279Z 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-07-17T08:10:23.3392085Z 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-07-17T08:10:23.3398331Z 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-07-17T08:10:23.3404620Z 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-07-17T08:10:23.3410957Z 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-07-17T08:10:23.3416913Z 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-07-17T08:10:23.3422911Z 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-07-17T08:10:23.3428746Z 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-07-17T08:10:23.3435237Z 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-07-17T08:10:23.3440828Z 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-07-17T08:10:23.3446613Z 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-07-17T08:10:23.3456831Z 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-07-17T08:10:23.3463356Z 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-07-17T08:10:23.3473981Z 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-07-17T08:10:23.3479981Z 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-07-17T08:10:23.3486056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_linalg_svd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3492532Z 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-07-17T08:10:23.3498391Z 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-07-17T08:10:23.3504417Z 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-07-17T08:10:23.3510350Z 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-07-17T08:10:23.3516254Z 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-07-17T08:10:23.3522134Z 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-07-17T08:10:23.3528045Z 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-07-17T08:10:23.3534066Z 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-07-17T08:10:23.3539970Z 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-07-17T08:10:23.3545714Z 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-07-17T08:10:23.3552371Z 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-07-17T08:10:23.3558286Z 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-07-17T08:10:23.3564288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3571485Z 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-07-17T08:10:23.3577182Z 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-07-17T08:10:23.3583039Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3589164Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_logcumsumexp_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3594802Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_log_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3600743Z 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-07-17T08:10:23.3607492Z 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-07-17T08:10:23.3613459Z 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-07-17T08:10:23.3619315Z 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-07-17T08:10:23.3626090Z 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-07-17T08:10:23.3632435Z 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-07-17T08:10:23.3639333Z 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-07-17T08:10:23.3646710Z 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-07-17T08:10:23.3652724Z 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-07-17T08:10:23.3658291Z 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-07-17T08:10:23.3664237Z 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-07-17T08:10:23.3670566Z 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-07-17T08:10:23.3676679Z 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-07-17T08:10:23.3682564Z 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-07-17T08:10:23.3688426Z 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-07-17T08:10:23.3694279Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_lstm_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3700214Z 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-07-17T08:10:23.3705915Z 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-07-17T08:10:23.3711850Z 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-07-17T08:10:23.3717638Z 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-07-17T08:10:23.3723577Z 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-07-17T08:10:23.3734619Z 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-07-17T08:10:23.3740388Z 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-07-17T08:10:23.3746135Z 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-07-17T08:10:23.3751898Z 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-07-17T08:10:23.3757645Z 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-07-17T08:10:23.3763612Z 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-07-17T08:10:23.3769150Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_make_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3775245Z 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-07-17T08:10:23.3780738Z 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-07-17T08:10:23.3786975Z 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-07-17T08:10:23.3793004Z 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-07-17T08:10:23.3798883Z 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-07-17T08:10:23.3809260Z 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-07-17T08:10:23.3812659Z 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-07-17T08:10:23.3818227Z 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-07-17T08:10:23.3829155Z 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-07-17T08:10:23.3835582Z 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-07-17T08:10:23.3841760Z 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-07-17T08:10:23.3847914Z 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-07-17T08:10:23.3854468Z 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-07-17T08:10:23.3860769Z 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-07-17T08:10:23.3866586Z 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-07-17T08:10:23.3873998Z 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-07-17T08:10:23.3879326Z 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-07-17T08:10:23.3885599Z 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-07-17T08:10:23.3891410Z 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-07-17T08:10:23.3897255Z 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-07-17T08:10:23.3902883Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_scale.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3909025Z 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-07-17T08:10:23.3914601Z 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-07-17T08:10:23.3920322Z 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-07-17T08:10:23.3925949Z 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-07-17T08:10:23.3931716Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_masked_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.3937532Z 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-07-17T08:10:23.3943680Z 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-07-17T08:10:23.3949631Z 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-07-17T08:10:23.3955433Z 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-07-17T08:10:23.3961191Z 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-07-17T08:10:23.3966982Z 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-07-17T08:10:23.3973247Z 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-07-17T08:10:23.3979119Z 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-07-17T08:10:23.3984802Z 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-07-17T08:10:23.3990457Z 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-07-17T08:10:23.3996124Z 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-07-17T08:10:23.4001976Z 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-07-17T08:10:23.4007940Z 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-07-17T08:10:23.4014101Z 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-07-17T08:10:23.4027623Z 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-07-17T08:10:23.4033518Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_reshape.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.4039317Z 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-07-17T08:10:23.4050492Z 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-07-17T08:10:23.4056186Z 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-07-17T08:10:23.4061856Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mkldnn_transpose.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.4067849Z 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-07-17T08:10:23.4073810Z 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-07-17T08:10:23.4079542Z 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-07-17T08:10:23.4085315Z 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-07-17T08:10:23.4091085Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_mps_convolution.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.4097161Z 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-07-17T08:10:23.4102691Z 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-07-17T08:10:23.4108552Z 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-07-17T08:10:23.4114227Z 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-07-17T08:10:23.4120219Z 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-07-17T08:10:23.4125922Z 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-07-17T08:10:23.4131993Z 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-07-17T08:10:23.4137697Z 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-07-17T08:10:23.4143593Z 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-07-17T08:10:23.4149195Z 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-07-17T08:10:23.4154570Z 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-07-17T08:10:23.4160073Z 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-07-17T08:10:23.4165864Z 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-07-17T08:10:23.4172076Z 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-07-17T08:10:23.4178149Z 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-07-17T08:10:23.4183936Z 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-07-17T08:10:23.4189932Z 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-07-17T08:10:23.4196097Z 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-07-17T08:10:23.4202123Z 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-07-17T08:10:23.4208424Z 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-07-17T08:10:23.4214377Z 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-07-17T08:10:23.4220244Z 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-07-17T08:10:23.4226097Z 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-07-17T08:10:23.4232084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_neg_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.4237954Z 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-07-17T08:10:23.4243748Z 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-07-17T08:10:23.4250482Z 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-07-17T08:10:23.4257104Z 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-07-17T08:10:23.4262899Z 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-07-17T08:10:23.4268432Z 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-07-17T08:10:23.4275891Z 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-07-17T08:10:23.4279884Z 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-07-17T08:10:23.4285587Z 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-07-17T08:10:23.4291449Z 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-07-17T08:10:23.4297459Z 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-07-17T08:10:23.4303938Z 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-07-17T08:10:23.4310527Z 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-07-17T08:10:23.4316327Z 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-07-17T08:10:23.4322139Z 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-07-17T08:10:23.4328153Z 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-07-17T08:10:23.4333752Z 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-07-17T08:10:23.4339995Z 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-07-17T08:10:23.4346178Z 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-07-17T08:10:23.4352137Z 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-07-17T08:10:23.4358102Z 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-07-17T08:10:23.4364204Z 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-07-17T08:10:23.4370169Z 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-07-17T08:10:23.4376483Z 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-07-17T08:10:23.4382914Z 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-07-17T08:10:23.4388845Z 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-07-17T08:10:23.4395054Z 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-07-17T08:10:23.4401163Z 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-07-17T08:10:23.4406734Z 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-07-17T08:10:23.4412842Z 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-07-17T08:10:23.4420194Z 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-07-17T08:10:23.4425962Z 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-07-17T08:10:23.4431694Z 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-07-17T08:10:23.4437691Z 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-07-17T08:10:23.4443245Z 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-07-17T08:10:23.4450415Z 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-07-17T08:10:23.4455073Z 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-07-17T08:10:23.4460729Z 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-07-17T08:10:23.4466423Z 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-07-17T08:10:23.4472198Z 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-07-17T08:10:23.4477833Z 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-07-17T08:10:23.4483685Z 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-07-17T08:10:23.4489479Z 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-07-17T08:10:23.4495036Z 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-07-17T08:10:23.4500952Z 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-07-17T08:10:23.4506794Z 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-07-17T08:10:23.4513064Z 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-07-17T08:10:23.4524966Z 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-07-17T08:10:23.4530705Z 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-07-17T08:10:23.4536974Z 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-07-17T08:10:23.4542792Z 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-07-17T08:10:23.4548266Z 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-07-17T08:10:23.4554142Z 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-07-17T08:10:23.4559798Z 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-07-17T08:10:23.4565534Z 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-07-17T08:10:23.4571198Z 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-07-17T08:10:23.4577327Z 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-07-17T08:10:23.4582978Z 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-07-17T08:10:23.4588830Z 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-07-17T08:10:23.4594880Z 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-07-17T08:10:23.4600630Z 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-07-17T08:10:23.4635470Z 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-07-17T08:10:23.4641838Z 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-07-17T08:10:23.4648577Z 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-07-17T08:10:23.4655022Z 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-07-17T08:10:23.4679122Z 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-07-17T08:10:23.4685496Z 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-07-17T08:10:23.4691783Z 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-07-17T08:10:23.4698013Z 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-07-17T08:10:23.4704133Z 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-07-17T08:10:23.4710437Z 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-07-17T08:10:23.4716279Z 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-07-17T08:10:23.4722550Z 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-07-17T08:10:23.4729628Z 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-07-17T08:10:23.4735886Z 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-07-17T08:10:23.4741449Z 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-07-17T08:10:23.4747176Z 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-07-17T08:10:23.4753033Z 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-07-17T08:10:23.4759037Z 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-07-17T08:10:23.4764863Z 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-07-17T08:10:23.4771089Z 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-07-17T08:10:23.4777467Z 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-07-17T08:10:23.4783240Z 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-07-17T08:10:23.4789239Z 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-07-17T08:10:23.4795526Z 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-07-17T08:10:23.4801633Z 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-07-17T08:10:23.4807581Z 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-07-17T08:10:23.4813564Z 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-07-17T08:10:23.4819337Z 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-07-17T08:10:23.4825190Z 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-07-17T08:10:23.4831524Z 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-07-17T08:10:23.4837786Z 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-07-17T08:10:23.4844257Z 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-07-17T08:10:23.4850638Z 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-07-17T08:10:23.4856731Z 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-07-17T08:10:23.4862612Z 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-07-17T08:10:23.4868287Z 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-07-17T08:10:23.4874006Z 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-07-17T08:10:23.4879930Z 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-07-17T08:10:23.4893077Z 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-07-17T08:10:23.4894362Z 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-07-17T08:10:23.4899263Z 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-07-17T08:10:23.4905189Z 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-07-17T08:10:23.4911229Z 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-07-17T08:10:23.4917303Z 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-07-17T08:10:23.4922193Z 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-07-17T08:10:23.4928395Z 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-07-17T08:10:23.4934424Z 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-07-17T08:10:23.4940112Z 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-07-17T08:10:23.4946170Z 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-07-17T08:10:23.4952077Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnpack_available.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.4957823Z 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-07-17T08:10:23.4963619Z 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-07-17T08:10:23.4969118Z 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-07-17T08:10:23.4975655Z 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-07-17T08:10:23.4981389Z 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-07-17T08:10:23.4987892Z 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-07-17T08:10:23.4993667Z 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-07-17T08:10:23.4999296Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5004634Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5010075Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_nnz_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5015911Z 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-07-17T08:10:23.5021359Z 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-07-17T08:10:23.5027396Z 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-07-17T08:10:23.5033377Z 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-07-17T08:10:23.5039112Z 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-07-17T08:10:23.5082422Z 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-07-17T08:10:23.5088388Z 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-07-17T08:10:23.5094285Z 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-07-17T08:10:23.5099989Z 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-07-17T08:10:23.5106385Z 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-07-17T08:10:23.5112308Z 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-07-17T08:10:23.5118147Z 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-07-17T08:10:23.5123922Z 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-07-17T08:10:23.5129880Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_circular.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5148050Z 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-07-17T08:10:23.5153889Z 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-07-17T08:10:23.5159545Z 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-07-17T08:10:23.5165688Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pad_enum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5172868Z 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-07-17T08:10:23.5178208Z 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-07-17T08:10:23.5183079Z 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-07-17T08:10:23.5188945Z 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-07-17T08:10:23.5196209Z 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-07-17T08:10:23.5202428Z 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-07-17T08:10:23.5208128Z 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-07-17T08:10:23.5214255Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_backward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5220175Z 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-07-17T08:10:23.5225965Z 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-07-17T08:10:23.5231572Z 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-07-17T08:10:23.5237431Z 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-07-17T08:10:23.5243311Z 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-07-17T08:10:23.5249430Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pdist_forward.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5255785Z 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-07-17T08:10:23.5261782Z 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-07-17T08:10:23.5267710Z 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-07-17T08:10:23.5273524Z 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-07-17T08:10:23.5279448Z 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-07-17T08:10:23.5285146Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_pin_memory.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5291387Z 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-07-17T08:10:23.5297293Z 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-07-17T08:10:23.5303025Z 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-07-17T08:10:23.5309049Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_prelu_kernel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5329524Z 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-07-17T08:10:23.5335273Z 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-07-17T08:10:23.5341062Z 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-07-17T08:10:23.5347215Z 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-07-17T08:10:23.5353362Z 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-07-17T08:10:23.5359275Z 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-07-17T08:10:23.5365357Z 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-07-17T08:10:23.5371563Z 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-07-17T08:10:23.5377662Z 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-07-17T08:10:23.5383582Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5389193Z 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-07-17T08:10:23.5395743Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5401442Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_print_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5407528Z 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-07-17T08:10:23.5413943Z 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-07-17T08:10:23.5420673Z 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-07-17T08:10:23.5426585Z 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-07-17T08:10:23.5432504Z 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-07-17T08:10:23.5438593Z 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-07-17T08:10:23.5449715Z 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-07-17T08:10:23.5480958Z 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-07-17T08:10:23.5487021Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_alias.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5492867Z 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-07-17T08:10:23.5498969Z 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-07-17T08:10:23.5504902Z 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-07-17T08:10:23.5510764Z 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-07-17T08:10:23.5516653Z 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-07-17T08:10:23.5522363Z 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-07-17T08:10:23.5528505Z 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-07-17T08:10:23.5534804Z 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-07-17T08:10:23.5540292Z 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-07-17T08:10:23.5546147Z 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-07-17T08:10:23.5551433Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_reshape_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5557375Z 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-07-17T08:10:23.5563220Z 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-07-17T08:10:23.5568722Z 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-07-17T08:10:23.5574574Z 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-07-17T08:10:23.5580636Z 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-07-17T08:10:23.5586575Z 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-07-17T08:10:23.5592136Z 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-07-17T08:10:23.5597862Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_resize_output.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5604287Z 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-07-17T08:10:23.5609939Z 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-07-17T08:10:23.5615725Z 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-07-17T08:10:23.5621343Z 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-07-17T08:10:23.5627057Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_rowwise_prune.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5632904Z 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-07-17T08:10:23.5638623Z 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-07-17T08:10:23.5644251Z 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-07-17T08:10:23.5649927Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_safe_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5656117Z 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-07-17T08:10:23.5661697Z 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-07-17T08:10:23.5667067Z 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-07-17T08:10:23.5672710Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sample_dirichlet.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.5678602Z 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-07-17T08:10:23.5684438Z 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-07-17T08:10:23.5690174Z 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-07-17T08:10:23.5696199Z 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-07-17T08:10:23.5703217Z 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-07-17T08:10:23.5708812Z 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-07-17T08:10:23.5714960Z 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-07-17T08:10:23.5720523Z 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-07-17T08:10:23.5725983Z 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-07-17T08:10:23.5731817Z 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-07-17T08:10:23.5738694Z 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-07-17T08:10:23.5744960Z 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-07-17T08:10:23.5751372Z 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-07-17T08:10:23.5757032Z 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-07-17T08:10:23.5763133Z 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-07-17T08:10:23.5768998Z 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-07-17T08:10:23.5775146Z 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-07-17T08:10:23.5781622Z 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-07-17T08:10:23.5787916Z 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-07-17T08:10:23.5794565Z 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-07-17T08:10:23.5801158Z 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-07-17T08:10:23.5807936Z 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-07-17T08:10:23.5813727Z 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-07-17T08:10:23.5819445Z 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-07-17T08:10:23.5825615Z 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-07-17T08:10:23.5831846Z 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-07-17T08:10:23.5838098Z 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-07-17T08:10:23.5844507Z 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-07-17T08:10:23.5855591Z 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-07-17T08:10:23.5866441Z 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-07-17T08:10:23.5872623Z 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-07-17T08:10:23.5883573Z 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-07-17T08:10:23.5889971Z 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-07-17T08:10:23.5896541Z 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-07-17T08:10:23.5902962Z 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-07-17T08:10:23.5909774Z 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-07-17T08:10:23.5919329Z 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-07-17T08:10:23.5922412Z 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-07-17T08:10:23.5928821Z 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-07-17T08:10:23.5935283Z 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-07-17T08:10:23.5942981Z 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-07-17T08:10:23.5948156Z 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-07-17T08:10:23.5954637Z 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-07-17T08:10:23.5960403Z 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-07-17T08:10:23.5966367Z 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-07-17T08:10:23.5972558Z 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-07-17T08:10:23.5979579Z 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-07-17T08:10:23.5985572Z 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-07-17T08:10:23.5991837Z 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-07-17T08:10:23.5998173Z 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-07-17T08:10:23.6004728Z 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-07-17T08:10:23.6010813Z 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-07-17T08:10:23.6017056Z 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-07-17T08:10:23.6023318Z 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-07-17T08:10:23.6029338Z 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-07-17T08:10:23.6036170Z 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-07-17T08:10:23.6041647Z 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-07-17T08:10:23.6048062Z 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-07-17T08:10:23.6053815Z 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-07-17T08:10:23.6059317Z 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-07-17T08:10:23.6064937Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_scaled_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.6072141Z 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-07-17T08:10:23.6077693Z 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-07-17T08:10:23.6083348Z 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-07-17T08:10:23.6089361Z 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-07-17T08:10:23.6095208Z 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-07-17T08:10:23.6101407Z 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-07-17T08:10:23.6107396Z 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-07-17T08:10:23.6113375Z 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-07-17T08:10:23.6119818Z 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-07-17T08:10:23.6125647Z 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-07-17T08:10:23.6131568Z 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-07-17T08:10:23.6137480Z 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-07-17T08:10:23.6142968Z 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-07-17T08:10:23.6148813Z 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-07-17T08:10:23.6154579Z 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-07-17T08:10:23.6160814Z 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-07-17T08:10:23.6166646Z 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-07-17T08:10:23.6172448Z 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-07-17T08:10:23.6178117Z 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-07-17T08:10:23.6184321Z 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-07-17T08:10:23.6190290Z 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-07-17T08:10:23.6196217Z 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-07-17T08:10:23.6202145Z 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-07-17T08:10:23.6208155Z 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-07-17T08:10:23.6214564Z 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-07-17T08:10:23.6220432Z 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-07-17T08:10:23.6228078Z 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-07-17T08:10:23.6233579Z 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-07-17T08:10:23.6239389Z 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-07-17T08:10:23.6245090Z 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-07-17T08:10:23.6251392Z 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-07-17T08:10:23.6257517Z 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-07-17T08:10:23.6263802Z 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-07-17T08:10:23.6269849Z 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-07-17T08:10:23.6276990Z 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-07-17T08:10:23.6283438Z 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-07-17T08:10:23.6290771Z 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-07-17T08:10:23.6296870Z 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-07-17T08:10:23.6962733Z 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-07-17T08:10:23.6964025Z 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-07-17T08:10:23.6964544Z 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-07-17T08:10:23.6964957Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.6965415Z 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-07-17T08:10:23.6966175Z 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-07-17T08:10:23.6966752Z 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-07-17T08:10:23.6967334Z 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-07-17T08:10:23.6967808Z 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-07-17T08:10:23.6968322Z 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-07-17T08:10:23.6968806Z 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-07-17T08:10:23.6969274Z 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-07-17T08:10:23.6969988Z 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-07-17T08:10:23.6970445Z 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-07-17T08:10:23.6970896Z 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-07-17T08:10:23.6971412Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_meta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.6971918Z 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-07-17T08:10:23.6972345Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.6972764Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_softmax_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.6973181Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_addmm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.6973756Z 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-07-17T08:10:23.6974216Z 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-07-17T08:10:23.6974649Z 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-07-17T08:10:23.6975138Z 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-07-17T08:10:23.6975644Z 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-07-17T08:10:23.6976336Z 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-07-17T08:10:23.6976964Z 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-07-17T08:10:23.6977452Z 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-07-17T08:10:23.6978001Z 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-07-17T08:10:23.6978537Z 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-07-17T08:10:23.6979036Z 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-07-17T08:10:23.6982468Z 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-07-17T08:10:23.7010218Z 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-07-17T08:10:23.7016178Z 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-07-17T08:10:23.7021985Z 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-07-17T08:10:23.7028177Z 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-07-17T08:10:23.7034102Z 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-07-17T08:10:23.7040207Z 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-07-17T08:10:23.7045904Z 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-07-17T08:10:23.7052009Z 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-07-17T08:10:23.7058165Z 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-07-17T08:10:23.7063929Z 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-07-17T08:10:23.7069690Z 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-07-17T08:10:23.7076006Z 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-07-17T08:10:23.7082439Z 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-07-17T08:10:23.7088209Z 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-07-17T08:10:23.7093933Z 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-07-17T08:10:23.7099700Z 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-07-17T08:10:23.7106025Z 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-07-17T08:10:23.7112190Z 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-07-17T08:10:23.7118231Z 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-07-17T08:10:23.7124180Z 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-07-17T08:10:23.7129934Z 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-07-17T08:10:23.7136604Z 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-07-17T08:10:23.7142784Z 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-07-17T08:10:23.7148644Z 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-07-17T08:10:23.7154639Z 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-07-17T08:10:23.7161573Z 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-07-17T08:10:23.7168089Z 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-07-17T08:10:23.7174323Z 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-07-17T08:10:23.7180935Z 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-07-17T08:10:23.7187396Z 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-07-17T08:10:23.7193861Z 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-07-17T08:10:23.7199727Z 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-07-17T08:10:23.7205705Z 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-07-17T08:10:23.7211882Z 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-07-17T08:10:23.7218339Z 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-07-17T08:10:23.7224194Z 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-07-17T08:10:23.7230082Z 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-07-17T08:10:23.7235951Z 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-07-17T08:10:23.7242222Z 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-07-17T08:10:23.7248432Z 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-07-17T08:10:23.7254612Z 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-07-17T08:10:23.7260625Z 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-07-17T08:10:23.7266961Z 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-07-17T08:10:23.7272867Z 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-07-17T08:10:23.7279271Z 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-07-17T08:10:23.7285384Z 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-07-17T08:10:23.7291441Z 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-07-17T08:10:23.7303808Z 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-07-17T08:10:23.7309620Z 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-07-17T08:10:23.7316128Z 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-07-17T08:10:23.7322520Z 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-07-17T08:10:23.7328595Z 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-07-17T08:10:23.7334521Z 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-07-17T08:10:23.7340549Z 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-07-17T08:10:23.7347013Z 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-07-17T08:10:23.7353311Z 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-07-17T08:10:23.7359445Z 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-07-17T08:10:23.7366147Z 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-07-17T08:10:23.7372076Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_mm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7378021Z 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-07-17T08:10:23.7383940Z 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-07-17T08:10:23.7390266Z 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-07-17T08:10:23.7396591Z 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-07-17T08:10:23.7403135Z 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-07-17T08:10:23.7409744Z 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-07-17T08:10:23.7416291Z 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-07-17T08:10:23.7422668Z 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-07-17T08:10:23.7428642Z 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-07-17T08:10:23.7434918Z 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-07-17T08:10:23.7441372Z 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-07-17T08:10:23.7447479Z 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-07-17T08:10:23.7453537Z 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-07-17T08:10:23.7459839Z 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-07-17T08:10:23.7465723Z 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-07-17T08:10:23.7472515Z 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-07-17T08:10:23.7478302Z 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-07-17T08:10:23.7484462Z 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-07-17T08:10:23.7490700Z 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-07-17T08:10:23.7496809Z 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-07-17T08:10:23.7503397Z 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-07-17T08:10:23.7509032Z 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-07-17T08:10:23.7515079Z 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-07-17T08:10:23.7520986Z 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-07-17T08:10:23.7527065Z 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-07-17T08:10:23.7533340Z 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-07-17T08:10:23.7539270Z 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-07-17T08:10:23.7545306Z 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-07-17T08:10:23.7551086Z 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-07-17T08:10:23.7557550Z 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-07-17T08:10:23.7563601Z 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-07-17T08:10:23.7569836Z 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-07-17T08:10:23.7575672Z 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-07-17T08:10:23.7581641Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_softmax.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7587736Z 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-07-17T08:10:23.7594060Z 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-07-17T08:10:23.7599956Z 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-07-17T08:10:23.7606163Z 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-07-17T08:10:23.7612709Z 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-07-17T08:10:23.7619140Z 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-07-17T08:10:23.7626708Z 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-07-17T08:10:23.7632486Z 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-07-17T08:10:23.7638296Z 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-07-17T08:10:23.7644502Z 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-07-17T08:10:23.7650525Z 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-07-17T08:10:23.7656691Z 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-07-17T08:10:23.7663084Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_sparse_sum.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7669074Z 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-07-17T08:10:23.7675251Z 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-07-17T08:10:23.7681300Z 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-07-17T08:10:23.7687590Z 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-07-17T08:10:23.7694198Z 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-07-17T08:10:23.7701260Z 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-07-17T08:10:23.7707176Z 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-07-17T08:10:23.7713410Z 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-07-17T08:10:23.7719249Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7725190Z 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-07-17T08:10:23.7731015Z 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-07-17T08:10:23.7737056Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7743008Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spdiags_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7752215Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7775024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7780863Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_spsolve_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7786777Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7793064Z 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-07-17T08:10:23.7798665Z 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-07-17T08:10:23.7804592Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7810140Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_stack_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7816646Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_standard_gamma.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.7822652Z 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-07-17T08:10:23.7828325Z 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-07-17T08:10:23.7834120Z 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-07-17T08:10:23.7840182Z 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-07-17T08:10:23.7847004Z 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-07-17T08:10:23.7852805Z 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-07-17T08:10:23.7858844Z 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-07-17T08:10:23.7864985Z 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-07-17T08:10:23.7870854Z 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-07-17T08:10:23.7876855Z 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-07-17T08:10:23.7882805Z 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-07-17T08:10:23.7888939Z 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-07-17T08:10:23.7895106Z 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-07-17T08:10:23.7913215Z 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-07-17T08:10:23.7914285Z 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-07-17T08:10:23.7915357Z 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-07-17T08:10:23.7921445Z 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-07-17T08:10:23.7927660Z 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-07-17T08:10:23.7933768Z 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-07-17T08:10:23.7939857Z 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-07-17T08:10:23.7945622Z 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-07-17T08:10:23.7952238Z 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-07-17T08:10:23.7958340Z 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-07-17T08:10:23.7964983Z 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-07-17T08:10:23.7976145Z 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-07-17T08:10:23.7982185Z 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-07-17T08:10:23.7988389Z 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-07-17T08:10:23.7995849Z 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-07-17T08:10:23.8000451Z 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-07-17T08:10:23.8006273Z 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-07-17T08:10:23.8012652Z 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-07-17T08:10:23.8018527Z 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-07-17T08:10:23.8024540Z 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-07-17T08:10:23.8030480Z 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-07-17T08:10:23.8036812Z 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-07-17T08:10:23.8042776Z 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-07-17T08:10:23.8048810Z 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-07-17T08:10:23.8055177Z 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-07-17T08:10:23.8061321Z 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-07-17T08:10:23.8067518Z 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-07-17T08:10:23.8080839Z 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-07-17T08:10:23.8087003Z 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-07-17T08:10:23.8093127Z 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-07-17T08:10:23.8099417Z 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-07-17T08:10:23.8105849Z 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-07-17T08:10:23.8111803Z 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-07-17T08:10:23.8117524Z 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-07-17T08:10:23.8123272Z 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-07-17T08:10:23.8129200Z 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-07-17T08:10:23.8135723Z 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-07-17T08:10:23.8141660Z 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-07-17T08:10:23.8147432Z 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-07-17T08:10:23.8170324Z 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-07-17T08:10:23.8176462Z 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-07-17T08:10:23.8182972Z 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-07-17T08:10:23.8188763Z 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-07-17T08:10:23.8194550Z 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-07-17T08:10:23.8200381Z 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-07-17T08:10:23.8206593Z 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-07-17T08:10:23.8213596Z 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-07-17T08:10:23.8218647Z 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-07-17T08:10:23.8224520Z 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-07-17T08:10:23.8230265Z 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-07-17T08:10:23.8236273Z 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-07-17T08:10:23.8241799Z 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-07-17T08:10:23.8248020Z 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-07-17T08:10:23.8254256Z 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-07-17T08:10:23.8260107Z 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-07-17T08:10:23.8265829Z 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-07-17T08:10:23.8272054Z 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-07-17T08:10:23.8278650Z 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-07-17T08:10:23.8284484Z 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-07-17T08:10:23.8290643Z 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-07-17T08:10:23.8296813Z 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-07-17T08:10:23.8303025Z 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-07-17T08:10:23.8309084Z 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-07-17T08:10:23.8315328Z 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-07-17T08:10:23.8322361Z 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-07-17T08:10:23.8328722Z 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-07-17T08:10:23.8335261Z 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-07-17T08:10:23.8341714Z 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-07-17T08:10:23.8347804Z 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-07-17T08:10:23.8354012Z 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-07-17T08:10:23.8360085Z 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-07-17T08:10:23.8366047Z 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-07-17T08:10:23.8372045Z 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-07-17T08:10:23.8378135Z 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-07-17T08:10:23.8384321Z 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-07-17T08:10:23.8390629Z 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-07-17T08:10:23.8396414Z 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-07-17T08:10:23.8402476Z 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-07-17T08:10:23.8408775Z 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-07-17T08:10:23.8415171Z 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-07-17T08:10:23.8421786Z 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-07-17T08:10:23.8428442Z 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-07-17T08:10:23.8434758Z 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-07-17T08:10:23.8440737Z 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-07-17T08:10:23.8447902Z 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-07-17T08:10:23.8454317Z 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-07-17T08:10:23.8461018Z 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-07-17T08:10:23.8468651Z 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-07-17T08:10:23.8498275Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8503335Z 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-07-17T08:10:23.8509359Z 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-07-17T08:10:23.8515332Z 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-07-17T08:10:23.8520939Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_cpu.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8526257Z 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-07-17T08:10:23.8532274Z 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-07-17T08:10:23.8538111Z 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-07-17T08:10:23.8543752Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_dense.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8549831Z 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-07-17T08:10:23.8555632Z 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-07-17T08:10:23.8561815Z 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-07-17T08:10:23.8567324Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_to_sparse.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8573233Z 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-07-17T08:10:23.8579151Z 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-07-17T08:10:23.8584799Z 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-07-17T08:10:23.8590460Z 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-07-17T08:10:23.8596421Z 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-07-17T08:10:23.8602416Z 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-07-17T08:10:23.8608033Z 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-07-17T08:10:23.8614322Z 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-07-17T08:10:23.8620225Z 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-07-17T08:10:23.8626113Z 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-07-17T08:10:23.8631743Z 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-07-17T08:10:23.8637770Z 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-07-17T08:10:23.8643986Z 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-07-17T08:10:23.8649671Z 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-07-17T08:10:23.8655597Z 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-07-17T08:10:23.8661452Z 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-07-17T08:10:23.8667517Z 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-07-17T08:10:23.8673571Z 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-07-17T08:10:23.8679479Z 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-07-17T08:10:23.8685324Z 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-07-17T08:10:23.8691135Z 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-07-17T08:10:23.8697413Z 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-07-17T08:10:23.8703755Z 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-07-17T08:10:23.8710584Z 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-07-17T08:10:23.8718611Z 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-07-17T08:10:23.8725455Z 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-07-17T08:10:23.8732722Z 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-07-17T08:10:23.8739212Z 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-07-17T08:10:23.8746161Z 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-07-17T08:10:23.8753162Z 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-07-17T08:10:23.8759754Z 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-07-17T08:10:23.8767754Z 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-07-17T08:10:23.8773370Z 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-07-17T08:10:23.8779174Z 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-07-17T08:10:23.8785295Z 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-07-17T08:10:23.8790958Z 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-07-17T08:10:23.8796862Z 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-07-17T08:10:23.8802647Z 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-07-17T08:10:23.8808298Z 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-07-17T08:10:23.8814335Z 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-07-17T08:10:23.8820556Z 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-07-17T08:10:23.8826265Z 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-07-17T08:10:23.8832292Z 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-07-17T08:10:23.8838463Z 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-07-17T08:10:23.8844349Z 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-07-17T08:10:23.8850061Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8856389Z 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-07-17T08:10:23.8862198Z 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-07-17T08:10:23.8867984Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8873714Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_trilinear_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8879834Z 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-07-17T08:10:23.8886109Z 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-07-17T08:10:23.8892278Z 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-07-17T08:10:23.8898575Z 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-07-17T08:10:23.8905744Z 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-07-17T08:10:23.8912174Z 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-07-17T08:10:23.8956808Z 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-07-17T08:10:23.8958116Z 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-07-17T08:10:23.8959344Z 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-07-17T08:10:23.8960487Z 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-07-17T08:10:23.8962908Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8963828Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8964888Z 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-07-17T08:10:23.8966005Z 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-07-17T08:10:23.8968927Z 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-07-17T08:10:23.8974775Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8980734Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique2_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.8985415Z 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-07-17T08:10:23.8992383Z 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-07-17T08:10:23.8997085Z 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-07-17T08:10:23.9002733Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.9008533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unique_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.9069269Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unpack_dual.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.9075235Z 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-07-17T08:10:23.9080848Z 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-07-17T08:10:23.9086608Z 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-07-17T08:10:23.9092235Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_index.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.9098144Z 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-07-17T08:10:23.9103654Z 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-07-17T08:10:23.9109315Z 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-07-17T08:10:23.9114984Z 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-07-17T08:10:23.9120950Z 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-07-17T08:10:23.9127390Z 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-07-17T08:10:23.9132806Z 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-07-17T08:10:23.9138533Z 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-07-17T08:10:23.9144643Z 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-07-17T08:10:23.9150295Z 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-07-17T08:10:23.9156038Z 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-07-17T08:10:23.9162127Z 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-07-17T08:10:23.9168131Z 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-07-17T08:10:23.9173956Z 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-07-17T08:10:23.9179872Z 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-07-17T08:10:23.9185493Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_unsafe_view.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.9191532Z 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-07-17T08:10:23.9197440Z 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-07-17T08:10:23.9203178Z 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-07-17T08:10:23.9215698Z 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-07-17T08:10:23.9217438Z 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-07-17T08:10:23.9224689Z 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-07-17T08:10:23.9230668Z 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-07-17T08:10:23.9236623Z 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-07-17T08:10:23.9242413Z 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-07-17T08:10:23.9248564Z 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-07-17T08:10:23.9254617Z 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-07-17T08:10:23.9260524Z 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-07-17T08:10:23.9286887Z 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-07-17T08:10:23.9292988Z 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-07-17T08:10:23.9299067Z 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-07-17T08:10:23.9304943Z 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-07-17T08:10:23.9310647Z 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-07-17T08:10:23.9316732Z 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-07-17T08:10:23.9362536Z 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-07-17T08:10:23.9363617Z 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-07-17T08:10:23.9364671Z 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-07-17T08:10:23.9365778Z 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-07-17T08:10:23.9368666Z 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-07-17T08:10:23.9370047Z 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-07-17T08:10:23.9371328Z 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-07-17T08:10:23.9372606Z 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-07-17T08:10:23.9375875Z 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-07-17T08:10:23.9382048Z 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-07-17T08:10:23.9388468Z 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-07-17T08:10:23.9394553Z 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-07-17T08:10:23.9400483Z 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-07-17T08:10:23.9406160Z 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-07-17T08:10:23.9414106Z 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-07-17T08:10:23.9418560Z 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-07-17T08:10:23.9424458Z 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-07-17T08:10:23.9430212Z 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-07-17T08:10:23.9435969Z 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-07-17T08:10:23.9441787Z 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-07-17T08:10:23.9449033Z 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-07-17T08:10:23.9455672Z 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-07-17T08:10:23.9461637Z 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-07-17T08:10:23.9468019Z 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-07-17T08:10:23.9473889Z 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-07-17T08:10:23.9479989Z 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-07-17T08:10:23.9486091Z 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-07-17T08:10:23.9492031Z 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-07-17T08:10:23.9498775Z 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-07-17T08:10:23.9505042Z 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-07-17T08:10:23.9511018Z 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-07-17T08:10:23.9516903Z 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-07-17T08:10:23.9522799Z 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-07-17T08:10:23.9528854Z 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-07-17T08:10:23.9534677Z 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-07-17T08:10:23.9540393Z 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-07-17T08:10:23.9546247Z 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-07-17T08:10:23.9552210Z 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-07-17T08:10:23.9558499Z 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-07-17T08:10:23.9564225Z 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-07-17T08:10:23.9570227Z 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-07-17T08:10:23.9576397Z 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-07-17T08:10:23.9582405Z 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-07-17T08:10:23.9588286Z 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-07-17T08:10:23.9594186Z 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-07-17T08:10:23.9600441Z 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-07-17T08:10:23.9606546Z 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-07-17T08:10:23.9612372Z 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-07-17T08:10:23.9618273Z 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-07-17T08:10:23.9624118Z 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-07-17T08:10:23.9630049Z 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-07-17T08:10:23.9636108Z 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-07-17T08:10:23.9642052Z 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-07-17T08:10:23.9647955Z 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-07-17T08:10:23.9654074Z 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-07-17T08:10:23.9660468Z 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-07-17T08:10:23.9666458Z 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-07-17T08:10:23.9673270Z 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-07-17T08:10:23.9679399Z 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-07-17T08:10:23.9685686Z 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-07-17T08:10:23.9691495Z 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-07-17T08:10:23.9697298Z 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-07-17T08:10:23.9703704Z 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-07-17T08:10:23.9709564Z 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-07-17T08:10:23.9715386Z 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-07-17T08:10:23.9721370Z 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-07-17T08:10:23.9727631Z 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-07-17T08:10:23.9735351Z 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-07-17T08:10:23.9741435Z 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-07-17T08:10:23.9747343Z 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-07-17T08:10:23.9753084Z 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-07-17T08:10:23.9758979Z 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-07-17T08:10:23.9764659Z 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-07-17T08:10:23.9770476Z 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-07-17T08:10:23.9776577Z 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-07-17T08:10:23.9782877Z 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-07-17T08:10:23.9788885Z 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-07-17T08:10:23.9794769Z 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-07-17T08:10:23.9800906Z 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-07-17T08:10:23.9807136Z 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-07-17T08:10:23.9813160Z 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-07-17T08:10:23.9819396Z 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-07-17T08:10:23.9825451Z 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-07-17T08:10:23.9831876Z 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-07-17T08:10:23.9839336Z 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-07-17T08:10:23.9845342Z 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-07-17T08:10:23.9851321Z 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-07-17T08:10:23.9857046Z 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-07-17T08:10:23.9863024Z 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-07-17T08:10:23.9869105Z 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-07-17T08:10:23.9875127Z 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-07-17T08:10:23.9881178Z 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-07-17T08:10:23.9888198Z 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-07-17T08:10:23.9894367Z 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-07-17T08:10:23.9900590Z 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-07-17T08:10:23.9906845Z 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-07-17T08:10:23.9944666Z 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-07-17T08:10:23.9945950Z 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-07-17T08:10:23.9947154Z 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-07-17T08:10:23.9948285Z 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-07-17T08:10:23.9950946Z 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-07-17T08:10:23.9952238Z 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-07-17T08:10:23.9953539Z 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-07-17T08:10:23.9959739Z 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-07-17T08:10:23.9965977Z 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-07-17T08:10:23.9972281Z 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-07-17T08:10:23.9978170Z 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-07-17T08:10:23.9984115Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.9989287Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_copy.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:23.9996567Z 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-07-17T08:10:24.0001035Z 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-07-17T08:10:24.0006834Z 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-07-17T08:10:24.0012661Z 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-07-17T08:10:24.0018288Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:24.0023758Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_values_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:24.0029441Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:24.0035077Z 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-07-17T08:10:24.0040561Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_native.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:24.0045885Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_version_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:24.0051841Z 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-07-17T08:10:24.0057757Z 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-07-17T08:10:24.0063438Z 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-07-17T08:10:24.0069196Z 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-07-17T08:10:24.0075018Z 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-07-17T08:10:24.0080731Z 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-07-17T08:10:24.0086650Z 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-07-17T08:10:24.0092459Z 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-07-17T08:10:24.0098383Z 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-07-17T08:10:24.0104298Z 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-07-17T08:10:24.0136645Z 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-07-17T08:10:24.0142463Z 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-07-17T08:10:24.0148589Z 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-07-17T08:10:24.0745120Z 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-07-17T08:10:24.0750800Z 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-07-17T08:10:24.0756586Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ops\_weight_norm.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\ops 2025-07-17T08:10:24.0762872Z 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-07-17T08:10:24.0768858Z 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-07-17T08:10:24.0775274Z 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-07-17T08:10:24.0781546Z 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-07-17T08:10:24.0788190Z 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-07-17T08:10:24.0794530Z 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-07-17T08:10:24.0800483Z 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-07-17T08:10:24.0806550Z 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-07-17T08:10:24.0812427Z 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-07-17T08:10:24.0818811Z 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-07-17T08:10:24.0824741Z 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-07-17T08:10:24.0830682Z 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-07-17T08:10:24.0836810Z 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-07-17T08:10:24.0842942Z 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-07-17T08:10:24.0849364Z 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-07-17T08:10:24.0855586Z 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-07-17T08:10:24.0862012Z 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-07-17T08:10:24.0868052Z 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-07-17T08:10:24.0873758Z 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-07-17T08:10:24.0880946Z 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-07-17T08:10:24.0887099Z 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-07-17T08:10:24.0892730Z 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-07-17T08:10:24.0898472Z 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-07-17T08:10:24.0904499Z 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-07-17T08:10:24.0910462Z 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-07-17T08:10:24.0934331Z 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-07-17T08:10:24.0935499Z 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-07-17T08:10:24.0938310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PadNd.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0943810Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0949389Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Parallel.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0955872Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelFuture.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0961233Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelNative.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0966533Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ParallelOpenMP.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0972114Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PTThreadPool.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0977388Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\PythonTorchFunctionTLS.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.0983333Z creating build\bdist.win-amd64\wheel\torch\include\ATen\quantized 2025-07-17T08:10:24.0986998Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\QTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-07-17T08:10:24.0992309Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\quantized\Quantizer.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\quantized 2025-07-17T08:10:24.0997629Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\record_function.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1003626Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1029238Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1043026Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ROCmFABackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1048410Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SavedTensorHooks.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1058558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1063606Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarOps.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1069052Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1074682Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SDPBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1079858Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SequenceNumber.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1089535Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1095019Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1100488Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseCsrTensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1106241Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\SparseTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1111968Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1116800Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\StorageUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1122088Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1127096Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorAccessor.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1132372Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorGeometry.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1137990Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIndexing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1143841Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIterator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1150177Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorIteratorInternal.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1155552Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1161055Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorNames.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1166492Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOperators.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1172082Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1177427Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorSubclassLikeUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1182907Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TensorUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1188992Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalPythonObjects.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1194512Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\ThreadLocalState.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1206013Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TracerMode.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1211711Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\TypeDefault.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1217024Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1222613Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\Version.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1227803Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\VmapGeneratedPlumbing.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1249508Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1255169Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\WrapDimUtilsMulti.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen 2025-07-17T08:10:24.1261438Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu 2025-07-17T08:10:24.1265487Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\CachingHostAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-17T08:10:24.1271014Z creating build\bdist.win-amd64\wheel\torch\include\ATen\xpu\detail 2025-07-17T08:10:24.1273881Z 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-07-17T08:10:24.1279558Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\PinnedMemoryAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-17T08:10:24.1284807Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUContext.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-17T08:10:24.1294310Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUDevice.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-17T08:10:24.1299960Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUEvent.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-17T08:10:24.1305499Z copying build\lib.win-amd64-cpython-39\torch\include\ATen\xpu\XPUGeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\ATen\xpu 2025-07-17T08:10:24.1317483Z creating build\bdist.win-amd64\wheel\torch\include\c10 2025-07-17T08:10:24.1321073Z creating build\bdist.win-amd64\wheel\torch\include\c10\core 2025-07-17T08:10:24.1324454Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\alignment.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1329888Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Allocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1336077Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\AutogradState.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1341236Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Backend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1351409Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CachingDeviceAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1356904Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CompileTimeFunctionPointer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1362127Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ConstantSymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1368141Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Contiguity.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1373685Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CopyBytes.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1379301Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\CPUAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1384639Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultDtype.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1389893Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DefaultTensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1395247Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1400565Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceArray.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1405949Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1411409Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DeviceType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1416926Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKey.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1423037Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DispatchKeySet.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1429346Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\DynamicCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1435087Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1452208Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GeneratorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1458317Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\GradMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1463951Z creating build\bdist.win-amd64\wheel\torch\include\c10\core\impl 2025-07-17T08:10:24.1466887Z 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-07-17T08:10:24.1472464Z 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-07-17T08:10:24.1477791Z 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-07-17T08:10:24.1483707Z 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-07-17T08:10:24.1493767Z 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-07-17T08:10:24.1499251Z 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-07-17T08:10:24.1504580Z 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-07-17T08:10:24.1509912Z 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-07-17T08:10:24.1515108Z 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-07-17T08:10:24.1520665Z 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-07-17T08:10:24.1526083Z 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-07-17T08:10:24.1531519Z 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-07-17T08:10:24.1537083Z 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-07-17T08:10:24.1542525Z 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-07-17T08:10:24.1547908Z 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-07-17T08:10:24.1553500Z 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-07-17T08:10:24.1559022Z 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-07-17T08:10:24.1564214Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\InferenceMode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1569354Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1574834Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1580840Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\OptionalRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1585895Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\PyHandleCache.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1591229Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QEngine.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1596304Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1601790Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\RefcountedDeleter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1607223Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SafePyObject.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1617871Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Scalar.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1627561Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarType.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1633501Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\ScalarTypeToTypeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1638647Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1643847Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StorageImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1681979Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1688214Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\StreamGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1693904Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymbolicShapeMeta.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1699271Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymBool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1704624Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymFloat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1710255Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymInt.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1715671Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymIntArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1720935Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\SymNodeImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1731254Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1738540Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\TensorOptions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1744334Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\thread_pool.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1749747Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\UndefinedTensorImpl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1755464Z copying build\lib.win-amd64-cpython-39\torch\include\c10\core\WrapDimMinimal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\core 2025-07-17T08:10:24.1761270Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda 2025-07-17T08:10:24.1765589Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAlgorithm.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1770838Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAAllocatorConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1775228Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDACachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1781014Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertion.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1791448Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDADeviceAssertionHost.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1796788Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1802168Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1807686Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGraphsC10Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1813121Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1818515Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1823737Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMathCompat.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1829205Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAMiscFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1834623Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\CUDAStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1840342Z copying build\lib.win-amd64-cpython-39\torch\include\c10\cuda\driver_api.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\cuda 2025-07-17T08:10:24.1845856Z creating build\bdist.win-amd64\wheel\torch\include\c10\cuda\impl 2025-07-17T08:10:24.1848968Z 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-07-17T08:10:24.1854587Z 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-07-17T08:10:24.1860149Z 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-07-17T08:10:24.1865545Z creating build\bdist.win-amd64\wheel\torch\include\c10\macros 2025-07-17T08:10:24.1869138Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-17T08:10:24.1874801Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-17T08:10:24.1878787Z copying build\lib.win-amd64-cpython-39\torch\include\c10\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\macros 2025-07-17T08:10:24.1884138Z creating build\bdist.win-amd64\wheel\torch\include\c10\metal 2025-07-17T08:10:24.1887450Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\atomic.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1893759Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\common.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1898773Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\expm1f.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1904227Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\indexing.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1909811Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\random.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1915082Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\reduction_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1926390Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\special_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1964708Z copying build\lib.win-amd64-cpython-39\torch\include\c10\metal\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\metal 2025-07-17T08:10:24.1970237Z creating build\bdist.win-amd64\wheel\torch\include\c10\mobile 2025-07-17T08:10:24.1973808Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-07-17T08:10:24.1979373Z copying build\lib.win-amd64-cpython-39\torch\include\c10\mobile\CPUProfilingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\mobile 2025-07-17T08:10:24.1985054Z creating build\bdist.win-amd64\wheel\torch\include\c10\test 2025-07-17T08:10:24.1988257Z creating build\bdist.win-amd64\wheel\torch\include\c10\test\util 2025-07-17T08:10:24.1991617Z 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-07-17T08:10:24.1997535Z 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-07-17T08:10:24.2003371Z 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-07-17T08:10:24.2009675Z creating build\bdist.win-amd64\wheel\torch\include\c10\util 2025-07-17T08:10:24.2013205Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AbortHandler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2018459Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\accumulate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2023721Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\AlignOf.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2029291Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ApproximateClock.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2039671Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Array.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2045346Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2050609Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Backtrace.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2055946Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2061212Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16-math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2066630Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\BFloat16.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2071732Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2076871Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2082093Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\bit_cast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2087339Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\C++17.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2092902Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\CallOnce.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2097985Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2103673Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2109090Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\complex_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2114428Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ConstexprCrc.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2120182Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\copysign.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2125772Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DeadlockDetection.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2131142Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Deprecated.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2136499Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DimVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2141902Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\DynamicCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2152235Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Enumerate.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2157931Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\env.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2178259Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\error.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2183267Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Exception.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2189132Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2194563Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ExclusivelyOwnedTensorTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2199857Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FbcodeMaps.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2205172Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Flags.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2210709Z 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-07-17T08:10:24.2217128Z 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-07-17T08:10:24.2222328Z 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-07-17T08:10:24.2232501Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fn.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2238781Z 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-07-17T08:10:24.2243658Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e4m3fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2249114Z 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-07-17T08:10:24.2254823Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2260445Z 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-07-17T08:10:24.2266307Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e5m2fnuz.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2271919Z 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-07-17T08:10:24.2277494Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Float8_e8m0fnu.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2289009Z 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-07-17T08:10:24.2294605Z 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-07-17T08:10:24.2299993Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\FunctionRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2305856Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Gauge.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2311651Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\generic_math.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2317238Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2322530Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Half.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2328259Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\hash.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2333868Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IdWrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2340073Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\int128.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2345582Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\IntrusiveList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2351057Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\intrusive_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2357438Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\irange.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2367018Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Lazy.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2372460Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\LeftRight.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2394572Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\llvmMathExtras.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2400755Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Load.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2405995Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Logging.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2411547Z 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-07-17T08:10:24.2417016Z 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-07-17T08:10:24.2422550Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MathConstants.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2427973Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\MaybeOwned.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2433497Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Metaprogramming.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2439000Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\NetworkFlow.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2454027Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\numa.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2459160Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Optional.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2464422Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\OptionalArrayRef.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2470010Z 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-07-17T08:10:24.2515663Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overflows.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2516116Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\overloaded.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2516549Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ParallelGuard.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2516975Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\python_stub.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2517374Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint32.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2517756Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\qint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2518153Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint2x4.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2518560Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint4x2.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2527608Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\quint8.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2533655Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Registry.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2539425Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\safe_numerics.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2543455Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ScopeExit.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2548631Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Semaphore.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2553972Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\signal_handler.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2559462Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallBuffer.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2566406Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\SmallVector.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2571800Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\sparse_bitset.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2577668Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ssize.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2582976Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\static_tracepoint.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2588647Z 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-07-17T08:10:24.2598760Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strides.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2603836Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\StringUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2609348Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2615081Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\string_view.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2620850Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\strong_type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2626788Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Synchronized.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2632142Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\tempfile.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2637982Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocal.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2643534Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\ThreadLocalDebugInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2648862Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\thread_name.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2654277Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Type.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2659347Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeCast.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2665273Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2671023Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeIndex.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2676306Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeList.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2682023Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeSafeSignMath.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2687450Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\TypeTraits.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2692884Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unicode.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2697858Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\UniqueVoidPtr.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2703204Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\Unroll.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2708394Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounter.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2713826Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\WaitCounterDynamicBackend.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2719416Z copying build\lib.win-amd64-cpython-39\torch\include\c10\util\win32-headers.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\util 2025-07-17T08:10:24.2738886Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu 2025-07-17T08:10:24.2749387Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\impl 2025-07-17T08:10:24.2751809Z 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-07-17T08:10:24.2757367Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test 2025-07-17T08:10:24.2761002Z creating build\bdist.win-amd64\wheel\torch\include\c10\xpu\test\impl 2025-07-17T08:10:24.2763971Z 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-07-17T08:10:24.2769453Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUCachingAllocator.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-17T08:10:24.2774921Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUDeviceProp.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-17T08:10:24.2780326Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUException.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-17T08:10:24.2790191Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUFunctions.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-17T08:10:24.2795902Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUMacros.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-17T08:10:24.2801559Z copying build\lib.win-amd64-cpython-39\torch\include\c10\xpu\XPUStream.h -> build\bdist.win-amd64\wheel\.\torch\include\c10\xpu 2025-07-17T08:10:24.2807124Z creating build\bdist.win-amd64\wheel\torch\include\caffe2 2025-07-17T08:10:24.2810032Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\core 2025-07-17T08:10:24.2813499Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-17T08:10:24.2818867Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\macros.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-17T08:10:24.2824547Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\core\timer.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\core 2025-07-17T08:10:24.2830140Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\perfkernels 2025-07-17T08:10:24.2832730Z 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-07-17T08:10:24.2838201Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\perfkernels\common.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\perfkernels 2025-07-17T08:10:24.2843722Z 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-07-17T08:10:24.2849408Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\serialize 2025-07-17T08:10:24.2853449Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\crc_alt.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-17T08:10:24.2859268Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\file_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-17T08:10:24.2865207Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\inline_container.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-17T08:10:24.2870771Z 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-07-17T08:10:24.2881421Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\istream_adapter.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-17T08:10:24.2886821Z 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-07-17T08:10:24.2892167Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\serialize\versions.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\serialize 2025-07-17T08:10:24.2897526Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils 2025-07-17T08:10:24.2900874Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\fixed_divisor.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-17T08:10:24.2906596Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\proto_wrap.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-17T08:10:24.2911864Z copying build\lib.win-amd64-cpython-39\torch\include\caffe2\utils\string_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\caffe2\utils 2025-07-17T08:10:24.2917350Z creating build\bdist.win-amd64\wheel\torch\include\caffe2\utils\threadpool 2025-07-17T08:10:24.2926645Z 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-07-17T08:10:24.2932128Z 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-07-17T08:10:24.2937496Z 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-07-17T08:10:24.2949269Z 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-07-17T08:10:24.2954835Z 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-07-17T08:10:24.2960096Z 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-07-17T08:10:24.2965886Z copying build\lib.win-amd64-cpython-39\torch\include\cpuinfo.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.2978050Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.2981922Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.2987080Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.2992558Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.2997802Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3002908Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3008196Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3013933Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3019179Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_sycl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3024276Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3029692Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3036051Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_threadpool_iface.hpp -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3040459Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3045768Z copying build\lib.win-amd64-cpython-39\torch\include\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3051164Z copying build\lib.win-amd64-cpython-39\torch\include\experiments-config.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3056991Z creating build\bdist.win-amd64\wheel\torch\include\fbgemm 2025-07-17T08:10:24.3060213Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\ConvUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3065469Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Fbgemm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3071265Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmBuild.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3076683Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmConvert.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3089383Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmEmbedding.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3095444Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP16.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3100586Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFP32.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3105863Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmFPCommon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3111217Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI64.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3116417Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DepthwiseAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3121787Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8DirectconvAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3127356Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmI8Spmdm.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3132831Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmPackMatrixB.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3138146Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FbgemmSparse.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3143664Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\FloatConversion.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3149306Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\OutputProcessing-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3154756Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\PackingTraits-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3160552Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3166027Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3176258Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsAvx512.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3181613Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\QuantUtilsNeon.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3186831Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\SimdUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3192780Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3198571Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\spmmUtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3203396Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3207864Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\Utils.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3213842Z copying build\lib.win-amd64-cpython-39\torch\include\fbgemm\UtilsAvx2.h -> build\bdist.win-amd64\wheel\.\torch\include\fbgemm 2025-07-17T08:10:24.3219775Z creating build\bdist.win-amd64\wheel\torch\include\fmt 2025-07-17T08:10:24.3223066Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\args.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3228522Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\base.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3235006Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3241357Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\color.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3247593Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\compile.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3253358Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\core.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3258860Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3269848Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\format.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3276683Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\os.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3282147Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ostream.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3287375Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\printf.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3293339Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\ranges.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3299126Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\std.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3304777Z copying build\lib.win-amd64-cpython-39\torch\include\fmt\xchar.h -> build\bdist.win-amd64\wheel\.\torch\include\fmt 2025-07-17T08:10:24.3310435Z creating build\bdist.win-amd64\wheel\torch\include\fp16 2025-07-17T08:10:24.3314050Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\bitcasts.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-17T08:10:24.3319711Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-17T08:10:24.3325424Z copying build\lib.win-amd64-cpython-39\torch\include\fp16\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include\fp16 2025-07-17T08:10:24.3329671Z copying build\lib.win-amd64-cpython-39\torch\include\fp16.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3334951Z copying build\lib.win-amd64-cpython-39\torch\include\fxdiv.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.3366849Z creating build\bdist.win-amd64\wheel\torch\include\google 2025-07-17T08:10:24.3371156Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf 2025-07-17T08:10:24.3373704Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3378907Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\any.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3384347Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\api.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3390453Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3396948Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arenastring.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3406770Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\arena_impl.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3412762Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler 2025-07-17T08:10:24.3416001Z 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-07-17T08:10:24.3421780Z 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-07-17T08:10:24.3428272Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\cpp 2025-07-17T08:10:24.3431099Z 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-07-17T08:10:24.3436537Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\csharp 2025-07-17T08:10:24.3440897Z 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-07-17T08:10:24.3453189Z 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-07-17T08:10:24.3454431Z 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-07-17T08:10:24.3461459Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\java 2025-07-17T08:10:24.3465299Z 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-07-17T08:10:24.3482634Z 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-07-17T08:10:24.3483799Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\js 2025-07-17T08:10:24.3484719Z 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-07-17T08:10:24.3485982Z 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-07-17T08:10:24.3490497Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\objectivec 2025-07-17T08:10:24.3494002Z 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-07-17T08:10:24.3499433Z 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-07-17T08:10:24.3505104Z 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-07-17T08:10:24.3510910Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\php 2025-07-17T08:10:24.3514139Z 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-07-17T08:10:24.3519330Z 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-07-17T08:10:24.3524587Z 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-07-17T08:10:24.3531101Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\python 2025-07-17T08:10:24.3535908Z 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-07-17T08:10:24.3540125Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\compiler\ruby 2025-07-17T08:10:24.3543457Z 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-07-17T08:10:24.3548793Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3555591Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3565734Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\descriptor_database.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3571840Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\duration.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3584084Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\dynamic_message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3585177Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\empty.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3589733Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\extension_set.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3596287Z 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-07-17T08:10:24.3601692Z 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-07-17T08:10:24.3607223Z 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-07-17T08:10:24.3612905Z 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-07-17T08:10:24.3618533Z 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-07-17T08:10:24.3624042Z 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-07-17T08:10:24.3634958Z 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-07-17T08:10:24.3640548Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\has_bits.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3645870Z 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-07-17T08:10:24.3651610Z 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-07-17T08:10:24.3656879Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\io 2025-07-17T08:10:24.3660417Z 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-07-17T08:10:24.3666880Z 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-07-17T08:10:24.3672087Z 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-07-17T08:10:24.3677184Z 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-07-17T08:10:24.3682374Z 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-07-17T08:10:24.3692271Z 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-07-17T08:10:24.3699742Z 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-07-17T08:10:24.3705274Z 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-07-17T08:10:24.3710807Z 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-07-17T08:10:24.3716860Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3722816Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_entry.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3728286Z 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-07-17T08:10:24.3734319Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\map_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3739472Z 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-07-17T08:10:24.3744861Z 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-07-17T08:10:24.3754593Z 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-07-17T08:10:24.3760454Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3766904Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\message_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3773353Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3778701Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\metadata_lite.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3784264Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\parse_context.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3790098Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\port.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3795425Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3801495Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\reflection_ops.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3807434Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\repeated_field.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3814155Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\service.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3819403Z 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-07-17T08:10:24.3829549Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\struct.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3836063Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\stubs 2025-07-17T08:10:24.3839334Z 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-07-17T08:10:24.3844809Z 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-07-17T08:10:24.3850396Z 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-07-17T08:10:24.3855694Z 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-07-17T08:10:24.3860871Z 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-07-17T08:10:24.3866082Z 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-07-17T08:10:24.3875639Z 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-07-17T08:10:24.3880841Z 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-07-17T08:10:24.3886112Z 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-07-17T08:10:24.3892231Z 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-07-17T08:10:24.3897472Z 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-07-17T08:10:24.3902731Z 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-07-17T08:10:24.3908124Z 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-07-17T08:10:24.3934862Z 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-07-17T08:10:24.3938968Z 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-07-17T08:10:24.3948594Z 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-07-17T08:10:24.3951005Z 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-07-17T08:10:24.3956914Z 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-07-17T08:10:24.3962479Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\text_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3968470Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\timestamp.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3974042Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\type.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.3980625Z 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-07-17T08:10:24.3986249Z creating build\bdist.win-amd64\wheel\torch\include\google\protobuf\util 2025-07-17T08:10:24.3989578Z 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-07-17T08:10:24.3994851Z 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-07-17T08:10:24.4000326Z 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-07-17T08:10:24.4009608Z 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-07-17T08:10:24.4015153Z 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-07-17T08:10:24.4021144Z 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-07-17T08:10:24.4026571Z 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-07-17T08:10:24.4032310Z 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-07-17T08:10:24.4037489Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wire_format.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.4043191Z 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-07-17T08:10:24.4049660Z copying build\lib.win-amd64-cpython-39\torch\include\google\protobuf\wrappers.pb.h -> build\bdist.win-amd64\wheel\.\torch\include\google\protobuf 2025-07-17T08:10:24.4060324Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify-zca.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4065554Z copying build\lib.win-amd64-cpython-39\torch\include\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4073425Z copying build\lib.win-amd64-cpython-39\torch\include\jitprofiling.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4079197Z creating build\bdist.win-amd64\wheel\torch\include\kineto 2025-07-17T08:10:24.4082431Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\AbstractConfig.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4087965Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityProfilerInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4093533Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityTraceInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4102600Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ActivityType.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4108029Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ClientInterface.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4113249Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\Config.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4118740Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\GenericTraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4124251Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\IActivityProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4129484Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ILoggerObserver.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4134884Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ITraceActivity.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4140344Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\libkineto.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4145362Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\LoggingAPI.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4150330Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\output_base.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4155648Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\ThreadUtil.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4160904Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\time_since_epoch.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4165958Z copying build\lib.win-amd64-cpython-39\torch\include\kineto\TraceSpan.h -> build\bdist.win-amd64\wheel\.\torch\include\kineto 2025-07-17T08:10:24.4171691Z creating build\bdist.win-amd64\wheel\torch\include\legacy 2025-07-17T08:10:24.4174892Z copying build\lib.win-amd64-cpython-39\torch\include\legacy\ittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include\legacy 2025-07-17T08:10:24.4180854Z copying build\lib.win-amd64-cpython-39\torch\include\libittnotify.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4185974Z copying build\lib.win-amd64-cpython-39\torch\include\libshm.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4191346Z creating build\bdist.win-amd64\wheel\torch\include\mimalloc-2.2 2025-07-17T08:10:24.4194701Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-new-delete.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-17T08:10:24.4199992Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-override.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-17T08:10:24.4205178Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc-stats.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-17T08:10:24.4215338Z copying build\lib.win-amd64-cpython-39\torch\include\mimalloc-2.2\mimalloc.h -> build\bdist.win-amd64\wheel\.\torch\include\mimalloc-2.2 2025-07-17T08:10:24.4221270Z creating build\bdist.win-amd64\wheel\torch\include\oneapi 2025-07-17T08:10:24.4224717Z creating build\bdist.win-amd64\wheel\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4227911Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4235264Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4246083Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4251659Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_common.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4257321Z 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-07-17T08:10:24.4268110Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_config.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4273553Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_debug.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4279259Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4290822Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_graph.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4297008Z 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-07-17T08:10:24.4302742Z 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-07-17T08:10:24.4308219Z 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-07-17T08:10:24.4313767Z 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-07-17T08:10:24.4319530Z 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-07-17T08:10:24.4325254Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4330975Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ocl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4336755Z 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-07-17T08:10:24.4342454Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4348210Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_sycl.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4353980Z 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-07-17T08:10:24.4359731Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4368678Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_threadpool.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4374452Z 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-07-17T08:10:24.4380097Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_types.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4386890Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4392552Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_ukernel.hpp -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4399193Z 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-07-17T08:10:24.4404290Z copying build\lib.win-amd64-cpython-39\torch\include\oneapi\dnnl\dnnl_version.h -> build\bdist.win-amd64\wheel\.\torch\include\oneapi\dnnl 2025-07-17T08:10:24.4410009Z 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-07-17T08:10:24.4416873Z copying build\lib.win-amd64-cpython-39\torch\include\psimd.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4422712Z copying build\lib.win-amd64-cpython-39\torch\include\pthreadpool.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4428814Z creating build\bdist.win-amd64\wheel\torch\include\pybind11 2025-07-17T08:10:24.4432025Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\attr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4437861Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\buffer_info.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4443813Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\cast.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4450267Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\chrono.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4455736Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4462313Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\complex.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4470248Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\detail 2025-07-17T08:10:24.4474424Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\class.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4480376Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4485110Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\cpp_conduit.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4490597Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\descr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4495825Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\exception_translation.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4505672Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\init.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4511471Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\internals.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4517201Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\detail\typeid.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\detail 2025-07-17T08:10:24.4522433Z 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-07-17T08:10:24.4528711Z 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-07-17T08:10:24.4534187Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\eigen 2025-07-17T08:10:24.4537427Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\common.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-17T08:10:24.4542565Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\matrix.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-17T08:10:24.4548265Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\eigen 2025-07-17T08:10:24.4554271Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eigen.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4559595Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\embed.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4565122Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\eval.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4569951Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\functional.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4575302Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4580836Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\gil_safe_call_once.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4586026Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\iostream.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4591166Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\numpy.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4597652Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\operators.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4603115Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\options.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4608371Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pybind11.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4615386Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\pytypes.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4622303Z creating build\bdist.win-amd64\wheel\torch\include\pybind11\stl 2025-07-17T08:10:24.4626490Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl\filesystem.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11\stl 2025-07-17T08:10:24.4631920Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4637612Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\stl_bind.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4643506Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\type_caster_pyobject_ptr.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4649302Z copying build\lib.win-amd64-cpython-39\torch\include\pybind11\typing.h -> build\bdist.win-amd64\wheel\.\torch\include\pybind11 2025-07-17T08:10:24.4654854Z copying build\lib.win-amd64-cpython-39\torch\include\sleef.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:24.4662455Z creating build\bdist.win-amd64\wheel\torch\include\THC 2025-07-17T08:10:24.4670916Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCAtomics.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-07-17T08:10:24.4676144Z copying build\lib.win-amd64-cpython-39\torch\include\THC\THCDeviceUtils.cuh -> build\bdist.win-amd64\wheel\.\torch\include\THC 2025-07-17T08:10:24.4681428Z creating build\bdist.win-amd64\wheel\torch\include\torch 2025-07-17T08:10:24.4685166Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc 2025-07-17T08:10:24.4689287Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api 2025-07-17T08:10:24.4691728Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include 2025-07-17T08:10:24.4695343Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch 2025-07-17T08:10:24.4698412Z 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-07-17T08:10:24.4703470Z 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-07-17T08:10:24.4709039Z 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-07-17T08:10:24.4714109Z 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-07-17T08:10:24.4719716Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data 2025-07-17T08:10:24.4724112Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\dataloader 2025-07-17T08:10:24.4726617Z 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-07-17T08:10:24.4732166Z 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-07-17T08:10:24.4737451Z 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-07-17T08:10:24.4742776Z 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-07-17T08:10:24.4748200Z 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-07-17T08:10:24.4753759Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\datasets 2025-07-17T08:10:24.4762061Z 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-07-17T08:10:24.4767453Z 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-07-17T08:10:24.4773555Z 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-07-17T08:10:24.4779024Z 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-07-17T08:10:24.4784855Z 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-07-17T08:10:24.4790592Z 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-07-17T08:10:24.4813272Z 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-07-17T08:10:24.4822558Z 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-07-17T08:10:24.4827715Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\detail 2025-07-17T08:10:24.4831137Z 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-07-17T08:10:24.4836680Z 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-07-17T08:10:24.4842690Z 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-07-17T08:10:24.4847643Z 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-07-17T08:10:24.4853088Z 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-07-17T08:10:24.4858650Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\samplers 2025-07-17T08:10:24.4862521Z 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-07-17T08:10:24.4868360Z 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-07-17T08:10:24.4873857Z 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-07-17T08:10:24.4879257Z 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-07-17T08:10:24.4888165Z 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-07-17T08:10:24.4897373Z 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-07-17T08:10:24.4903003Z 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-07-17T08:10:24.4908623Z 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-07-17T08:10:24.4913620Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\data\transforms 2025-07-17T08:10:24.4916957Z 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-07-17T08:10:24.4922361Z 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-07-17T08:10:24.4927671Z 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-07-17T08:10:24.4933023Z 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-07-17T08:10:24.4938271Z 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-07-17T08:10:24.4943459Z 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-07-17T08:10:24.4949273Z 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-07-17T08:10:24.4954844Z 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-07-17T08:10:24.4961435Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\detail 2025-07-17T08:10:24.4965172Z 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-07-17T08:10:24.4971246Z 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-07-17T08:10:24.4976646Z 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-07-17T08:10:24.4987222Z 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-07-17T08:10:24.4992650Z 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-07-17T08:10:24.4998063Z 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-07-17T08:10:24.5003378Z 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-07-17T08:10:24.5008730Z 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-07-17T08:10:24.5014267Z 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-07-17T08:10:24.5019914Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn 2025-07-17T08:10:24.5023220Z 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-07-17T08:10:24.5029095Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\functional 2025-07-17T08:10:24.5032548Z 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-07-17T08:10:24.5038595Z 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-07-17T08:10:24.5043827Z 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-07-17T08:10:24.5049122Z 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-07-17T08:10:24.5058431Z 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-07-17T08:10:24.5063644Z 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-07-17T08:10:24.5069249Z 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-07-17T08:10:24.5074419Z 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-07-17T08:10:24.5079619Z 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-07-17T08:10:24.5084778Z 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-07-17T08:10:24.5090909Z 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-07-17T08:10:24.5096334Z 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-07-17T08:10:24.5101587Z 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-07-17T08:10:24.5106792Z 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-07-17T08:10:24.5112740Z 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-07-17T08:10:24.5118128Z 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-07-17T08:10:24.5123366Z 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-07-17T08:10:24.5128515Z 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-07-17T08:10:24.5138205Z 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-07-17T08:10:24.5144165Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules 2025-07-17T08:10:24.5147810Z 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-07-17T08:10:24.5153657Z 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-07-17T08:10:24.5158811Z 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-07-17T08:10:24.5164104Z 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-07-17T08:10:24.5169683Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\modules\container 2025-07-17T08:10:24.5178174Z 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-07-17T08:10:24.5183268Z 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-07-17T08:10:24.5188685Z 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-07-17T08:10:24.5194042Z 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-07-17T08:10:24.5203230Z 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-07-17T08:10:24.5208809Z 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-07-17T08:10:24.5214254Z 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-07-17T08:10:24.5219537Z 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-07-17T08:10:24.5224907Z 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-07-17T08:10:24.5230031Z 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-07-17T08:10:24.5235288Z 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-07-17T08:10:24.5240956Z 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-07-17T08:10:24.5246275Z 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-07-17T08:10:24.5251696Z 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-07-17T08:10:24.5262497Z 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-07-17T08:10:24.5268024Z 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-07-17T08:10:24.5273390Z 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-07-17T08:10:24.5278823Z 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-07-17T08:10:24.5284822Z 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-07-17T08:10:24.5290105Z 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-07-17T08:10:24.5295621Z 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-07-17T08:10:24.5301290Z 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-07-17T08:10:24.5306944Z 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-07-17T08:10:24.5312359Z 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-07-17T08:10:24.5318359Z 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-07-17T08:10:24.5324271Z 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-07-17T08:10:24.5330088Z 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-07-17T08:10:24.5335777Z 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-07-17T08:10:24.5341610Z 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-07-17T08:10:24.5347368Z 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-07-17T08:10:24.5353407Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\options 2025-07-17T08:10:24.5357045Z 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-07-17T08:10:24.5363024Z 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-07-17T08:10:24.5368394Z 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-07-17T08:10:24.5374041Z 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-07-17T08:10:24.5379629Z 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-07-17T08:10:24.5390524Z 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-07-17T08:10:24.5396504Z 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-07-17T08:10:24.5402070Z 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-07-17T08:10:24.5407376Z 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-07-17T08:10:24.5411868Z 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-07-17T08:10:24.5417238Z 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-07-17T08:10:24.5441718Z 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-07-17T08:10:24.5447275Z 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-07-17T08:10:24.5453264Z 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-07-17T08:10:24.5459441Z 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-07-17T08:10:24.5465693Z 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-07-17T08:10:24.5471594Z 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-07-17T08:10:24.5477546Z 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-07-17T08:10:24.5483051Z 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-07-17T08:10:24.5488678Z 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-07-17T08:10:24.5494272Z 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-07-17T08:10:24.5499844Z 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-07-17T08:10:24.5505111Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\parallel 2025-07-17T08:10:24.5508814Z 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-07-17T08:10:24.5514420Z 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-07-17T08:10:24.5519883Z 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-07-17T08:10:24.5525445Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\nn\utils 2025-07-17T08:10:24.5528846Z 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-07-17T08:10:24.5534436Z 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-07-17T08:10:24.5539786Z 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-07-17T08:10:24.5545139Z 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-07-17T08:10:24.5550357Z 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-07-17T08:10:24.5555708Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim 2025-07-17T08:10:24.5559141Z 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-07-17T08:10:24.5564382Z 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-07-17T08:10:24.5570161Z 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-07-17T08:10:24.5575436Z 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-07-17T08:10:24.5580567Z 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-07-17T08:10:24.5585897Z 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-07-17T08:10:24.5596804Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\optim\schedulers 2025-07-17T08:10:24.5600236Z 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-07-17T08:10:24.5605901Z 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-07-17T08:10:24.5619921Z 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-07-17T08:10:24.5629643Z 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-07-17T08:10:24.5634867Z 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-07-17T08:10:24.5640557Z 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-07-17T08:10:24.5646104Z 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-07-17T08:10:24.5652631Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\python 2025-07-17T08:10:24.5655914Z 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-07-17T08:10:24.5661119Z 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-07-17T08:10:24.5666694Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\api\include\torch\serialize 2025-07-17T08:10:24.5670303Z 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-07-17T08:10:24.5675625Z 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-07-17T08:10:24.5681053Z 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-07-17T08:10:24.5686257Z 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-07-17T08:10:24.5696152Z 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-07-17T08:10:24.5702200Z 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-07-17T08:10:24.5707357Z 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-07-17T08:10:24.5713412Z 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-07-17T08:10:24.5718558Z 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-07-17T08:10:24.5724030Z 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-07-17T08:10:24.5729427Z 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-07-17T08:10:24.5734706Z 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-07-17T08:10:24.5741368Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd 2025-07-17T08:10:24.5744959Z 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-07-17T08:10:24.5750255Z 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-07-17T08:10:24.5755844Z 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-07-17T08:10:24.5761409Z 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-07-17T08:10:24.5770889Z 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-07-17T08:10:24.5776799Z 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-07-17T08:10:24.5782209Z 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-07-17T08:10:24.5787397Z 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-07-17T08:10:24.5792778Z 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-07-17T08:10:24.5799173Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\functions 2025-07-17T08:10:24.5802792Z 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-07-17T08:10:24.5808263Z 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-07-17T08:10:24.5814073Z 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-07-17T08:10:24.5819448Z 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-07-17T08:10:24.5829637Z 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-07-17T08:10:24.5834901Z 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-07-17T08:10:24.5840181Z 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-07-17T08:10:24.5846474Z 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-07-17T08:10:24.5852481Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\generated 2025-07-17T08:10:24.5855662Z 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-07-17T08:10:24.5866559Z 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-07-17T08:10:24.5871922Z 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-07-17T08:10:24.5882140Z 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-07-17T08:10:24.5887690Z 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-07-17T08:10:24.5894497Z 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-07-17T08:10:24.5900612Z 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-07-17T08:10:24.5906081Z 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-07-17T08:10:24.5911676Z 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-07-17T08:10:24.5916998Z 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-07-17T08:10:24.5922881Z 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-07-17T08:10:24.5928655Z 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-07-17T08:10:24.5934435Z 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-07-17T08:10:24.5939600Z 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-07-17T08:10:24.5945238Z 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-07-17T08:10:24.5956405Z 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-07-17T08:10:24.5962229Z 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-07-17T08:10:24.5968351Z 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-07-17T08:10:24.5974234Z 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-07-17T08:10:24.5980898Z 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-07-17T08:10:24.5986716Z 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-07-17T08:10:24.5992325Z 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-07-17T08:10:24.5997749Z 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-07-17T08:10:24.6003441Z 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-07-17T08:10:24.6014659Z 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-07-17T08:10:24.6029894Z 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-07-17T08:10:24.6035230Z 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-07-17T08:10:24.6040909Z 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-07-17T08:10:24.6046612Z 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-07-17T08:10:24.6052314Z 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-07-17T08:10:24.6057592Z 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-07-17T08:10:24.6063120Z 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-07-17T08:10:24.6068750Z 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-07-17T08:10:24.6078490Z 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-07-17T08:10:24.6083862Z 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-07-17T08:10:24.6089634Z 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-07-17T08:10:24.6095515Z 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-07-17T08:10:24.6100546Z 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-07-17T08:10:24.6106280Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\autograd\utils 2025-07-17T08:10:24.6109690Z 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-07-17T08:10:24.6114890Z 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-07-17T08:10:24.6120130Z 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-07-17T08:10:24.6125673Z 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-07-17T08:10:24.6136131Z 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-07-17T08:10:24.6141116Z 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-07-17T08:10:24.6146853Z 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-07-17T08:10:24.6152887Z 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-07-17T08:10:24.6158385Z 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-07-17T08:10:24.6163800Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\copy_utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.6169591Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cpu 2025-07-17T08:10:24.6172905Z 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-07-17T08:10:24.6178189Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\cuda 2025-07-17T08:10:24.6181444Z 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-07-17T08:10:24.6186828Z 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-07-17T08:10:24.6192014Z 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-07-17T08:10:24.6197158Z 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-07-17T08:10:24.6202417Z 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-07-17T08:10:24.6211416Z 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-07-17T08:10:24.6217062Z 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-07-17T08:10:24.6222263Z 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-07-17T08:10:24.6227701Z 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-07-17T08:10:24.6232942Z 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-07-17T08:10:24.6238196Z 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-07-17T08:10:24.6243296Z 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-07-17T08:10:24.6248445Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\cuda\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\cuda 2025-07-17T08:10:24.6253714Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\CudaIPCTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.6263538Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DataLoader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.6269039Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Device.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.6274076Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DeviceAccelerator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.6279625Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed 2025-07-17T08:10:24.6283032Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd 2025-07-17T08:10:24.6286499Z 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-07-17T08:10:24.6292534Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\context 2025-07-17T08:10:24.6295963Z 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-07-17T08:10:24.6301748Z 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-07-17T08:10:24.6307315Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\engine 2025-07-17T08:10:24.6310769Z 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-07-17T08:10:24.6317307Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\functions 2025-07-17T08:10:24.6321052Z 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-07-17T08:10:24.6326673Z 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-07-17T08:10:24.6332128Z 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-07-17T08:10:24.6342545Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\autograd\rpc_messages 2025-07-17T08:10:24.6346090Z 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-07-17T08:10:24.6351955Z 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-07-17T08:10:24.6357746Z 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-07-17T08:10:24.6368256Z 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-07-17T08:10:24.6373958Z 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-07-17T08:10:24.6379699Z 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-07-17T08:10:24.6385482Z 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-07-17T08:10:24.6391193Z 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-07-17T08:10:24.6396901Z 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-07-17T08:10:24.6402661Z 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-07-17T08:10:24.6408126Z 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-07-17T08:10:24.6413960Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:10:24.6417051Z 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-07-17T08:10:24.6422356Z 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-07-17T08:10:24.6427767Z 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-07-17T08:10:24.6433594Z 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-07-17T08:10:24.6439295Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_collectives 2025-07-17T08:10:24.6443243Z 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-07-17T08:10:24.6464191Z 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-07-17T08:10:24.6464482Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\control_plane 2025-07-17T08:10:24.6465215Z 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-07-17T08:10:24.6470200Z 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-07-17T08:10:24.6475807Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-17T08:10:24.6478729Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\cuda\StreamBlock.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\cuda 2025-07-17T08:10:24.6484061Z 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-07-17T08:10:24.6489130Z 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-07-17T08:10:24.6494578Z 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-07-17T08:10:24.6500053Z 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-07-17T08:10:24.6505276Z 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-07-17T08:10:24.6510698Z 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-07-17T08:10:24.6516439Z 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-07-17T08:10:24.6521798Z 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-07-17T08:10:24.6527562Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\FlightRecorderDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:10:24.6534011Z 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-07-17T08:10:24.6539073Z 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-07-17T08:10:24.6545990Z 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-07-17T08:10:24.6549902Z 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-07-17T08:10:24.6555242Z 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-07-17T08:10:24.6560839Z 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-07-17T08:10:24.6566230Z 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-07-17T08:10:24.6579429Z 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-07-17T08:10:24.6585610Z 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-07-17T08:10:24.6595760Z 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-07-17T08:10:24.6602117Z 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-07-17T08:10:24.6607744Z 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-07-17T08:10:24.6614294Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\ProcessGroupGlooDetail.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d 2025-07-17T08:10:24.6620778Z 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-07-17T08:10:24.6626776Z 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-07-17T08:10:24.6633861Z 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-07-17T08:10:24.6640551Z 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-07-17T08:10:24.6651590Z 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-07-17T08:10:24.6658724Z 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-07-17T08:10:24.6664371Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\quantization 2025-07-17T08:10:24.6668266Z 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-07-17T08:10:24.6673527Z 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-07-17T08:10:24.6679366Z 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-07-17T08:10:24.6690281Z 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-07-17T08:10:24.6695272Z 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-07-17T08:10:24.6701482Z 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-07-17T08:10:24.6707086Z 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-07-17T08:10:24.6712337Z 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-07-17T08:10:24.6717568Z 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-07-17T08:10:24.6723201Z 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-07-17T08:10:24.6729173Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6732766Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory-inl.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6738248Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6743678Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryTypes.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6753441Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\CUDASymmetricMemoryUtils.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6758870Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\DMAConnectivity.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6763987Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\intra_node_comm.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6769277Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\distributed\c10d\symm_mem\SymmetricMemory.hpp -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\distributed\c10d\symm_mem 2025-07-17T08:10:24.6774503Z 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-07-17T08:10:24.6785055Z 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-07-17T08:10:24.6789962Z 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-07-17T08:10:24.6795215Z 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-07-17T08:10:24.6800673Z 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-07-17T08:10:24.6806093Z 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-07-17T08:10:24.6811401Z 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-07-17T08:10:24.6816909Z 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-07-17T08:10:24.6822744Z 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-07-17T08:10:24.6827878Z 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-07-17T08:10:24.6833711Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc 2025-07-17T08:10:24.6837035Z 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-07-17T08:10:24.6842462Z 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-07-17T08:10:24.6847831Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\metrics 2025-07-17T08:10:24.6851294Z 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-07-17T08:10:24.6857207Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\profiler 2025-07-17T08:10:24.6860579Z 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-07-17T08:10:24.6865979Z 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-07-17T08:10:24.6871185Z 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-07-17T08:10:24.6884568Z 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-07-17T08:10:24.6888476Z 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-07-17T08:10:24.6901304Z 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-07-17T08:10:24.6901970Z 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-07-17T08:10:24.6907104Z 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-07-17T08:10:24.6912860Z 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-07-17T08:10:24.6918567Z 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-07-17T08:10:24.6924425Z 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-07-17T08:10:24.6929999Z 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-07-17T08:10:24.6935332Z 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-07-17T08:10:24.6941369Z 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-07-17T08:10:24.6946947Z 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-07-17T08:10:24.6969728Z 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-07-17T08:10:24.6976595Z 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-07-17T08:10:24.6982053Z 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-07-17T08:10:24.6987567Z 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-07-17T08:10:24.6997895Z 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-07-17T08:10:24.7003337Z 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-07-17T08:10:24.7009729Z 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-07-17T08:10:24.7015604Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\distributed\rpc\testing 2025-07-17T08:10:24.7019366Z 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-07-17T08:10:24.7025125Z 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-07-17T08:10:24.7030115Z 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-07-17T08:10:24.7035545Z 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-07-17T08:10:24.7041183Z 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-07-17T08:10:24.7046979Z 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-07-17T08:10:24.7052321Z 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-07-17T08:10:24.7057852Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Dtype.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7063291Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\DynamicTypes.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7069004Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\dynamo 2025-07-17T08:10:24.7072258Z 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-07-17T08:10:24.7077796Z 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-07-17T08:10:24.7083963Z 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-07-17T08:10:24.7089077Z 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-07-17T08:10:24.7101404Z 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-07-17T08:10:24.7106705Z 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-07-17T08:10:24.7112294Z 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-07-17T08:10:24.7117966Z 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-07-17T08:10:24.7123107Z 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-07-17T08:10:24.7128428Z 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-07-17T08:10:24.7134153Z 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-07-17T08:10:24.7139612Z 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-07-17T08:10:24.7144748Z 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-07-17T08:10:24.7150965Z 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-07-17T08:10:24.7169053Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Event.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7174392Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Exceptions.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7180311Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\export 2025-07-17T08:10:24.7183773Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\example_upgraders.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-17T08:10:24.7189357Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\pt2_archive_constants.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-17T08:10:24.7194568Z 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-07-17T08:10:24.7199943Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\export\upgrader.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\export 2025-07-17T08:10:24.7205124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7210354Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\functorch 2025-07-17T08:10:24.7214112Z 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-07-17T08:10:24.7219877Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\fx 2025-07-17T08:10:24.7223531Z 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-07-17T08:10:24.7228807Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Generator.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7234546Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor 2025-07-17T08:10:24.7237992Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_eager 2025-07-17T08:10:24.7241434Z 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-07-17T08:10:24.7247016Z 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-07-17T08:10:24.7252897Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:10:24.7256362Z 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-07-17T08:10:24.7262070Z 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-07-17T08:10:24.7267232Z 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-07-17T08:10:24.7272821Z 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-07-17T08:10:24.7277913Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_include\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_include 2025-07-17T08:10:24.7287348Z 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-07-17T08:10:24.7292528Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_package 2025-07-17T08:10:24.7296423Z 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-07-17T08:10:24.7302500Z 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-07-17T08:10:24.7308221Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runner 2025-07-17T08:10:24.7317520Z 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-07-17T08:10:24.7323576Z 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-07-17T08:10:24.7328839Z 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-07-17T08:10:24.7339101Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runner\model_container_runner_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runner 2025-07-17T08:10:24.7344615Z 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-07-17T08:10:24.7351180Z 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-07-17T08:10:24.7362968Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-17T08:10:24.7366367Z 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-07-17T08:10:24.7372055Z 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-07-17T08:10:24.7377532Z 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-07-17T08:10:24.7387281Z 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-07-17T08:10:24.7392991Z 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-07-17T08:10:24.7398647Z 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-07-17T08:10:24.7409586Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_runtime\model_base.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_runtime 2025-07-17T08:10:24.7415859Z 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-07-17T08:10:24.7421903Z 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-07-17T08:10:24.7427717Z 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-07-17T08:10:24.7433359Z 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-07-17T08:10:24.7439071Z 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-07-17T08:10:24.7444507Z 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-07-17T08:10:24.7450231Z 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-07-17T08:10:24.7456152Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch 2025-07-17T08:10:24.7459633Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-17T08:10:24.7463014Z 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-07-17T08:10:24.7469001Z 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-07-17T08:10:24.7475706Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\c\shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\c 2025-07-17T08:10:24.7479826Z 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-07-17T08:10:24.7485535Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-17T08:10:24.7489577Z 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-07-17T08:10:24.7496042Z 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-07-17T08:10:24.7502383Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\aoti_torch\generated\c_shim_mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\aoti_torch\generated 2025-07-17T08:10:24.7513217Z 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-07-17T08:10:24.7518555Z 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-07-17T08:10:24.7524390Z 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-07-17T08:10:24.7534651Z 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-07-17T08:10:24.7540011Z 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-07-17T08:10:24.7545120Z 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-07-17T08:10:24.7550274Z 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-07-17T08:10:24.7555702Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_prefix.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor 2025-07-17T08:10:24.7562770Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:10:24.7565848Z 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-07-17T08:10:24.7571043Z 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-07-17T08:10:24.7576485Z 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-07-17T08:10:24.7581322Z 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-07-17T08:10:24.7586485Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-17T08:10:24.7594708Z 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-07-17T08:10:24.7599913Z 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-07-17T08:10:24.7605027Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper\device_internal 2025-07-17T08:10:24.7610004Z 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-07-17T08:10:24.7615219Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\inductor\cpp_wrapper\mps.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\inductor\cpp_wrapper 2025-07-17T08:10:24.7620246Z 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-07-17T08:10:24.7625497Z 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-07-17T08:10:24.7631309Z 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-07-17T08:10:24.7636836Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\instruction_counter 2025-07-17T08:10:24.7640282Z 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-07-17T08:10:24.7645272Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7650794Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\itt_wrapper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:24.7656266Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit 2025-07-17T08:10:24.7659523Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\api 2025-07-17T08:10:24.7662819Z 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-07-17T08:10:24.7668617Z 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-07-17T08:10:24.7674278Z 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-07-17T08:10:24.7679818Z 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-07-17T08:10:24.7685523Z 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-07-17T08:10:24.7723185Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends 2025-07-17T08:10:24.7726463Z 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-07-17T08:10:24.7732118Z 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-07-17T08:10:24.7737573Z 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-07-17T08:10:24.7742829Z 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-07-17T08:10:24.7752582Z 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-07-17T08:10:24.7758122Z 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-07-17T08:10:24.7763561Z 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-07-17T08:10:24.7770288Z 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-07-17T08:10:24.7775874Z 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-07-17T08:10:24.7781376Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml 2025-07-17T08:10:24.7783904Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\cpp 2025-07-17T08:10:24.7787624Z 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-07-17T08:10:24.7797536Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\coreml\objc 2025-07-17T08:10:24.7801580Z 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-07-17T08:10:24.7807030Z 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-07-17T08:10:24.7812733Z 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-07-17T08:10:24.7823579Z 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-07-17T08:10:24.7829461Z 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-07-17T08:10:24.7835130Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack 2025-07-17T08:10:24.7838687Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\compiler 2025-07-17T08:10:24.7842216Z 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-07-17T08:10:24.7847966Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\executor 2025-07-17T08:10:24.7851617Z 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-07-17T08:10:24.7857206Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\backends\xnnpack\serialization 2025-07-17T08:10:24.7860699Z 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-07-17T08:10:24.7866484Z 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-07-17T08:10:24.7872350Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen 2025-07-17T08:10:24.7875594Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\cuda 2025-07-17T08:10:24.7879862Z 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-07-17T08:10:24.7885613Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser 2025-07-17T08:10:24.7888209Z 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-07-17T08:10:24.7893694Z 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-07-17T08:10:24.7898958Z 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-07-17T08:10:24.7904638Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cpu 2025-07-17T08:10:24.7908051Z 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-07-17T08:10:24.7913565Z 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-07-17T08:10:24.7919274Z 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-07-17T08:10:24.7924836Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\fuser\cuda 2025-07-17T08:10:24.7928541Z 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-07-17T08:10:24.7934130Z 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-07-17T08:10:24.7939504Z 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-07-17T08:10:24.7944868Z 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-07-17T08:10:24.7954937Z 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-07-17T08:10:24.7960474Z 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-07-17T08:10:24.7978270Z 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-07-17T08:10:24.7979594Z 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-07-17T08:10:24.7980833Z 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-07-17T08:10:24.7984418Z 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-07-17T08:10:24.7990088Z 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-07-17T08:10:24.7995872Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\codegen\onednn 2025-07-17T08:10:24.7999269Z 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-07-17T08:10:24.8004455Z 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-07-17T08:10:24.8009426Z 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-07-17T08:10:24.8015282Z 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-07-17T08:10:24.8025419Z 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-07-17T08:10:24.8030747Z 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-07-17T08:10:24.8036622Z 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-07-17T08:10:24.8042712Z 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-07-17T08:10:24.8048494Z 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-07-17T08:10:24.8054278Z 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-07-17T08:10:24.8060874Z 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-07-17T08:10:24.8093615Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\cuda 2025-07-17T08:10:24.8096883Z 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-07-17T08:10:24.8102617Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\frontend 2025-07-17T08:10:24.8105955Z 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-07-17T08:10:24.8111304Z 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-07-17T08:10:24.8116836Z 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-07-17T08:10:24.8127988Z 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-07-17T08:10:24.8134051Z 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-07-17T08:10:24.8139113Z 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-07-17T08:10:24.8144716Z 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-07-17T08:10:24.8149967Z 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-07-17T08:10:24.8155279Z 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-07-17T08:10:24.8160451Z 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-07-17T08:10:24.8165553Z 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-07-17T08:10:24.8171351Z 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-07-17T08:10:24.8176860Z 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-07-17T08:10:24.8182346Z 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-07-17T08:10:24.8187486Z 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-07-17T08:10:24.8192869Z 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-07-17T08:10:24.8198223Z 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-07-17T08:10:24.8203590Z 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-07-17T08:10:24.8209694Z 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-07-17T08:10:24.8216498Z 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-07-17T08:10:24.8224966Z 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-07-17T08:10:24.8231452Z 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-07-17T08:10:24.8236953Z 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-07-17T08:10:24.8242196Z 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-07-17T08:10:24.8248797Z 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-07-17T08:10:24.8255511Z 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-07-17T08:10:24.8261171Z 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-07-17T08:10:24.8268123Z 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-07-17T08:10:24.8273892Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\ir 2025-07-17T08:10:24.8276779Z 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-07-17T08:10:24.8282268Z 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-07-17T08:10:24.8287806Z 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-07-17T08:10:24.8293341Z 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-07-17T08:10:24.8303658Z 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-07-17T08:10:24.8309103Z 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-07-17T08:10:24.8315138Z 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-07-17T08:10:24.8320860Z 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-07-17T08:10:24.8326224Z 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-07-17T08:10:24.8330702Z 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-07-17T08:10:24.8336133Z 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-07-17T08:10:24.8341751Z 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-07-17T08:10:24.8347661Z 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-07-17T08:10:24.8352822Z 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-07-17T08:10:24.8358344Z 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-07-17T08:10:24.8368552Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile 2025-07-17T08:10:24.8372814Z 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-07-17T08:10:24.8378429Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\compatibility 2025-07-17T08:10:24.8381223Z 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-07-17T08:10:24.8386858Z 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-07-17T08:10:24.8392260Z 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-07-17T08:10:24.8402424Z 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-07-17T08:10:24.8408118Z 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-07-17T08:10:24.8413497Z 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-07-17T08:10:24.8424488Z 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-07-17T08:10:24.8430161Z 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-07-17T08:10:24.8434546Z 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-07-17T08:10:24.8439826Z 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-07-17T08:10:24.8445487Z 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-07-17T08:10:24.8451030Z 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-07-17T08:10:24.8456301Z 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-07-17T08:10:24.8461658Z 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-07-17T08:10:24.8467308Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\model_tracer 2025-07-17T08:10:24.8478175Z 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-07-17T08:10:24.8479672Z 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-07-17T08:10:24.8484019Z 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-07-17T08:10:24.8492983Z 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-07-17T08:10:24.8518348Z 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-07-17T08:10:24.8523860Z 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-07-17T08:10:24.8529692Z 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-07-17T08:10:24.8534656Z 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-07-17T08:10:24.8540193Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\nnc 2025-07-17T08:10:24.8543539Z 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-07-17T08:10:24.8549071Z 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-07-17T08:10:24.8554297Z 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-07-17T08:10:24.8560255Z 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-07-17T08:10:24.8565010Z 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-07-17T08:10:24.8570410Z 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-07-17T08:10:24.8576159Z 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-07-17T08:10:24.8581776Z 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-07-17T08:10:24.8587451Z 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-07-17T08:10:24.8592999Z 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-07-17T08:10:24.8598603Z 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-07-17T08:10:24.8608231Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train 2025-07-17T08:10:24.8611609Z 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-07-17T08:10:24.8617203Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\mobile\train\optim 2025-07-17T08:10:24.8621273Z 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-07-17T08:10:24.8626079Z 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-07-17T08:10:24.8631252Z 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-07-17T08:10:24.8636309Z 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-07-17T08:10:24.8641925Z 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-07-17T08:10:24.8647856Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\operator_upgraders 2025-07-17T08:10:24.8650819Z 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-07-17T08:10:24.8656318Z 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-07-17T08:10:24.8661311Z 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-07-17T08:10:24.8666510Z 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-07-17T08:10:24.8677163Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes 2025-07-17T08:10:24.8680494Z 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-07-17T08:10:24.8685857Z 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-07-17T08:10:24.8691003Z 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-07-17T08:10:24.8696483Z 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-07-17T08:10:24.8707637Z 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-07-17T08:10:24.8712483Z 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-07-17T08:10:24.8717478Z 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-07-17T08:10:24.8722508Z 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-07-17T08:10:24.8727872Z 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-07-17T08:10:24.8733582Z 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-07-17T08:10:24.8739417Z 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-07-17T08:10:24.8745182Z 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-07-17T08:10:24.8749350Z 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-07-17T08:10:24.8754541Z 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-07-17T08:10:24.8760318Z 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-07-17T08:10:24.8765889Z 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-07-17T08:10:24.8771488Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\dbr_quantization 2025-07-17T08:10:24.8775252Z 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-07-17T08:10:24.8780458Z 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-07-17T08:10:24.8786256Z 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-07-17T08:10:24.8797190Z 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-07-17T08:10:24.8802593Z 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-07-17T08:10:24.8806839Z 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-07-17T08:10:24.8812441Z 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-07-17T08:10:24.8817956Z 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-07-17T08:10:24.8823350Z 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-07-17T08:10:24.8829356Z 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-07-17T08:10:24.8834892Z 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-07-17T08:10:24.8840917Z 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-07-17T08:10:24.8850614Z 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-07-17T08:10:24.8856299Z 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-07-17T08:10:24.8861965Z 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-07-17T08:10:24.8867752Z 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-07-17T08:10:24.8873315Z 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-07-17T08:10:24.8878685Z 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-07-17T08:10:24.8884340Z 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-07-17T08:10:24.8890694Z 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-07-17T08:10:24.8895539Z 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-07-17T08:10:24.8906354Z 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-07-17T08:10:24.8912086Z 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-07-17T08:10:24.8917675Z 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-07-17T08:10:24.8922024Z 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-07-17T08:10:24.8927392Z 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-07-17T08:10:24.8933457Z 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-07-17T08:10:24.8938806Z 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-07-17T08:10:24.8944231Z 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-07-17T08:10:24.8949716Z 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-07-17T08:10:24.8960060Z 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-07-17T08:10:24.8965541Z 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-07-17T08:10:24.8975650Z 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-07-17T08:10:24.8980763Z 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-07-17T08:10:24.8986217Z 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-07-17T08:10:24.8991694Z 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-07-17T08:10:24.8997300Z 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-07-17T08:10:24.9003246Z 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-07-17T08:10:24.9008492Z 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-07-17T08:10:24.9014296Z 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-07-17T08:10:24.9019607Z 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-07-17T08:10:24.9035745Z 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-07-17T08:10:24.9041371Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx 2025-07-17T08:10:24.9045110Z 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-07-17T08:10:24.9050388Z 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-07-17T08:10:24.9056172Z 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-07-17T08:10:24.9061939Z 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-07-17T08:10:24.9072674Z 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-07-17T08:10:24.9077913Z 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-07-17T08:10:24.9083051Z 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-07-17T08:10:24.9088371Z 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-07-17T08:10:24.9094313Z 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-07-17T08:10:24.9099602Z 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-07-17T08:10:24.9105121Z 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-07-17T08:10:24.9110361Z 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-07-17T08:10:24.9116607Z 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-07-17T08:10:24.9121680Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\onnx\pattern_conversion 2025-07-17T08:10:24.9124855Z 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-07-17T08:10:24.9129886Z 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-07-17T08:10:24.9135383Z 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-07-17T08:10:24.9145126Z 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-07-17T08:10:24.9150613Z 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-07-17T08:10:24.9155870Z 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-07-17T08:10:24.9161063Z 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-07-17T08:10:24.9166285Z 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-07-17T08:10:24.9171697Z 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-07-17T08:10:24.9177100Z 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-07-17T08:10:24.9187349Z 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-07-17T08:10:24.9192697Z 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-07-17T08:10:24.9198289Z 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-07-17T08:10:24.9203846Z 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-07-17T08:10:24.9209051Z 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-07-17T08:10:24.9214582Z 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-07-17T08:10:24.9220133Z 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-07-17T08:10:24.9225820Z 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-07-17T08:10:24.9231052Z 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-07-17T08:10:24.9240719Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\quantization 2025-07-17T08:10:24.9244179Z 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-07-17T08:10:24.9249954Z 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-07-17T08:10:24.9260567Z 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-07-17T08:10:24.9261901Z 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-07-17T08:10:24.9270888Z 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-07-17T08:10:24.9276420Z 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-07-17T08:10:24.9282195Z 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-07-17T08:10:24.9288535Z 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-07-17T08:10:24.9294192Z 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-07-17T08:10:24.9299686Z 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-07-17T08:10:24.9304962Z 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-07-17T08:10:24.9310615Z 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-07-17T08:10:24.9316140Z 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-07-17T08:10:24.9322226Z 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-07-17T08:10:24.9327649Z 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-07-17T08:10:24.9333791Z 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-07-17T08:10:24.9340253Z 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-07-17T08:10:24.9376134Z 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-07-17T08:10:24.9381470Z 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-07-17T08:10:24.9386897Z 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-07-17T08:10:24.9392491Z 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-07-17T08:10:24.9397975Z 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-07-17T08:10:24.9403407Z 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-07-17T08:10:24.9409424Z 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-07-17T08:10:24.9415224Z 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-07-17T08:10:24.9420617Z 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-07-17T08:10:24.9426290Z 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-07-17T08:10:24.9431885Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\passes\utils 2025-07-17T08:10:24.9436338Z 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-07-17T08:10:24.9440709Z 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-07-17T08:10:24.9446059Z 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-07-17T08:10:24.9456775Z 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-07-17T08:10:24.9462056Z 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-07-17T08:10:24.9467396Z 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-07-17T08:10:24.9472837Z 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-07-17T08:10:24.9478507Z 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-07-17T08:10:24.9483864Z 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-07-17T08:10:24.9489650Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\python 2025-07-17T08:10:24.9493250Z 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-07-17T08:10:24.9498313Z 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-07-17T08:10:24.9503572Z 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-07-17T08:10:24.9509018Z 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-07-17T08:10:24.9514855Z 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-07-17T08:10:24.9523998Z 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-07-17T08:10:24.9529116Z 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-07-17T08:10:24.9534490Z 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-07-17T08:10:24.9539872Z 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-07-17T08:10:24.9545189Z 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-07-17T08:10:24.9550736Z 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-07-17T08:10:24.9556332Z 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-07-17T08:10:24.9561713Z 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-07-17T08:10:24.9566779Z 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-07-17T08:10:24.9572086Z 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-07-17T08:10:24.9577253Z 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-07-17T08:10:24.9582313Z 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-07-17T08:10:24.9588045Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime 2025-07-17T08:10:24.9591444Z 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-07-17T08:10:24.9602880Z 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-07-17T08:10:24.9604869Z 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-07-17T08:10:24.9617402Z 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-07-17T08:10:24.9619886Z 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-07-17T08:10:24.9625668Z 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-07-17T08:10:24.9630809Z 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-07-17T08:10:24.9636147Z 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-07-17T08:10:24.9641664Z 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-07-17T08:10:24.9647100Z 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-07-17T08:10:24.9652905Z 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-07-17T08:10:24.9658729Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\interpreter 2025-07-17T08:10:24.9663169Z 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-07-17T08:10:24.9668691Z 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-07-17T08:10:24.9674408Z 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-07-17T08:10:24.9688066Z 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-07-17T08:10:24.9697853Z 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-07-17T08:10:24.9703508Z 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-07-17T08:10:24.9709221Z 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-07-17T08:10:24.9714917Z 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-07-17T08:10:24.9720363Z 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-07-17T08:10:24.9726439Z 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-07-17T08:10:24.9731916Z 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-07-17T08:10:24.9736491Z 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-07-17T08:10:24.9745995Z 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-07-17T08:10:24.9751920Z 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-07-17T08:10:24.9757935Z 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-07-17T08:10:24.9763967Z 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-07-17T08:10:24.9769551Z 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-07-17T08:10:24.9774977Z 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-07-17T08:10:24.9780713Z 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-07-17T08:10:24.9786463Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\runtime\static 2025-07-17T08:10:24.9790143Z 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-07-17T08:10:24.9795902Z 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-07-17T08:10:24.9801663Z 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-07-17T08:10:24.9807033Z 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-07-17T08:10:24.9811721Z 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-07-17T08:10:24.9817148Z 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-07-17T08:10:24.9827096Z 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-07-17T08:10:24.9832602Z 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-07-17T08:10:24.9838041Z 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-07-17T08:10:24.9843705Z 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-07-17T08:10:24.9848911Z 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-07-17T08:10:24.9859716Z 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-07-17T08:10:24.9864736Z 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-07-17T08:10:24.9870457Z 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-07-17T08:10:24.9875519Z 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-07-17T08:10:24.9881214Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\serialization 2025-07-17T08:10:24.9885804Z 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-07-17T08:10:24.9890238Z 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-07-17T08:10:24.9895972Z 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-07-17T08:10:24.9905464Z 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-07-17T08:10:24.9910789Z 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-07-17T08:10:24.9917147Z 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-07-17T08:10:24.9922854Z 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-07-17T08:10:24.9928138Z 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-07-17T08:10:24.9933434Z 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-07-17T08:10:24.9938792Z 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-07-17T08:10:24.9944095Z 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-07-17T08:10:24.9949749Z 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-07-17T08:10:24.9956337Z 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-07-17T08:10:24.9961317Z 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-07-17T08:10:24.9966820Z 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-07-17T08:10:24.9991844Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\jit\serialization\pickler_helper.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\jit\serialization 2025-07-17T08:10:24.9993209Z 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-07-17T08:10:24.9994509Z 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-07-17T08:10:25.0035722Z 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-07-17T08:10:25.0037089Z 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-07-17T08:10:25.0038357Z 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-07-17T08:10:25.0039623Z 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-07-17T08:10:25.0041950Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr 2025-07-17T08:10:25.0042918Z 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-07-17T08:10:25.0044104Z 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-07-17T08:10:25.0045306Z 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-07-17T08:10:25.0047942Z 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-07-17T08:10:25.0065594Z 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-07-17T08:10:25.0071507Z 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-07-17T08:10:25.0076302Z 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-07-17T08:10:25.0081549Z 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-07-17T08:10:25.0087574Z 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-07-17T08:10:25.0092718Z 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-07-17T08:10:25.0098099Z 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-07-17T08:10:25.0103317Z 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-07-17T08:10:25.0108737Z 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-07-17T08:10:25.0114216Z 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-07-17T08:10:25.0119935Z 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-07-17T08:10:25.0125242Z 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-07-17T08:10:25.0164802Z 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-07-17T08:10:25.0170456Z 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-07-17T08:10:25.0176031Z 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-07-17T08:10:25.0181456Z 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-07-17T08:10:25.0186588Z 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-07-17T08:10:25.0196094Z 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-07-17T08:10:25.0201415Z 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-07-17T08:10:25.0206777Z 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-07-17T08:10:25.0212385Z 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-07-17T08:10:25.0217865Z 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-07-17T08:10:25.0223384Z 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-07-17T08:10:25.0228910Z 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-07-17T08:10:25.0234249Z 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-07-17T08:10:25.0244925Z 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-07-17T08:10:25.0250131Z 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-07-17T08:10:25.0256200Z 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-07-17T08:10:25.0264923Z 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-07-17T08:10:25.0270417Z 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-07-17T08:10:25.0276108Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\tensorexpr\operators 2025-07-17T08:10:25.0280678Z 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-07-17T08:10:25.0285155Z 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-07-17T08:10:25.0290138Z 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-07-17T08:10:25.0295417Z 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-07-17T08:10:25.0300381Z 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-07-17T08:10:25.0310969Z 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-07-17T08:10:25.0321840Z 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-07-17T08:10:25.0323412Z 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-07-17T08:10:25.0328451Z 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-07-17T08:10:25.0333558Z 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-07-17T08:10:25.0339192Z 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-07-17T08:10:25.0344664Z 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-07-17T08:10:25.0350396Z 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-07-17T08:10:25.0355752Z 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-07-17T08:10:25.0360816Z 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-07-17T08:10:25.0366393Z 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-07-17T08:10:25.0371516Z 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-07-17T08:10:25.0377518Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\jit\testing 2025-07-17T08:10:25.0381986Z 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-07-17T08:10:25.0386967Z 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-07-17T08:10:25.0392433Z 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-07-17T08:10:25.0398425Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Layout.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.0403739Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy 2025-07-17T08:10:25.0407160Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\backend 2025-07-17T08:10:25.0410340Z 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-07-17T08:10:25.0415776Z 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-07-17T08:10:25.0421267Z 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-07-17T08:10:25.0426333Z 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-07-17T08:10:25.0437007Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core 2025-07-17T08:10:25.0440275Z 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-07-17T08:10:25.0445515Z 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-07-17T08:10:25.0450864Z 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-07-17T08:10:25.0456283Z 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-07-17T08:10:25.0461599Z 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-07-17T08:10:25.0471350Z 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-07-17T08:10:25.0476714Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\internal_ops 2025-07-17T08:10:25.0480119Z 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-07-17T08:10:25.0485999Z 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-07-17T08:10:25.0491383Z 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-07-17T08:10:25.0497131Z 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-07-17T08:10:25.0502719Z 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-07-17T08:10:25.0508264Z 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-07-17T08:10:25.0514245Z 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-07-17T08:10:25.0519940Z 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-07-17T08:10:25.0526850Z 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-07-17T08:10:25.0532480Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\core\ops 2025-07-17T08:10:25.0536386Z 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-07-17T08:10:25.0542410Z 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-07-17T08:10:25.0548044Z 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-07-17T08:10:25.0552118Z 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-07-17T08:10:25.0557334Z 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-07-17T08:10:25.0563155Z 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-07-17T08:10:25.0568435Z 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-07-17T08:10:25.0575394Z 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-07-17T08:10:25.0579578Z 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-07-17T08:10:25.0584812Z 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-07-17T08:10:25.0590460Z 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-07-17T08:10:25.0601709Z 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-07-17T08:10:25.0607420Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\generated 2025-07-17T08:10:25.0610713Z 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-07-17T08:10:25.0623796Z 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-07-17T08:10:25.0629827Z 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-07-17T08:10:25.0635243Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\python 2025-07-17T08:10:25.0638453Z 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-07-17T08:10:25.0643447Z 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-07-17T08:10:25.0648967Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend 2025-07-17T08:10:25.0656701Z 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-07-17T08:10:25.0662156Z 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-07-17T08:10:25.0667468Z 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-07-17T08:10:25.0672922Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\lazy\ts_backend\ops 2025-07-17T08:10:25.0680069Z 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-07-17T08:10:25.0685553Z 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-07-17T08:10:25.0690946Z 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-07-17T08:10:25.0697103Z 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-07-17T08:10:25.0702025Z 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-07-17T08:10:25.0707572Z 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-07-17T08:10:25.0712963Z 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-07-17T08:10:25.0718304Z 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-07-17T08:10:25.0723656Z 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-07-17T08:10:25.0729425Z 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-07-17T08:10:25.0734219Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\MemoryFormat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.0744206Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Module.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.0749692Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\monitor 2025-07-17T08:10:25.0752831Z 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-07-17T08:10:25.0758221Z 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-07-17T08:10:25.0764163Z 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-07-17T08:10:25.0769598Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mps 2025-07-17T08:10:25.0772040Z 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-07-17T08:10:25.0777337Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia 2025-07-17T08:10:25.0781392Z 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-07-17T08:10:25.0786951Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\mtia\profiler 2025-07-17T08:10:25.0789376Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\mtia\profiler\MTIAMemoryProfiler.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\mtia\profiler 2025-07-17T08:10:25.0794767Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\multiprocessing 2025-07-17T08:10:25.0798792Z 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-07-17T08:10:25.0804249Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\onnx 2025-07-17T08:10:25.0807375Z 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-07-17T08:10:25.0812898Z 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-07-17T08:10:25.0817951Z 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-07-17T08:10:25.0823269Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler 2025-07-17T08:10:25.0827490Z 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-07-17T08:10:25.0831603Z 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-07-17T08:10:25.0838284Z 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-07-17T08:10:25.0842960Z 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-07-17T08:10:25.0856191Z 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-07-17T08:10:25.0861720Z 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-07-17T08:10:25.0866180Z 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-07-17T08:10:25.0915331Z 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-07-17T08:10:25.0922260Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\orchestration 2025-07-17T08:10:25.0927073Z 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-07-17T08:10:25.0933952Z 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-07-17T08:10:25.0940660Z 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-07-17T08:10:25.0947152Z 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-07-17T08:10:25.0953653Z 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-07-17T08:10:25.0961698Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\python 2025-07-17T08:10:25.0967450Z 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-07-17T08:10:25.0994589Z 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-07-17T08:10:25.0995267Z 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-07-17T08:10:25.0995524Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\standalone 2025-07-17T08:10:25.0996178Z 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-07-17T08:10:25.0996765Z 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-07-17T08:10:25.1001103Z 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-07-17T08:10:25.1009727Z 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-07-17T08:10:25.1015359Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\stubs 2025-07-17T08:10:25.1018824Z 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-07-17T08:10:25.1024897Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\profiler\unwind 2025-07-17T08:10:25.1031918Z 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-07-17T08:10:25.1037366Z 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-07-17T08:10:25.1043308Z 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-07-17T08:10:25.1054006Z 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-07-17T08:10:25.1063958Z 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-07-17T08:10:25.1069330Z 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-07-17T08:10:25.1074457Z 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-07-17T08:10:25.1079512Z 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-07-17T08:10:25.1084684Z 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-07-17T08:10:25.1089733Z 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-07-17T08:10:25.1094923Z 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-07-17T08:10:25.1100050Z 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-07-17T08:10:25.1105068Z 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-07-17T08:10:25.1109980Z 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-07-17T08:10:25.1114859Z 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-07-17T08:10:25.1119762Z 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-07-17T08:10:25.1125077Z 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-07-17T08:10:25.1130387Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\PyInterpreter.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1135454Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_dimname.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1140295Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\python_headers.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1145761Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\QScheme.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1150762Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\serialization.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1156702Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Size.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1161904Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\stable 2025-07-17T08:10:25.1170512Z 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-07-17T08:10:25.1175902Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\ops.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-17T08:10:25.1180957Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\stable\tensor.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc\stable 2025-07-17T08:10:25.1186566Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Storage.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1192060Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageMethods.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1196990Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\StorageSharing.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1201911Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Stream.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1207394Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\tensor 2025-07-17T08:10:25.1210771Z 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-07-17T08:10:25.1216294Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THConcat.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1221081Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\THP.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1226195Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\TypeInfo.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1231125Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\Types.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1237609Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\utils 2025-07-17T08:10:25.1240962Z 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-07-17T08:10:25.1246379Z 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-07-17T08:10:25.1251385Z 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-07-17T08:10:25.1256574Z 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-07-17T08:10:25.1267063Z 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-07-17T08:10:25.1272444Z 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-07-17T08:10:25.1279272Z 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-07-17T08:10:25.1285148Z 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-07-17T08:10:25.1290906Z 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-07-17T08:10:25.1296388Z 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-07-17T08:10:25.1300567Z 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-07-17T08:10:25.1306535Z 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-07-17T08:10:25.1312087Z 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-07-17T08:10:25.1317824Z 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-07-17T08:10:25.1323153Z 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-07-17T08:10:25.1328564Z 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-07-17T08:10:25.1334982Z 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-07-17T08:10:25.1341162Z 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-07-17T08:10:25.1346969Z 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-07-17T08:10:25.1352963Z 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-07-17T08:10:25.1363761Z 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-07-17T08:10:25.1369307Z 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-07-17T08:10:25.1374966Z 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-07-17T08:10:25.1380867Z 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-07-17T08:10:25.1386406Z 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-07-17T08:10:25.1392088Z 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-07-17T08:10:25.1397676Z 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-07-17T08:10:25.1403463Z 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-07-17T08:10:25.1409132Z 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-07-17T08:10:25.1414884Z 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-07-17T08:10:25.1425320Z 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-07-17T08:10:25.1430732Z 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-07-17T08:10:25.1436282Z 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-07-17T08:10:25.1442010Z 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-07-17T08:10:25.1447368Z 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-07-17T08:10:25.1453025Z 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-07-17T08:10:25.1458492Z 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-07-17T08:10:25.1464454Z 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-07-17T08:10:25.1470251Z 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-07-17T08:10:25.1482386Z 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-07-17T08:10:25.1488391Z 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-07-17T08:10:25.1495427Z 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-07-17T08:10:25.1499557Z 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-07-17T08:10:25.1505404Z 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-07-17T08:10:25.1510895Z 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-07-17T08:10:25.1515982Z copying build\lib.win-amd64-cpython-39\torch\include\torch\csrc\utils.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\csrc 2025-07-17T08:10:25.1521956Z creating build\bdist.win-amd64\wheel\torch\include\torch\csrc\xpu 2025-07-17T08:10:25.1525361Z 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-07-17T08:10:25.1530714Z 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-07-17T08:10:25.1535792Z 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-07-17T08:10:25.1542070Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-17T08:10:25.1548124Z copying build\lib.win-amd64-cpython-39\torch\include\torch\custom_class_detail.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-17T08:10:25.1553643Z copying build\lib.win-amd64-cpython-39\torch\include\torch\extension.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-17T08:10:25.1564057Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly 2025-07-17T08:10:25.1567319Z creating build\bdist.win-amd64\wheel\torch\include\torch\headeronly\macros 2025-07-17T08:10:25.1572082Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\cmake_macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-17T08:10:25.1576517Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Export.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-17T08:10:25.1581707Z copying build\lib.win-amd64-cpython-39\torch\include\torch\headeronly\macros\Macros.h -> build\bdist.win-amd64\wheel\.\torch\include\torch\headeronly\macros 2025-07-17T08:10:25.1587830Z copying build\lib.win-amd64-cpython-39\torch\include\torch\library.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-17T08:10:25.1598519Z copying build\lib.win-amd64-cpython-39\torch\include\torch\script.h -> build\bdist.win-amd64\wheel\.\torch\include\torch 2025-07-17T08:10:25.1608495Z copying build\lib.win-amd64-cpython-39\torch\include\xnnpack.h -> build\bdist.win-amd64\wheel\.\torch\include 2025-07-17T08:10:25.1624685Z creating build\bdist.win-amd64\wheel\torch\jit 2025-07-17T08:10:25.1647206Z copying build\lib.win-amd64-cpython-39\torch\jit\annotations.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1652990Z copying build\lib.win-amd64-cpython-39\torch\jit\frontend.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1659007Z copying build\lib.win-amd64-cpython-39\torch\jit\generate_bytecode.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1664646Z creating build\bdist.win-amd64\wheel\torch\jit\mobile 2025-07-17T08:10:25.1667835Z copying build\lib.win-amd64-cpython-39\torch\jit\mobile\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\mobile 2025-07-17T08:10:25.1673470Z copying build\lib.win-amd64-cpython-39\torch\jit\quantized.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1683391Z copying build\lib.win-amd64-cpython-39\torch\jit\supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1688976Z copying build\lib.win-amd64-cpython-39\torch\jit\unsupported_tensor_ops.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1694578Z copying build\lib.win-amd64-cpython-39\torch\jit\_async.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1699968Z copying build\lib.win-amd64-cpython-39\torch\jit\_await.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1705142Z copying build\lib.win-amd64-cpython-39\torch\jit\_builtins.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1710364Z copying build\lib.win-amd64-cpython-39\torch\jit\_check.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1715868Z copying build\lib.win-amd64-cpython-39\torch\jit\_dataclass_impls.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1721432Z copying build\lib.win-amd64-cpython-39\torch\jit\_decompositions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1726822Z copying build\lib.win-amd64-cpython-39\torch\jit\_decomposition_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1732344Z copying build\lib.win-amd64-cpython-39\torch\jit\_freeze.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1737783Z copying build\lib.win-amd64-cpython-39\torch\jit\_fuser.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1743278Z copying build\lib.win-amd64-cpython-39\torch\jit\_ir_utils.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1748656Z copying build\lib.win-amd64-cpython-39\torch\jit\_logging.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1753886Z copying build\lib.win-amd64-cpython-39\torch\jit\_monkeytype_config.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1759789Z creating build\bdist.win-amd64\wheel\torch\jit\_passes 2025-07-17T08:10:25.1764262Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\_property_propagation.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-07-17T08:10:25.1769849Z copying build\lib.win-amd64-cpython-39\torch\jit\_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit\_passes 2025-07-17T08:10:25.1773737Z copying build\lib.win-amd64-cpython-39\torch\jit\_pickle.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1779059Z copying build\lib.win-amd64-cpython-39\torch\jit\_recursive.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1785514Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1792934Z copying build\lib.win-amd64-cpython-39\torch\jit\_script.pyi -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1798504Z copying build\lib.win-amd64-cpython-39\torch\jit\_serialization.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1808107Z copying build\lib.win-amd64-cpython-39\torch\jit\_shape_functions.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1814077Z copying build\lib.win-amd64-cpython-39\torch\jit\_state.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1819634Z copying build\lib.win-amd64-cpython-39\torch\jit\_trace.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1825923Z copying build\lib.win-amd64-cpython-39\torch\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\jit 2025-07-17T08:10:25.1833023Z creating build\bdist.win-amd64\wheel\torch\lib 2025-07-17T08:10:25.1835432Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1844303Z copying build\lib.win-amd64-cpython-39\torch\lib\aoti_custom_ops.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1850453Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1859610Z copying build\lib.win-amd64-cpython-39\torch\lib\asmjit.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1867733Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1880637Z copying build\lib.win-amd64-cpython-39\torch\lib\backend_with_compiler.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1886844Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1902177Z copying build\lib.win-amd64-cpython-39\torch\lib\c10.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1937901Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1947305Z copying build\lib.win-amd64-cpython-39\torch\lib\c10_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1954410Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1967461Z copying build\lib.win-amd64-cpython-39\torch\lib\caffe2_nvrtc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1972517Z copying build\lib.win-amd64-cpython-39\torch\lib\cpuinfo.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:25.1983620Z copying build\lib.win-amd64-cpython-39\torch\lib\dnnl.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.4700190Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.4754456Z copying build\lib.win-amd64-cpython-39\torch\lib\fbgemm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.4774181Z copying build\lib.win-amd64-cpython-39\torch\lib\fmt.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.4809202Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.4817131Z copying build\lib.win-amd64-cpython-39\torch\lib\jitbackend_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.4823038Z copying build\lib.win-amd64-cpython-39\torch\lib\kineto.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.5639446Z copying build\lib.win-amd64-cpython-39\torch\lib\libittnotify.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.5651882Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf-lite.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.5805550Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotobuf.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.6752467Z copying build\lib.win-amd64-cpython-39\torch\lib\libprotoc.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8046320Z creating build\bdist.win-amd64\wheel\torch\lib\libshm 2025-07-17T08:10:27.8050503Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\alloc_info.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-17T08:10:27.8055958Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\err.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-17T08:10:27.8062226Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-17T08:10:27.8067925Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm\socket.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm 2025-07-17T08:10:27.8073482Z creating build\bdist.win-amd64\wheel\torch\lib\libshm_windows 2025-07-17T08:10:27.8076198Z copying build\lib.win-amd64-cpython-39\torch\lib\libshm_windows\libshm.h -> build\bdist.win-amd64\wheel\.\torch\lib\libshm_windows 2025-07-17T08:10:27.8081563Z copying build\lib.win-amd64-cpython-39\torch\lib\microkernels-prod.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8253861Z copying build\lib.win-amd64-cpython-39\torch\lib\pthreadpool.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8265129Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8276350Z copying build\lib.win-amd64-cpython-39\torch\lib\shm.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8280715Z copying build\lib.win-amd64-cpython-39\torch\lib\sleef.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8511906Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8517095Z copying build\lib.win-amd64-cpython-39\torch\lib\torch.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8522427Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8533673Z copying build\lib.win-amd64-cpython-39\torch\lib\torchbind_test.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:27.8539715Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.0653869Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cpu.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.0905991Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.3240706Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_cuda.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.3262270Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_global_deps.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.3268156Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.dll -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.3416229Z copying build\lib.win-amd64-cpython-39\torch\lib\torch_python.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.3424457Z copying build\lib.win-amd64-cpython-39\torch\lib\XNNPACK.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.3583933Z copying build\lib.win-amd64-cpython-39\torch\lib\_C.lib -> build\bdist.win-amd64\wheel\.\torch\lib 2025-07-17T08:10:28.3589240Z copying build\lib.win-amd64-cpython-39\torch\library.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.3596762Z creating build\bdist.win-amd64\wheel\torch\linalg 2025-07-17T08:10:28.3599830Z copying build\lib.win-amd64-cpython-39\torch\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\linalg 2025-07-17T08:10:28.3607098Z creating build\bdist.win-amd64\wheel\torch\masked 2025-07-17T08:10:28.3610356Z creating build\bdist.win-amd64\wheel\torch\masked\maskedtensor 2025-07-17T08:10:28.3613724Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\binary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3619204Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\core.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3624919Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\creation.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3629828Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\passthrough.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3635188Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\reductions.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3644605Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\unary.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3649853Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\_ops_refs.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3663753Z copying build\lib.win-amd64-cpython-39\torch\masked\maskedtensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked\maskedtensor 2025-07-17T08:10:28.3664674Z copying build\lib.win-amd64-cpython-39\torch\masked\_docs.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-17T08:10:28.3669330Z copying build\lib.win-amd64-cpython-39\torch\masked\_ops.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-17T08:10:28.3675577Z copying build\lib.win-amd64-cpython-39\torch\masked\__init__.py -> build\bdist.win-amd64\wheel\.\torch\masked 2025-07-17T08:10:28.3681202Z creating build\bdist.win-amd64\wheel\torch\monitor 2025-07-17T08:10:28.3684385Z copying build\lib.win-amd64-cpython-39\torch\monitor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\monitor 2025-07-17T08:10:28.3690222Z creating build\bdist.win-amd64\wheel\torch\mps 2025-07-17T08:10:28.3694152Z copying build\lib.win-amd64-cpython-39\torch\mps\event.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-17T08:10:28.3699936Z copying build\lib.win-amd64-cpython-39\torch\mps\profiler.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-17T08:10:28.3705658Z copying build\lib.win-amd64-cpython-39\torch\mps\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mps 2025-07-17T08:10:28.3711442Z creating build\bdist.win-amd64\wheel\torch\mtia 2025-07-17T08:10:28.3714860Z copying build\lib.win-amd64-cpython-39\torch\mtia\memory.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-17T08:10:28.3720394Z copying build\lib.win-amd64-cpython-39\torch\mtia\_utils.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-17T08:10:28.3725774Z copying build\lib.win-amd64-cpython-39\torch\mtia\__init__.py -> build\bdist.win-amd64\wheel\.\torch\mtia 2025-07-17T08:10:28.3731670Z creating build\bdist.win-amd64\wheel\torch\multiprocessing 2025-07-17T08:10:28.3734951Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\pool.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-17T08:10:28.3740387Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\queue.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-17T08:10:28.3746061Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\reductions.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-17T08:10:28.3751471Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\spawn.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-17T08:10:28.3756839Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\_atfork.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-17T08:10:28.3766626Z copying build\lib.win-amd64-cpython-39\torch\multiprocessing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\multiprocessing 2025-07-17T08:10:28.3772204Z creating build\bdist.win-amd64\wheel\torch\nested 2025-07-17T08:10:28.3775429Z creating build\bdist.win-amd64\wheel\torch\nested\_internal 2025-07-17T08:10:28.3778944Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_int.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-17T08:10:28.3784170Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\nested_tensor.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-17T08:10:28.3789772Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\ops.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-17T08:10:28.3796150Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-17T08:10:28.3807663Z copying build\lib.win-amd64-cpython-39\torch\nested\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested\_internal 2025-07-17T08:10:28.3811841Z copying build\lib.win-amd64-cpython-39\torch\nested\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nested 2025-07-17T08:10:28.3817762Z creating build\bdist.win-amd64\wheel\torch\nn 2025-07-17T08:10:28.3820979Z creating build\bdist.win-amd64\wheel\torch\nn\attention 2025-07-17T08:10:28.3824161Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\bias.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-17T08:10:28.3829704Z creating build\bdist.win-amd64\wheel\torch\nn\attention\experimental 2025-07-17T08:10:28.3833263Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\_paged_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-07-17T08:10:28.3839382Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\experimental\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention\experimental 2025-07-17T08:10:28.3844249Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-17T08:10:28.3850292Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-17T08:10:28.3860250Z copying build\lib.win-amd64-cpython-39\torch\nn\attention\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\attention 2025-07-17T08:10:28.3865661Z creating build\bdist.win-amd64\wheel\torch\nn\backends 2025-07-17T08:10:28.3880418Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\thnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-07-17T08:10:28.3885758Z copying build\lib.win-amd64-cpython-39\torch\nn\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\backends 2025-07-17T08:10:28.3890062Z copying build\lib.win-amd64-cpython-39\torch\nn\common_types.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.3895404Z copying build\lib.win-amd64-cpython-39\torch\nn\cpp.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.3900798Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.3913391Z copying build\lib.win-amd64-cpython-39\torch\nn\functional.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.3919139Z copying build\lib.win-amd64-cpython-39\torch\nn\grad.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.3924244Z copying build\lib.win-amd64-cpython-39\torch\nn\init.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.3930112Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic 2025-07-17T08:10:28.3933579Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\modules 2025-07-17T08:10:28.3936809Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\fused.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-07-17T08:10:28.3941896Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\modules 2025-07-17T08:10:28.3946939Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat 2025-07-17T08:10:28.3950243Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\qat\modules 2025-07-17T08:10:28.3953627Z 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-07-17T08:10:28.3959159Z 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-07-17T08:10:28.3964817Z 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-07-17T08:10:28.3969399Z 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-07-17T08:10:28.3980002Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\qat 2025-07-17T08:10:28.3985065Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized 2025-07-17T08:10:28.3988465Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic 2025-07-17T08:10:28.3991654Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\dynamic\modules 2025-07-17T08:10:28.3995080Z 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-07-17T08:10:28.4000390Z 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-07-17T08:10:28.4005459Z 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-07-17T08:10:28.4010614Z creating build\bdist.win-amd64\wheel\torch\nn\intrinsic\quantized\modules 2025-07-17T08:10:28.4013975Z 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-07-17T08:10:28.4019091Z 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-07-17T08:10:28.4024811Z 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-07-17T08:10:28.4030227Z 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-07-17T08:10:28.4035556Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic\quantized 2025-07-17T08:10:28.4040507Z copying build\lib.win-amd64-cpython-39\torch\nn\intrinsic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\intrinsic 2025-07-17T08:10:28.4046057Z creating build\bdist.win-amd64\wheel\torch\nn\modules 2025-07-17T08:10:28.4049259Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4055878Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\adaptive.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4061665Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4067355Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\channelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4077657Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\container.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4084114Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4090223Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\distance.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4095573Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4101029Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\flatten.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4106138Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\fold.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4111610Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\instancenorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4117160Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\lazy.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4122533Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4127778Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\loss.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4134272Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\module.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4141344Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4146690Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\padding.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4152429Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pixelshuffle.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4157828Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\pooling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4164380Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4171372Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\sparse.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4177009Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\transformer.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4182794Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\upsampling.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4188560Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4194240Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4225132Z copying build\lib.win-amd64-cpython-39\torch\nn\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\modules 2025-07-17T08:10:28.4225762Z creating build\bdist.win-amd64\wheel\torch\nn\parallel 2025-07-17T08:10:28.4226372Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\comm.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4227229Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\data_parallel.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4228111Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\distributed.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4229022Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\parallel_apply.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4240086Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\replicate.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4245315Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\scatter_gather.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4250738Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\_functions.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4256253Z copying build\lib.win-amd64-cpython-39\torch\nn\parallel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\parallel 2025-07-17T08:10:28.4261592Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.4266927Z copying build\lib.win-amd64-cpython-39\torch\nn\parameter.pyi -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.4272505Z creating build\bdist.win-amd64\wheel\torch\nn\qat 2025-07-17T08:10:28.4276603Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic 2025-07-17T08:10:28.4279055Z creating build\bdist.win-amd64\wheel\torch\nn\qat\dynamic\modules 2025-07-17T08:10:28.4282237Z 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-07-17T08:10:28.4287299Z 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-07-17T08:10:28.4292275Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\dynamic 2025-07-17T08:10:28.4297379Z creating build\bdist.win-amd64\wheel\torch\nn\qat\modules 2025-07-17T08:10:28.4300489Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-17T08:10:28.4305523Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-17T08:10:28.4310795Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-17T08:10:28.4315653Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat\modules 2025-07-17T08:10:28.4320462Z copying build\lib.win-amd64-cpython-39\torch\nn\qat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\qat 2025-07-17T08:10:28.4325540Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable 2025-07-17T08:10:28.4328769Z creating build\bdist.win-amd64\wheel\torch\nn\quantizable\modules 2025-07-17T08:10:28.4332164Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-17T08:10:28.4337149Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-17T08:10:28.4342060Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable\modules 2025-07-17T08:10:28.4346882Z copying build\lib.win-amd64-cpython-39\torch\nn\quantizable\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantizable 2025-07-17T08:10:28.4352616Z creating build\bdist.win-amd64\wheel\torch\nn\quantized 2025-07-17T08:10:28.4355298Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic 2025-07-17T08:10:28.4364994Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\dynamic\modules 2025-07-17T08:10:28.4368332Z 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-07-17T08:10:28.4373764Z 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-07-17T08:10:28.4378665Z 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-07-17T08:10:28.4384076Z 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-07-17T08:10:28.4389191Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\dynamic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\dynamic 2025-07-17T08:10:28.4394065Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\functional.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-07-17T08:10:28.4399220Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\modules 2025-07-17T08:10:28.4402451Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\activation.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4407538Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\batchnorm.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4412556Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\conv.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4417433Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\dropout.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4422537Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\embedding_ops.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4433346Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\functional_modules.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4443031Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\linear.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4448007Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\normalization.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4453335Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4458207Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4463184Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\modules\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\modules 2025-07-17T08:10:28.4468513Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference 2025-07-17T08:10:28.4476334Z creating build\bdist.win-amd64\wheel\torch\nn\quantized\_reference\modules 2025-07-17T08:10:28.4479534Z 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-07-17T08:10:28.4484592Z 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-07-17T08:10:28.4489656Z 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-07-17T08:10:28.4494621Z 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-07-17T08:10:28.4499465Z 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-07-17T08:10:28.4504345Z 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-07-17T08:10:28.4509961Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\_reference\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized\_reference 2025-07-17T08:10:28.4514472Z copying build\lib.win-amd64-cpython-39\torch\nn\quantized\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\quantized 2025-07-17T08:10:28.4519866Z creating build\bdist.win-amd64\wheel\torch\nn\utils 2025-07-17T08:10:28.4523055Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\clip_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4528994Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\convert_parameters.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4534459Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\fusion.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4539747Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\init.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4560811Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\memory_format.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4571234Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrizations.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4576841Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\parametrize.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4582674Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\prune.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4588611Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\rnn.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4594206Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\spectral_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4599504Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\stateless.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4604823Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\weight_norm.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4611051Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_deprecation_utils.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4616312Z creating build\bdist.win-amd64\wheel\torch\nn\utils\_expanded_weights 2025-07-17T08:10:28.4619720Z 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-07-17T08:10:28.4624994Z 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-07-17T08:10:28.4630364Z 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-07-17T08:10:28.4641115Z 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-07-17T08:10:28.4646496Z 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-07-17T08:10:28.4651981Z 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-07-17T08:10:28.4657550Z 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-07-17T08:10:28.4662975Z 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-07-17T08:10:28.4668351Z 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-07-17T08:10:28.4673602Z 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-07-17T08:10:28.4678596Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_named_member_accessor.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4683947Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\_per_sample_grad.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4689452Z copying build\lib.win-amd64-cpython-39\torch\nn\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn\utils 2025-07-17T08:10:28.4695152Z copying build\lib.win-amd64-cpython-39\torch\nn\_reduction.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.4701030Z copying build\lib.win-amd64-cpython-39\torch\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\nn 2025-07-17T08:10:28.4707058Z creating build\bdist.win-amd64\wheel\torch\onnx 2025-07-17T08:10:28.4715720Z copying build\lib.win-amd64-cpython-39\torch\onnx\errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4716917Z copying build\lib.win-amd64-cpython-39\torch\onnx\operators.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4759886Z creating build\bdist.win-amd64\wheel\torch\onnx\ops 2025-07-17T08:10:28.4760553Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_dtype_mappings.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-17T08:10:28.4761431Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-17T08:10:28.4762254Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\_symbolic_impl.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-17T08:10:28.4763077Z copying build\lib.win-amd64-cpython-39\torch\onnx\ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\ops 2025-07-17T08:10:28.4763871Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_helper.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4766104Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset10.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4767299Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset11.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4773663Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset12.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4779230Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset13.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4785310Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset14.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4790709Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset15.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4796228Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset16.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4801568Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset17.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4807206Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset18.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4813101Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset19.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4818309Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset20.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4823701Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset7.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4829044Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset8.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4834500Z copying build\lib.win-amd64-cpython-39\torch\onnx\symbolic_opset9.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4842415Z copying build\lib.win-amd64-cpython-39\torch\onnx\utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4848652Z copying build\lib.win-amd64-cpython-39\torch\onnx\verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4859823Z copying build\lib.win-amd64-cpython-39\torch\onnx\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4864920Z copying build\lib.win-amd64-cpython-39\torch\onnx\_experimental.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4870144Z copying build\lib.win-amd64-cpython-39\torch\onnx\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4875304Z copying build\lib.win-amd64-cpython-39\torch\onnx\_globals.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.4880770Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal 2025-07-17T08:10:28.4884166Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4887551Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_analysis.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4893048Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_building.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4898943Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_capture_strategies.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4904166Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_compat.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4913546Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_constants.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4918761Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_core.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4924901Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_decomp.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4930055Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dispatching.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4935553Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4941257Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_errors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4946234Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_flags.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4951103Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_fx_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4956374Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_ir_passes.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4961580Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_isolated.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4967092Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_onnx_program.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4972954Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4978295Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_reporting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4983611Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_schemas.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4989165Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_tensors.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.4994339Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_testing.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.5000187Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib 2025-07-17T08:10:28.5003492Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:10:28.5006896Z 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-07-17T08:10:28.5012383Z 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-07-17T08:10:28.5018369Z 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-07-17T08:10:28.5023393Z 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-07-17T08:10:28.5028674Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_torchlib\ops\symops.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter\_torchlib\ops 2025-07-17T08:10:28.5034398Z 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-07-17T08:10:28.5039908Z 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-07-17T08:10:28.5044866Z 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-07-17T08:10:28.5049764Z 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-07-17T08:10:28.5058738Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_type_casting.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.5064307Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\_verification.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.5074593Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\exporter\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\exporter 2025-07-17T08:10:28.5079955Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx 2025-07-17T08:10:28.5082351Z creating build\bdist.win-amd64\wheel\torch\onnx\_internal\fx\passes 2025-07-17T08:10:28.5086123Z 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-07-17T08:10:28.5092222Z 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-07-17T08:10:28.5097792Z 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-07-17T08:10:28.5103433Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\patcher.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-17T08:10:28.5108826Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\serialization.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-17T08:10:28.5114727Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-17T08:10:28.5120634Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\_pass.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-17T08:10:28.5130542Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal\fx 2025-07-17T08:10:28.5135709Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-17T08:10:28.5141396Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\onnx_proto_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-17T08:10:28.5151664Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\registration.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-17T08:10:28.5157020Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_exporter_legacy.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-17T08:10:28.5162900Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\_lazy_import.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-17T08:10:28.5168465Z copying build\lib.win-amd64-cpython-39\torch\onnx\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx\_internal 2025-07-17T08:10:28.5173009Z copying build\lib.win-amd64-cpython-39\torch\onnx\_onnx_supported_ops.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.5178434Z copying build\lib.win-amd64-cpython-39\torch\onnx\_type_utils.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.5183970Z copying build\lib.win-amd64-cpython-39\torch\onnx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\onnx 2025-07-17T08:10:28.5190228Z creating build\bdist.win-amd64\wheel\torch\optim 2025-07-17T08:10:28.5193743Z copying build\lib.win-amd64-cpython-39\torch\optim\adadelta.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5199561Z copying build\lib.win-amd64-cpython-39\torch\optim\adagrad.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5205200Z copying build\lib.win-amd64-cpython-39\torch\optim\adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5211131Z copying build\lib.win-amd64-cpython-39\torch\optim\adamax.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5236779Z copying build\lib.win-amd64-cpython-39\torch\optim\adamw.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5237514Z copying build\lib.win-amd64-cpython-39\torch\optim\asgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5238251Z copying build\lib.win-amd64-cpython-39\torch\optim\lbfgs.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5242778Z copying build\lib.win-amd64-cpython-39\torch\optim\lr_scheduler.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5248778Z copying build\lib.win-amd64-cpython-39\torch\optim\nadam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5254878Z copying build\lib.win-amd64-cpython-39\torch\optim\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5261045Z copying build\lib.win-amd64-cpython-39\torch\optim\radam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5266672Z copying build\lib.win-amd64-cpython-39\torch\optim\rmsprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5272470Z copying build\lib.win-amd64-cpython-39\torch\optim\rprop.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5277982Z copying build\lib.win-amd64-cpython-39\torch\optim\sgd.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5283676Z copying build\lib.win-amd64-cpython-39\torch\optim\sparse_adam.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5290558Z copying build\lib.win-amd64-cpython-39\torch\optim\swa_utils.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5296373Z copying build\lib.win-amd64-cpython-39\torch\optim\_adafactor.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5302112Z copying build\lib.win-amd64-cpython-39\torch\optim\_functional.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5307579Z creating build\bdist.win-amd64\wheel\torch\optim\_multi_tensor 2025-07-17T08:10:28.5310835Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-07-17T08:10:28.5316246Z copying build\lib.win-amd64-cpython-39\torch\optim\_multi_tensor\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\optim\_multi_tensor 2025-07-17T08:10:28.5321280Z copying build\lib.win-amd64-cpython-39\torch\optim\__init__.py -> build\bdist.win-amd64\wheel\.\torch\optim 2025-07-17T08:10:28.5326517Z copying build\lib.win-amd64-cpython-39\torch\overrides.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.5333491Z creating build\bdist.win-amd64\wheel\torch\package 2025-07-17T08:10:28.5341598Z creating build\bdist.win-amd64\wheel\torch\package\analyze 2025-07-17T08:10:28.5345086Z 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-07-17T08:10:28.5350296Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\is_from_package.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-17T08:10:28.5355330Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\trace_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-17T08:10:28.5365061Z copying build\lib.win-amd64-cpython-39\torch\package\analyze\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package\analyze 2025-07-17T08:10:28.5370114Z copying build\lib.win-amd64-cpython-39\torch\package\file_structure_representation.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5375746Z copying build\lib.win-amd64-cpython-39\torch\package\find_file_dependencies.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5380991Z copying build\lib.win-amd64-cpython-39\torch\package\glob_group.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5390321Z copying build\lib.win-amd64-cpython-39\torch\package\importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5395535Z copying build\lib.win-amd64-cpython-39\torch\package\package_exporter.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5401653Z copying build\lib.win-amd64-cpython-39\torch\package\package_importer.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5407924Z copying build\lib.win-amd64-cpython-39\torch\package\_digraph.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5413325Z copying build\lib.win-amd64-cpython-39\torch\package\_directory_reader.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5418630Z copying build\lib.win-amd64-cpython-39\torch\package\_importlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5424118Z copying build\lib.win-amd64-cpython-39\torch\package\_mangling.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5429372Z copying build\lib.win-amd64-cpython-39\torch\package\_mock.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5434564Z copying build\lib.win-amd64-cpython-39\torch\package\_package_pickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5440291Z copying build\lib.win-amd64-cpython-39\torch\package\_package_unpickler.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5445556Z copying build\lib.win-amd64-cpython-39\torch\package\_stdlib.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5450698Z copying build\lib.win-amd64-cpython-39\torch\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\package 2025-07-17T08:10:28.5456021Z creating build\bdist.win-amd64\wheel\torch\profiler 2025-07-17T08:10:28.5459101Z copying build\lib.win-amd64-cpython-39\torch\profiler\itt.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-17T08:10:28.5464308Z copying build\lib.win-amd64-cpython-39\torch\profiler\profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-17T08:10:28.5470187Z copying build\lib.win-amd64-cpython-39\torch\profiler\python_tracer.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-17T08:10:28.5475266Z copying build\lib.win-amd64-cpython-39\torch\profiler\_memory_profiler.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-17T08:10:28.5481329Z copying build\lib.win-amd64-cpython-39\torch\profiler\_pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-17T08:10:28.5491666Z copying build\lib.win-amd64-cpython-39\torch\profiler\_utils.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-17T08:10:28.5496901Z copying build\lib.win-amd64-cpython-39\torch\profiler\__init__.py -> build\bdist.win-amd64\wheel\.\torch\profiler 2025-07-17T08:10:28.5502240Z copying build\lib.win-amd64-cpython-39\torch\py.typed -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.5507019Z creating build\bdist.win-amd64\wheel\torch\quantization 2025-07-17T08:10:28.5510295Z copying build\lib.win-amd64-cpython-39\torch\quantization\fake_quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5516312Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuser_method_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5520768Z copying build\lib.win-amd64-cpython-39\torch\quantization\fuse_modules.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5530199Z creating build\bdist.win-amd64\wheel\torch\quantization\fx 2025-07-17T08:10:28.5533459Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\convert.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5538377Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fuse.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5554943Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\fusion_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5559872Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\graph_module.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5564829Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\match_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5574718Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\pattern_utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5579952Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\prepare.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5585008Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_patterns.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5590592Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\quantization_types.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5595592Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5600738Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\_equalize.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5605915Z copying build\lib.win-amd64-cpython-39\torch\quantization\fx\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization\fx 2025-07-17T08:10:28.5610862Z copying build\lib.win-amd64-cpython-39\torch\quantization\observer.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5617150Z copying build\lib.win-amd64-cpython-39\torch\quantization\qconfig.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5621351Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantization_mappings.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5626894Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5632247Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5637763Z copying build\lib.win-amd64-cpython-39\torch\quantization\quantize_jit.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5643648Z copying build\lib.win-amd64-cpython-39\torch\quantization\quant_type.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5649341Z copying build\lib.win-amd64-cpython-39\torch\quantization\stubs.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5654394Z copying build\lib.win-amd64-cpython-39\torch\quantization\utils.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5659781Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5665207Z copying build\lib.win-amd64-cpython-39\torch\quantization\_numeric_suite_fx.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5670572Z copying build\lib.win-amd64-cpython-39\torch\quantization\_quantized_conversions.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5676062Z copying build\lib.win-amd64-cpython-39\torch\quantization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\quantization 2025-07-17T08:10:28.5681361Z copying build\lib.win-amd64-cpython-39\torch\quasirandom.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.5686931Z copying build\lib.win-amd64-cpython-39\torch\random.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.5692775Z copying build\lib.win-amd64-cpython-39\torch\return_types.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.5698251Z copying build\lib.win-amd64-cpython-39\torch\return_types.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.5704195Z copying build\lib.win-amd64-cpython-39\torch\serialization.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:28.5711314Z creating build\bdist.win-amd64\wheel\torch\share 2025-07-17T08:10:28.5714269Z creating build\bdist.win-amd64\wheel\torch\share\cmake 2025-07-17T08:10:28.5756348Z creating build\bdist.win-amd64\wheel\torch\share\cmake\ATen 2025-07-17T08:10:28.5757096Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\ATen\ATenConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\ATen 2025-07-17T08:10:28.5757806Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5758544Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Config.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5759598Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets-release.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5762140Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\Caffe2Targets.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5763204Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDAToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5764220Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUDSS.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5775034Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindCUSPARSELT.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5776108Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Caffe2\FindSYCLToolkit.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Caffe2 2025-07-17T08:10:28.5777674Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix 2025-07-17T08:10:28.5781227Z 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-07-17T08:10:28.5786436Z 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-07-17T08:10:28.5792058Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream 2025-07-17T08:10:28.5800056Z 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-07-17T08:10:28.5807281Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\Modules_CUDA_fix\upstream\FindCUDA 2025-07-17T08:10:28.5809617Z 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-07-17T08:10:28.5829786Z 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-07-17T08:10:28.5835173Z 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-07-17T08:10:28.5926946Z 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-07-17T08:10:28.5932784Z 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-07-17T08:10:28.5939617Z 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-07-17T08:10:29.1049465Z 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-07-17T08:10:29.1055863Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Caffe2\public 2025-07-17T08:10:29.1059500Z 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-07-17T08:10:29.1065215Z 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-07-17T08:10:29.1070712Z 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-07-17T08:10:29.1076067Z 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-07-17T08:10:29.1229881Z 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-07-17T08:10:29.1235283Z 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-07-17T08:10:29.1241469Z 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-07-17T08:10:29.1246737Z 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-07-17T08:10:29.1253640Z 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-07-17T08:10:29.1260295Z creating build\bdist.win-amd64\wheel\torch\share\cmake\Torch 2025-07-17T08:10:29.1264181Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfig.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-07-17T08:10:29.1269967Z copying build\lib.win-amd64-cpython-39\torch\share\cmake\Torch\TorchConfigVersion.cmake -> build\bdist.win-amd64\wheel\.\torch\share\cmake\Torch 2025-07-17T08:10:29.1275397Z creating build\bdist.win-amd64\wheel\torch\signal 2025-07-17T08:10:29.1278830Z creating build\bdist.win-amd64\wheel\torch\signal\windows 2025-07-17T08:10:29.1281890Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\windows.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-07-17T08:10:29.1287799Z copying build\lib.win-amd64-cpython-39\torch\signal\windows\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal\windows 2025-07-17T08:10:29.1293236Z copying build\lib.win-amd64-cpython-39\torch\signal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\signal 2025-07-17T08:10:29.1298565Z creating build\bdist.win-amd64\wheel\torch\sparse 2025-07-17T08:10:29.1302419Z copying build\lib.win-amd64-cpython-39\torch\sparse\semi_structured.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-17T08:10:29.1308012Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_conversions.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-17T08:10:29.1313832Z copying build\lib.win-amd64-cpython-39\torch\sparse\_semi_structured_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-17T08:10:29.1450582Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-17T08:10:29.1456891Z copying build\lib.win-amd64-cpython-39\torch\sparse\_triton_ops_meta.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-17T08:10:29.1466616Z copying build\lib.win-amd64-cpython-39\torch\sparse\__init__.py -> build\bdist.win-amd64\wheel\.\torch\sparse 2025-07-17T08:10:29.1472667Z creating build\bdist.win-amd64\wheel\torch\special 2025-07-17T08:10:29.1475874Z copying build\lib.win-amd64-cpython-39\torch\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\special 2025-07-17T08:10:29.1481731Z copying build\lib.win-amd64-cpython-39\torch\storage.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:29.2877555Z creating build\bdist.win-amd64\wheel\torch\test 2025-07-17T08:10:29.2881292Z copying build\lib.win-amd64-cpython-39\torch\test\apply_utils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.2890754Z copying build\lib.win-amd64-cpython-39\torch\test\atest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.2900248Z copying build\lib.win-amd64-cpython-39\torch\test\backend_fallback_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.2908997Z copying build\lib.win-amd64-cpython-39\torch\test\basic.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3089282Z copying build\lib.win-amd64-cpython-39\torch\test\broadcast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3098218Z copying build\lib.win-amd64-cpython-39\torch\test\c10_accumulate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3106785Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ArrayRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3115338Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bfloat16_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3124267Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Bitset_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3133069Z copying build\lib.win-amd64-cpython-39\torch\test\c10_bit_cast_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3141934Z copying build\lib.win-amd64-cpython-39\torch\test\c10_CompileTimeFunctionPointer_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3151130Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3160970Z copying build\lib.win-amd64-cpython-39\torch\test\c10_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3169147Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ConstexprCrc_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3178311Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3187235Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_1_var_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3196450Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_catches_stream.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.3204824Z 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-07-17T08:10:29.8300722Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDAAssertionsTest_from_2_processes.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.8310581Z 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-07-17T08:10:29.8319788Z 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-07-17T08:10:29.8329388Z 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-07-17T08:10:29.8338355Z copying build\lib.win-amd64-cpython-39\torch\test\c10_cuda_CUDATest.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:29.8346954Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeadlockDetection_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3749119Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3758579Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3768523Z copying build\lib.win-amd64-cpython-39\torch\test\c10_DispatchKeySet_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3777899Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Enumerate_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3787278Z copying build\lib.win-amd64-cpython-39\torch\test\c10_error_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3797263Z copying build\lib.win-amd64-cpython-39\torch\test\c10_exception_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3805278Z copying build\lib.win-amd64-cpython-39\torch\test\c10_flags_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3814608Z copying build\lib.win-amd64-cpython-39\torch\test\c10_generic_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3824082Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.3833167Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineDeviceGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9365059Z copying build\lib.win-amd64-cpython-39\torch\test\c10_InlineStreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9375271Z copying build\lib.win-amd64-cpython-39\torch\test\c10_IntrusiveList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9384466Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_benchmark.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9393626Z copying build\lib.win-amd64-cpython-39\torch\test\c10_intrusive_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9407922Z copying build\lib.win-amd64-cpython-39\torch\test\c10_irange_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9416761Z copying build\lib.win-amd64-cpython-39\torch\test\c10_lazy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9426692Z copying build\lib.win-amd64-cpython-39\torch\test\c10_LeftRight_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:30.9434427Z copying build\lib.win-amd64-cpython-39\torch\test\c10_logging_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.0872865Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Metaprogramming_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.5142492Z copying build\lib.win-amd64-cpython-39\torch\test\c10_NetworkFlow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.5152933Z copying build\lib.win-amd64-cpython-39\torch\test\c10_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.5163430Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ordered_preserving_dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.5172729Z copying build\lib.win-amd64-cpython-39\torch\test\c10_registry_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.6448552Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.6457992Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Semaphore_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:32.6466384Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SizesAndStrides_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2265461Z copying build\lib.win-amd64-cpython-39\torch\test\c10_small_vector_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2280339Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ssize_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2289140Z copying build\lib.win-amd64-cpython-39\torch\test\c10_StreamGuard_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2298423Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_util_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2308457Z copying build\lib.win-amd64-cpython-39\torch\test\c10_string_view_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2317195Z copying build\lib.win-amd64-cpython-39\torch\test\c10_SymInt_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2326422Z copying build\lib.win-amd64-cpython-39\torch\test\c10_Synchronized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2336731Z copying build\lib.win-amd64-cpython-39\torch\test\c10_tempfile_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:33.2344793Z copying build\lib.win-amd64-cpython-39\torch\test\c10_ThreadLocal_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2027832Z copying build\lib.win-amd64-cpython-39\torch\test\c10_typeid_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2038153Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeIndex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2046408Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeList_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2055639Z copying build\lib.win-amd64-cpython-39\torch\test\c10_TypeTraits_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2063794Z copying build\lib.win-amd64-cpython-39\torch\test\CppSignature_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2072880Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2081901Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.2092309Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_profiling_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7338251Z copying build\lib.win-amd64-cpython-39\torch\test\cpu_rng_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7350119Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocatorTraceTracker_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7359118Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7368398Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_apply_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7377329Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_atomic_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7387647Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_caching_host_allocator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7397036Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_math_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7406729Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_complex_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7416405Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cub_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7425974Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_cudnn_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7435209Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7444244Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_distributions_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7454857Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7464931Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_exchange_device_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7472622Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_generator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7482285Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:34.7491057Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_integer_divider_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3219220Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_optional_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3228655Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3238173Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3247314Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_stream_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3256803Z copying build\lib.win-amd64-cpython-39\torch\test\cuda_vectorized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3266016Z copying build\lib.win-amd64-cpython-39\torch\test\Dict_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3276359Z copying build\lib.win-amd64-cpython-39\torch\test\Dimname_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3284750Z copying build\lib.win-amd64-cpython-39\torch\test\dlconvertor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3293754Z copying build\lib.win-amd64-cpython-39\torch\test\extension_backend_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3302851Z copying build\lib.win-amd64-cpython-39\torch\test\half_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3312069Z copying build\lib.win-amd64-cpython-39\torch\test\IListRef_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3321834Z copying build\lib.win-amd64-cpython-39\torch\test\inline_container_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3330424Z copying build\lib.win-amd64-cpython-39\torch\test\ivalue_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3341462Z copying build\lib.win-amd64-cpython-39\torch\test\KernelFunction_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3350718Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3363277Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_function_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3374217Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_legacy_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.3387195Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_lambda_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8803766Z copying build\lib.win-amd64-cpython-39\torch\test\kernel_stackbased_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8813683Z copying build\lib.win-amd64-cpython-39\torch\test\lazy_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8824443Z copying build\lib.win-amd64-cpython-39\torch\test\legacy_vmap_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8833459Z copying build\lib.win-amd64-cpython-39\torch\test\List_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8845714Z copying build\lib.win-amd64-cpython-39\torch\test\make_boxed_from_unboxed_functor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8857000Z copying build\lib.win-amd64-cpython-39\torch\test\math_kernel_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8866312Z copying build\lib.win-amd64-cpython-39\torch\test\MaybeOwned_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8876506Z copying build\lib.win-amd64-cpython-39\torch\test\memory_format_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8885780Z copying build\lib.win-amd64-cpython-39\torch\test\memory_overlapping_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8895186Z copying build\lib.win-amd64-cpython-39\torch\test\mobile_memory_cleanup.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8904208Z copying build\lib.win-amd64-cpython-39\torch\test\NamedTensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8913893Z copying build\lib.win-amd64-cpython-39\torch\test\native_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8923304Z copying build\lib.win-amd64-cpython-39\torch\test\operators_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8932397Z copying build\lib.win-amd64-cpython-39\torch\test\operator_name_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8941034Z copying build\lib.win-amd64-cpython-39\torch\test\op_allowlist_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8949950Z copying build\lib.win-amd64-cpython-39\torch\test\op_registration_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8976629Z copying build\lib.win-amd64-cpython-39\torch\test\packedtensoraccessor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8985650Z copying build\lib.win-amd64-cpython-39\torch\test\pow_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.8995757Z copying build\lib.win-amd64-cpython-39\torch\test\quantized_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9005029Z copying build\lib.win-amd64-cpython-39\torch\test\reduce_ops_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9014766Z copying build\lib.win-amd64-cpython-39\torch\test\reportMemoryUsage_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9023797Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9033773Z copying build\lib.win-amd64-cpython-39\torch\test\scalar_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9043751Z copying build\lib.win-amd64-cpython-39\torch\test\StorageUtils_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9053335Z copying build\lib.win-amd64-cpython-39\torch\test\stride_properties_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9062707Z copying build\lib.win-amd64-cpython-39\torch\test\tensor_iterator_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9073361Z copying build\lib.win-amd64-cpython-39\torch\test\test_parallel.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9082306Z copying build\lib.win-amd64-cpython-39\torch\test\thread_init_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9089612Z copying build\lib.win-amd64-cpython-39\torch\test\type_ptr_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9097767Z copying build\lib.win-amd64-cpython-39\torch\test\type_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9107866Z copying build\lib.win-amd64-cpython-39\torch\test\undefined_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9116698Z copying build\lib.win-amd64-cpython-39\torch\test\verify_api_visibility.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9123391Z copying build\lib.win-amd64-cpython-39\torch\test\weakref_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:35.9132553Z copying build\lib.win-amd64-cpython-39\torch\test\wrapdim_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:36.0431975Z copying build\lib.win-amd64-cpython-39\torch\test\xla_tensor_test.exe -> build\bdist.win-amd64\wheel\.\torch\test 2025-07-17T08:10:36.0607584Z creating build\bdist.win-amd64\wheel\torch\testing 2025-07-17T08:10:36.0611799Z copying build\lib.win-amd64-cpython-39\torch\testing\_comparison.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-17T08:10:36.0618988Z copying build\lib.win-amd64-cpython-39\torch\testing\_creation.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-17T08:10:36.0627990Z creating build\bdist.win-amd64\wheel\torch\testing\_internal 2025-07-17T08:10:36.0631926Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autocast_test_lists.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.0637942Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\autograd_function_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.0838579Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\check_kernel_launches.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.5987843Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\codegen 2025-07-17T08:10:36.5991143Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\codegen 2025-07-17T08:10:36.5996689Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_cuda.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6003215Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_device_type.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6010201Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_distributed.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6016746Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dist_composable.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6022230Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_dtype.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6027995Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_fsdp.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6034201Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_jit.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6039653Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_methods_invocations.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6055765Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6061209Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_modules.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6069488Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_mps.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6075115Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_nn.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6082174Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_optimizers.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6088722Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_pruning.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:36.6094237Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantization.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.1595531Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_quantized.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.1602265Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_subclass.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.1607698Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\common_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.1615686Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\composite_compliance.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.1621651Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_op_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.1627514Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\custom_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.1991270Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\data 2025-07-17T08:10:37.1995852Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network1.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-17T08:10:37.2001078Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\network2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-17T08:10:37.2005808Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\data 2025-07-17T08:10:37.2011201Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed 2025-07-17T08:10:37.2014983Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\checkpoint_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-17T08:10:37.2020319Z 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-07-17T08:10:37.2025631Z 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-07-17T08:10:37.2210021Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_test.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-17T08:10:37.2218720Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\distributed_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-17T08:10:37.2224640Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\fake_pg.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-17T08:10:37.2230258Z 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-07-17T08:10:37.2236588Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn 2025-07-17T08:10:37.2240171Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\nn\api 2025-07-17T08:10:37.2244636Z 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-07-17T08:10:37.2250784Z 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-07-17T08:10:37.2254408Z 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-07-17T08:10:37.2259062Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc 2025-07-17T08:10:37.2262521Z 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-07-17T08:10:37.2269245Z 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-07-17T08:10:37.2275339Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\examples 2025-07-17T08:10:37.2279152Z 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-07-17T08:10:37.2284818Z 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-07-17T08:10:37.2290898Z 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-07-17T08:10:37.2295525Z 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-07-17T08:10:37.2522767Z 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-07-17T08:10:37.2528484Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\rpc\jit 2025-07-17T08:10:37.2532038Z 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-07-17T08:10:37.2537443Z 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-07-17T08:10:37.2544098Z 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-07-17T08:10:37.2550613Z 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-07-17T08:10:37.2554190Z 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-07-17T08:10:37.2559684Z 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-07-17T08:10:37.2568573Z 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-07-17T08:10:37.2573733Z 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-07-17T08:10:37.2579166Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\rpc_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-17T08:10:37.2584821Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard 2025-07-17T08:10:37.2587523Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_shard\sharded_tensor 2025-07-17T08:10:37.2592007Z 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-07-17T08:10:37.2597910Z 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-07-17T08:10:37.2603885Z 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-07-17T08:10:37.2609994Z 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-07-17T08:10:37.2615862Z 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-07-17T08:10:37.2621100Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\distributed\_tensor 2025-07-17T08:10:37.2625565Z 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-07-17T08:10:37.2631311Z 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-07-17T08:10:37.2636518Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\distributed\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\distributed 2025-07-17T08:10:37.2640071Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dist_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.2646239Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\dynamo_test_failures.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.2652264Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.2657782Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module2.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.7927183Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\fake_config_module3.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.7932771Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\generated 2025-07-17T08:10:37.7936345Z 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-07-17T08:10:37.7946688Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\generated\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\generated 2025-07-17T08:10:37.7950820Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hop_db.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.7956195Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\hypothesis_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.8390014Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\inductor_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.8416703Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_metaprogramming_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.8417911Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\jit_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.8418938Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:37.8420057Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:38.3878827Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo 2025-07-17T08:10:38.3883605Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\core.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-17T08:10:38.3890461Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\opinfo\definitions 2025-07-17T08:10:38.3893938Z 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-07-17T08:10:38.3899936Z 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-07-17T08:10:38.3907188Z 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-07-17T08:10:38.3913223Z 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-07-17T08:10:38.3918532Z 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-07-17T08:10:38.3924425Z 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-07-17T08:10:38.4202711Z 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-07-17T08:10:38.4208158Z 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-07-17T08:10:38.4213366Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\refs.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-17T08:10:38.4218576Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-17T08:10:38.4224194Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\opinfo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\opinfo 2025-07-17T08:10:38.4229757Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\optests 2025-07-17T08:10:38.4233141Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-17T08:10:38.4238793Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\autograd_registration.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-17T08:10:38.4244638Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-17T08:10:38.4249272Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\generate_tests.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-17T08:10:38.4539133Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\make_fx.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-17T08:10:38.4543815Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\optests\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal\optests 2025-07-17T08:10:38.4549101Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\quantization_torch_package_models.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:38.4554437Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\static_module.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:38.4560581Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\subclasses.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:38.4566382Z creating build\bdist.win-amd64\wheel\torch\testing\_internal\test_module 2025-07-17T08:10:38.4570042Z 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-07-17T08:10:38.4575348Z 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-07-17T08:10:38.4580664Z 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-07-17T08:10:38.4584954Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\torchbind_impls.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:38.4590283Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:38.4886866Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\two_tensor.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:39.0368349Z copying build\lib.win-amd64-cpython-39\torch\testing\_internal\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing\_internal 2025-07-17T08:10:39.0374561Z copying build\lib.win-amd64-cpython-39\torch\testing\_utils.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-17T08:10:39.5539993Z copying build\lib.win-amd64-cpython-39\torch\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\testing 2025-07-17T08:10:39.5546590Z copying build\lib.win-amd64-cpython-39\torch\torch_version.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:39.5551328Z copying build\lib.win-amd64-cpython-39\torch\types.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:39.5557600Z creating build\bdist.win-amd64\wheel\torch\utils 2025-07-17T08:10:39.5561034Z creating build\bdist.win-amd64\wheel\torch\utils\backcompat 2025-07-17T08:10:39.5564224Z copying build\lib.win-amd64-cpython-39\torch\utils\backcompat\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\backcompat 2025-07-17T08:10:39.5569403Z copying build\lib.win-amd64-cpython-39\torch\utils\backend_registration.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:39.5575535Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark 2025-07-17T08:10:39.5578907Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\examples 2025-07-17T08:10:39.5582305Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-17T08:10:39.5587632Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-17T08:10:39.5593750Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\op_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-17T08:10:39.5599056Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\simple_timeit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-17T08:10:39.5604480Z 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-07-17T08:10:39.5778349Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\examples 2025-07-17T08:10:39.5781899Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\op_fuzzers 2025-07-17T08:10:39.5785241Z 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-07-17T08:10:39.5790642Z 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-07-17T08:10:39.5796048Z 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-07-17T08:10:39.5801815Z 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-07-17T08:10:39.6106385Z 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-07-17T08:10:39.6110902Z 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-07-17T08:10:39.6115774Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils 2025-07-17T08:10:39.6119449Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\common.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6125458Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compare.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6130646Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\compile.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6135883Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\cpp_jit.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6141123Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6147244Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\sparse_fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6346193Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timeit_template.cpp -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6351497Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\timer.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6357734Z creating build\bdist.win-amd64\wheel\torch\utils\benchmark\utils\valgrind_wrapper 2025-07-17T08:10:39.6361236Z 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-07-17T08:10:39.6366875Z 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-07-17T08:10:39.6372582Z 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-07-17T08:10:39.6677069Z 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-07-17T08:10:39.6683049Z 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-07-17T08:10:39.6692937Z 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-07-17T08:10:39.6697651Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\_stubs.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6703025Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark\utils 2025-07-17T08:10:39.6707336Z copying build\lib.win-amd64-cpython-39\torch\utils\benchmark\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\benchmark 2025-07-17T08:10:39.6712885Z creating build\bdist.win-amd64\wheel\torch\utils\bottleneck 2025-07-17T08:10:40.1863856Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-07-17T08:10:40.1868458Z copying build\lib.win-amd64-cpython-39\torch\utils\bottleneck\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\bottleneck 2025-07-17T08:10:40.1874292Z copying build\lib.win-amd64-cpython-39\torch\utils\bundled_inputs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:40.1880365Z copying build\lib.win-amd64-cpython-39\torch\utils\checkpoint.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:40.1888795Z copying build\lib.win-amd64-cpython-39\torch\utils\collect_env.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:40.1894974Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_backtrace.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:40.1899254Z copying build\lib.win-amd64-cpython-39\torch\utils\cpp_extension.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:40.1907382Z creating build\bdist.win-amd64\wheel\torch\utils\data 2025-07-17T08:10:40.1910766Z copying build\lib.win-amd64-cpython-39\torch\utils\data\backward_compatibility.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:40.1916121Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataloader.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:40.1923910Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes 2025-07-17T08:10:40.1926553Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\dataframe 2025-07-17T08:10:40.1930551Z 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-07-17T08:10:40.1936283Z 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-07-17T08:10:40.2010069Z 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-07-17T08:10:40.2115019Z 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-07-17T08:10:40.2120370Z 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-07-17T08:10:40.2125294Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-17T08:10:40.2130928Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\datapipe.pyi -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-17T08:10:40.2136992Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\gen_pyi.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-17T08:10:40.2142752Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\iter 2025-07-17T08:10:40.7434220Z 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-07-17T08:10:40.7440529Z 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-07-17T08:10:40.7446243Z 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-07-17T08:10:40.7453420Z 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-07-17T08:10:40.7583087Z 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-07-17T08:10:40.7588551Z 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-07-17T08:10:40.7593786Z 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-07-17T08:10:40.7599509Z 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-07-17T08:10:40.7604994Z 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-07-17T08:10:40.7610003Z 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-07-17T08:10:40.7615698Z 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-07-17T08:10:40.7620873Z 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-07-17T08:10:40.7626691Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\map 2025-07-17T08:10:40.7630088Z 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-07-17T08:10:40.7635467Z 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-07-17T08:10:40.7640537Z 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-07-17T08:10:40.7646442Z 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-07-17T08:10:40.7651128Z 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-07-17T08:10:40.7773330Z 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-07-17T08:10:40.7778543Z creating build\bdist.win-amd64\wheel\torch\utils\data\datapipes\utils 2025-07-17T08:10:40.7781860Z 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-07-17T08:10:40.7787421Z 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-07-17T08:10:40.7792840Z 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-07-17T08:10:40.7798195Z 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-07-17T08:10:40.7803608Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_decorator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-17T08:10:40.7807870Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_hook_iterator.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-17T08:10:40.7862582Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\_typing.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-17T08:10:40.7868136Z copying build\lib.win-amd64-cpython-39\torch\utils\data\datapipes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\datapipes 2025-07-17T08:10:40.7873183Z copying build\lib.win-amd64-cpython-39\torch\utils\data\dataset.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:41.2898594Z copying build\lib.win-amd64-cpython-39\torch\utils\data\distributed.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:41.2903974Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:41.2909391Z copying build\lib.win-amd64-cpython-39\torch\utils\data\graph_settings.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:41.2915187Z copying build\lib.win-amd64-cpython-39\torch\utils\data\sampler.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:41.2921536Z creating build\bdist.win-amd64\wheel\torch\utils\data\_utils 2025-07-17T08:10:41.2924905Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\collate.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-17T08:10:41.2930177Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\fetch.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-17T08:10:41.2935721Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\pin_memory.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-17T08:10:41.2941242Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\signal_handling.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-17T08:10:41.2946583Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\worker.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-17T08:10:41.3052663Z copying build\lib.win-amd64-cpython-39\torch\utils\data\_utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data\_utils 2025-07-17T08:10:41.3057769Z copying build\lib.win-amd64-cpython-39\torch\utils\data\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\data 2025-07-17T08:10:41.3063328Z copying build\lib.win-amd64-cpython-39\torch\utils\deterministic.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3068410Z copying build\lib.win-amd64-cpython-39\torch\utils\dlpack.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3073417Z copying build\lib.win-amd64-cpython-39\torch\utils\file_baton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3078493Z copying build\lib.win-amd64-cpython-39\torch\utils\flop_counter.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3084846Z creating build\bdist.win-amd64\wheel\torch\utils\hipify 2025-07-17T08:10:41.3087946Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\constants.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-17T08:10:41.3093235Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\cuda_to_hip_mappings.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-17T08:10:41.3101953Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\hipify_python.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-17T08:10:41.3107557Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\version.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-17T08:10:41.3219351Z copying build\lib.win-amd64-cpython-39\torch\utils\hipify\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\hipify 2025-07-17T08:10:41.3224532Z copying build\lib.win-amd64-cpython-39\torch\utils\hooks.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3229264Z creating build\bdist.win-amd64\wheel\torch\utils\jit 2025-07-17T08:10:41.3232361Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\log_extract.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-07-17T08:10:41.3237437Z copying build\lib.win-amd64-cpython-39\torch\utils\jit\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\jit 2025-07-17T08:10:41.3241493Z copying build\lib.win-amd64-cpython-39\torch\utils\mkldnn.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3246525Z copying build\lib.win-amd64-cpython-39\torch\utils\mobile_optimizer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3251978Z creating build\bdist.win-amd64\wheel\torch\utils\model_dump 2025-07-17T08:10:41.3255037Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\code.js -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-17T08:10:41.3260500Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\htm.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-17T08:10:41.3265420Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\preact.mjs -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-17T08:10:41.3270547Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\skeleton.html -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-17T08:10:41.3275256Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-17T08:10:41.3532119Z copying build\lib.win-amd64-cpython-39\torch\utils\model_dump\__main__.py -> build\bdist.win-amd64\wheel\.\torch\utils\model_dump 2025-07-17T08:10:41.3537466Z copying build\lib.win-amd64-cpython-39\torch\utils\model_zoo.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.3542632Z copying build\lib.win-amd64-cpython-39\torch\utils\module_tracker.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4515783Z creating build\bdist.win-amd64\wheel\torch\utils\serialization 2025-07-17T08:10:41.4520318Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\config.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-07-17T08:10:41.4524760Z copying build\lib.win-amd64-cpython-39\torch\utils\serialization\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\serialization 2025-07-17T08:10:41.4529977Z copying build\lib.win-amd64-cpython-39\torch\utils\show_pickle.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4535958Z creating build\bdist.win-amd64\wheel\torch\utils\tensorboard 2025-07-17T08:10:41.4539619Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\summary.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4545597Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\writer.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4551884Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_convert_np.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4557357Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_embedding.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4666765Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_onnx_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4671077Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_proto_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4676375Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_pytorch_graph.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4682331Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4687658Z copying build\lib.win-amd64-cpython-39\torch\utils\tensorboard\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\tensorboard 2025-07-17T08:10:41.4692587Z copying build\lib.win-amd64-cpython-39\torch\utils\throughput_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4698390Z creating build\bdist.win-amd64\wheel\torch\utils\viz 2025-07-17T08:10:41.4701611Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\_cycles.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-07-17T08:10:41.4707216Z copying build\lib.win-amd64-cpython-39\torch\utils\viz\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\viz 2025-07-17T08:10:41.4711781Z copying build\lib.win-amd64-cpython-39\torch\utils\weak.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4717306Z copying build\lib.win-amd64-cpython-39\torch\utils\_appending_byte_serializer.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4722977Z copying build\lib.win-amd64-cpython-39\torch\utils\_backport_slots.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4728186Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_module.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4734166Z copying build\lib.win-amd64-cpython-39\torch\utils\_config_typing.pyi -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.4739513Z copying build\lib.win-amd64-cpython-39\torch\utils\_content_store.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9901533Z copying build\lib.win-amd64-cpython-39\torch\utils\_contextlib.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9907113Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_embed_headers.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9912669Z copying build\lib.win-amd64-cpython-39\torch\utils\_cpp_extension_versioner.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9917101Z copying build\lib.win-amd64-cpython-39\torch\utils\_cxx_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9923132Z copying build\lib.win-amd64-cpython-39\torch\utils\_device.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9928435Z copying build\lib.win-amd64-cpython-39\torch\utils\_dtype_abbrs.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9934077Z copying build\lib.win-amd64-cpython-39\torch\utils\_exposed_in.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9939427Z copying build\lib.win-amd64-cpython-39\torch\utils\_filelock.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:41.9945315Z copying build\lib.win-amd64-cpython-39\torch\utils\_foreach_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5001584Z copying build\lib.win-amd64-cpython-39\torch\utils\_functools.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5006799Z copying build\lib.win-amd64-cpython-39\torch\utils\_get_clean_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5012319Z copying build\lib.win-amd64-cpython-39\torch\utils\_helion.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5017308Z copying build\lib.win-amd64-cpython-39\torch\utils\_import_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5022655Z copying build\lib.win-amd64-cpython-39\torch\utils\_mode_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5027771Z copying build\lib.win-amd64-cpython-39\torch\utils\_ordered_set.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5033248Z copying build\lib.win-amd64-cpython-39\torch\utils\_python_dispatch.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5039055Z copying build\lib.win-amd64-cpython-39\torch\utils\_pytree.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5045681Z copying build\lib.win-amd64-cpython-39\torch\utils\_stats.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:42.5051678Z creating build\bdist.win-amd64\wheel\torch\utils\_strobelight 2025-07-17T08:10:42.5055284Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-07-17T08:10:42.5060856Z copying build\lib.win-amd64-cpython-39\torch\utils\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_strobelight 2025-07-17T08:10:42.5065761Z creating build\bdist.win-amd64\wheel\torch\utils\_sympy 2025-07-17T08:10:42.5068898Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\functions.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5075216Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\interp.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5080509Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\numbers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5086793Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\printers.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5093855Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\reference.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5323572Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\singleton_int.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5328968Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\solve.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5334441Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\symbol.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5339580Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\value_ranges.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5345596Z copying build\lib.win-amd64-cpython-39\torch\utils\_sympy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils\_sympy 2025-07-17T08:10:42.5349834Z copying build\lib.win-amd64-cpython-39\torch\utils\_thunk.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:43.0609168Z copying build\lib.win-amd64-cpython-39\torch\utils\_traceback.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:43.0614961Z copying build\lib.win-amd64-cpython-39\torch\utils\_triton.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:43.0620471Z copying build\lib.win-amd64-cpython-39\torch\utils\_typing_utils.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:43.0625697Z copying build\lib.win-amd64-cpython-39\torch\utils\_zip.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:43.0630943Z copying build\lib.win-amd64-cpython-39\torch\utils\__init__.py -> build\bdist.win-amd64\wheel\.\torch\utils 2025-07-17T08:10:43.0636822Z copying build\lib.win-amd64-cpython-39\torch\version.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:43.0642666Z creating build\bdist.win-amd64\wheel\torch\xpu 2025-07-17T08:10:43.0645850Z copying build\lib.win-amd64-cpython-39\torch\xpu\memory.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-17T08:10:43.0651314Z copying build\lib.win-amd64-cpython-39\torch\xpu\random.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-17T08:10:43.0656699Z copying build\lib.win-amd64-cpython-39\torch\xpu\streams.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-17T08:10:43.0662301Z copying build\lib.win-amd64-cpython-39\torch\xpu\_gpu_trace.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-17T08:10:43.0668010Z copying build\lib.win-amd64-cpython-39\torch\xpu\_utils.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-17T08:10:43.0673926Z copying build\lib.win-amd64-cpython-39\torch\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\xpu 2025-07-17T08:10:43.0915006Z copying build\lib.win-amd64-cpython-39\torch\_appdirs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:43.0921287Z creating build\bdist.win-amd64\wheel\torch\_awaits 2025-07-17T08:10:43.0924351Z copying build\lib.win-amd64-cpython-39\torch\_awaits\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_awaits 2025-07-17T08:10:43.0931380Z creating build\bdist.win-amd64\wheel\torch\_C 2025-07-17T08:10:43.0933690Z copying build\lib.win-amd64-cpython-39\torch\_C\_aoti.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.0939598Z copying build\lib.win-amd64-cpython-39\torch\_C\_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.0944846Z copying build\lib.win-amd64-cpython-39\torch\_C\_cpu.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.0949874Z copying build\lib.win-amd64-cpython-39\torch\_C\_cudnn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.0954865Z copying build\lib.win-amd64-cpython-39\torch\_C\_cusparselt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1052517Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1057996Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_c10d.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1063989Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1069765Z copying build\lib.win-amd64-cpython-39\torch\_C\_distributed_rpc_testing.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1075850Z creating build\bdist.win-amd64\wheel\torch\_C\_dynamo 2025-07-17T08:10:43.1079122Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\compiled_autograd.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-17T08:10:43.1084366Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\eval_frame.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-17T08:10:43.1090149Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\guards.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-17T08:10:43.1095929Z copying build\lib.win-amd64-cpython-39\torch\_C\_dynamo\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_dynamo 2025-07-17T08:10:43.1184061Z creating build\bdist.win-amd64\wheel\torch\_C\_export 2025-07-17T08:10:43.1187365Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\pt2_archive_constants.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-07-17T08:10:43.1193558Z copying build\lib.win-amd64-cpython-39\torch\_C\_export\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C\_export 2025-07-17T08:10:43.1197768Z copying build\lib.win-amd64-cpython-39\torch\_C\_functions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1203352Z copying build\lib.win-amd64-cpython-39\torch\_C\_functorch.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1208697Z copying build\lib.win-amd64-cpython-39\torch\_C\_instruction_counter.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1213734Z copying build\lib.win-amd64-cpython-39\torch\_C\_itt.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1218658Z copying build\lib.win-amd64-cpython-39\torch\_C\_jit_tree_views.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1224669Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1230573Z copying build\lib.win-amd64-cpython-39\torch\_C\_lazy_ts_backend.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1235638Z copying build\lib.win-amd64-cpython-39\torch\_C\_monitor.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1240764Z copying build\lib.win-amd64-cpython-39\torch\_C\_nn.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1245874Z copying build\lib.win-amd64-cpython-39\torch\_C\_nvtx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1251175Z copying build\lib.win-amd64-cpython-39\torch\_C\_onnx.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1256309Z copying build\lib.win-amd64-cpython-39\torch\_C\_profiler.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.1261675Z copying build\lib.win-amd64-cpython-39\torch\_C\_VariableFunctions.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.6355539Z copying build\lib.win-amd64-cpython-39\torch\_C\_verbose.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.6360614Z copying build\lib.win-amd64-cpython-39\torch\_C\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C 2025-07-17T08:10:43.6370528Z copying build\lib.win-amd64-cpython-39\torch\_C.cp39-win_amd64.pyd -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:43.6376090Z copying build\lib.win-amd64-cpython-39\torch\_classes.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:43.6381660Z copying build\lib.win-amd64-cpython-39\torch\_compile.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:43.6387743Z creating build\bdist.win-amd64\wheel\torch\_custom_op 2025-07-17T08:10:43.6391577Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-17T08:10:43.6396853Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\impl.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-17T08:10:43.6402742Z copying build\lib.win-amd64-cpython-39\torch\_custom_op\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_custom_op 2025-07-17T08:10:43.6407053Z copying build\lib.win-amd64-cpython-39\torch\_custom_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:43.6412988Z creating build\bdist.win-amd64\wheel\torch\_C_flatbuffer 2025-07-17T08:10:44.1553042Z copying build\lib.win-amd64-cpython-39\torch\_C_flatbuffer\__init__.pyi -> build\bdist.win-amd64\wheel\.\torch\_C_flatbuffer 2025-07-17T08:10:44.1559086Z creating build\bdist.win-amd64\wheel\torch\_decomp 2025-07-17T08:10:44.1562803Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-17T08:10:44.1570865Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_jvp.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-17T08:10:44.1576777Z copying build\lib.win-amd64-cpython-39\torch\_decomp\decompositions_for_rng.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-17T08:10:44.1711994Z copying build\lib.win-amd64-cpython-39\torch\_decomp\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_decomp 2025-07-17T08:10:44.1717868Z creating build\bdist.win-amd64\wheel\torch\_dispatch 2025-07-17T08:10:44.1721094Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\python.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-07-17T08:10:44.1726609Z copying build\lib.win-amd64-cpython-39\torch\_dispatch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dispatch 2025-07-17T08:10:44.1732336Z creating build\bdist.win-amd64\wheel\torch\_dynamo 2025-07-17T08:10:44.6838477Z creating build\bdist.win-amd64\wheel\torch\_dynamo\backends 2025-07-17T08:10:44.6841822Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.6847813Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\cudagraphs.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.6853638Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\debugging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.6859145Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7017364Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\inductor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7022553Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\onnxrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7028138Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\registry.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7033150Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tensorrt.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7037962Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\torchxla.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7043069Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\tvm.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7048404Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\backends\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\backends 2025-07-17T08:10:44.7052841Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:44.7058200Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\bytecode_transformation.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:44.7064855Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\cache_size.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2259123Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\callback.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2264553Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\codegen.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2271436Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\code_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2277052Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\compiled_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2283120Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\comptime.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2288590Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\config.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2294598Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\convert_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2301125Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\create_parameter_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2306844Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\current_scope_id.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2312222Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2318313Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\decorators.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2324800Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\device_interface.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2330553Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2336559Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\eval_frame.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2343339Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\exc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2349516Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\external_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2355456Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\funcname_cache.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.2360992Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_hints.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5007356Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_break_registry.json -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5015476Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_deduplication.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5020521Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_region_tracker.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5026266Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\graph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5031717Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\guards.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5038786Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5044547Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\logging.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5051202Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\metrics_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5056499Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\mutation_guard.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5062672Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\output_graph.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5081031Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\package.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5086822Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\pgo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5093554Z creating build\bdist.win-amd64\wheel\torch\_dynamo\polyfills 2025-07-17T08:10:45.5097445Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\builtins.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5103134Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\functools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5108611Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\fx.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5112976Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\itertools.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5129797Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\loader.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5135603Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\operator.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5141068Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\os.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5146827Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\pytree.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5152550Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\sys.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5158327Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5163622Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\polyfills\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\polyfills 2025-07-17T08:10:45.5169017Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\precompile_context.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5174615Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\profiler.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5180480Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\replay_record.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5186231Z creating build\bdist.win-amd64\wheel\torch\_dynamo\repro 2025-07-17T08:10:45.5189712Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_aot.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-17T08:10:45.5196102Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\after_dynamo.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-17T08:10:45.5201949Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\aoti.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-17T08:10:45.5208346Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\repro\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\repro 2025-07-17T08:10:45.5212961Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\resume_execution.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5218899Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\side_effects.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5225145Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\source.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5231307Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\symbolic_convert.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5238925Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\tensor_version_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5255207Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\testing.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5261123Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5267156Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_dont_skip_tracing_functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5272590Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\test_minifier_common.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5278274Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\trace_rules.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5285455Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\types.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5290869Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\utils.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5298812Z creating build\bdist.win-amd64\wheel\torch\_dynamo\variables 2025-07-17T08:10:45.5301993Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\base.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5308394Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builder.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5316220Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\builtin.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5322637Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\constant.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5328050Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\ctx_manager.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5345234Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\dicts.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5356655Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\distributed.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5362745Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\functions.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5368806Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\higher_order_ops.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5376198Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\iter.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5382016Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lazy.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5387309Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\lists.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5393481Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\misc.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5399625Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\nn_module.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5430173Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\optimizer.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5435839Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\script_object.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5441194Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\sdpa.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5446318Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\tensor.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5452561Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5458824Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\torch_function.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5464586Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\user_defined.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5470886Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\variables\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo\variables 2025-07-17T08:10:45.5476586Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\_trace_wrapped_higher_order_op.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5481851Z copying build\lib.win-amd64-cpython-39\torch\_dynamo\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_dynamo 2025-07-17T08:10:45.5487215Z copying build\lib.win-amd64-cpython-39\torch\_environment.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:45.5492669Z creating build\bdist.win-amd64\wheel\torch\_export 2025-07-17T08:10:45.5496002Z copying build\lib.win-amd64-cpython-39\torch\_export\converter.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.5502765Z creating build\bdist.win-amd64\wheel\torch\_export\db 2025-07-17T08:10:45.5505897Z copying build\lib.win-amd64-cpython-39\torch\_export\db\case.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-17T08:10:45.5511863Z creating build\bdist.win-amd64\wheel\torch\_export\db\examples 2025-07-17T08:10:45.5515270Z 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-07-17T08:10:45.5520685Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5526057Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\class_method.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5542363Z 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-07-17T08:10:45.5547724Z 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-07-17T08:10:45.5553239Z 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-07-17T08:10:45.5558586Z 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-07-17T08:10:45.5563686Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_operands.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5569287Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\cond_predicate.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5574739Z 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-07-17T08:10:45.5580033Z 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-07-17T08:10:45.5585303Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\decorator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5590250Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\dictionary.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5595448Z 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-07-17T08:10:45.5600512Z 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-07-17T08:10:45.5605599Z 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-07-17T08:10:45.5610818Z 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-07-17T08:10:45.5616267Z 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-07-17T08:10:45.5632394Z 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-07-17T08:10:45.5637528Z 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-07-17T08:10:45.5642679Z 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-07-17T08:10:45.5647972Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_contains.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5653130Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\list_unpack.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5658358Z 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-07-17T08:10:45.5663735Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\nested_function.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5669512Z 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-07-17T08:10:45.5689734Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\optional_input.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5695047Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\pytree_flatten.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5700773Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\scalar_output.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5706343Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\specialized_attribute.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5710899Z 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-07-17T08:10:45.5716295Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\static_if.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5721450Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\tensor_setattr.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5726873Z 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-07-17T08:10:45.5732599Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\unsupported_operator.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5748576Z 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-07-17T08:10:45.5753797Z copying build\lib.win-amd64-cpython-39\torch\_export\db\examples\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db\examples 2025-07-17T08:10:45.5759220Z copying build\lib.win-amd64-cpython-39\torch\_export\db\gen_example.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-17T08:10:45.5764366Z copying build\lib.win-amd64-cpython-39\torch\_export\db\logging.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-17T08:10:45.5770548Z copying build\lib.win-amd64-cpython-39\torch\_export\db\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\db 2025-07-17T08:10:45.5775787Z copying build\lib.win-amd64-cpython-39\torch\_export\error.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.5781441Z copying build\lib.win-amd64-cpython-39\torch\_export\non_strict_utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.5787674Z creating build\bdist.win-amd64\wheel\torch\_export\passes 2025-07-17T08:10:45.5801595Z 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-07-17T08:10:45.5807465Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\collect_tracepoints_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-17T08:10:45.5812981Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-17T08:10:45.5829058Z 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-07-17T08:10:45.5834428Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\insert_custom_op_guards.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-17T08:10:45.5839893Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\lift_constants_pass.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-17T08:10:45.5850861Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\remove_runtime_assertions.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-17T08:10:45.5856570Z 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-07-17T08:10:45.5862376Z 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-07-17T08:10:45.5884552Z 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-07-17T08:10:45.5885635Z 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-07-17T08:10:45.5886709Z 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-07-17T08:10:45.5888281Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\_node_metadata_hook.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-17T08:10:45.5892950Z copying build\lib.win-amd64-cpython-39\torch\_export\passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\passes 2025-07-17T08:10:45.5897897Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_base.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.5904029Z creating build\bdist.win-amd64\wheel\torch\_export\pass_infra 2025-07-17T08:10:45.5908671Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\node_metadata.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-17T08:10:45.5912878Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\proxy_value.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-17T08:10:45.5919529Z copying build\lib.win-amd64-cpython-39\torch\_export\pass_infra\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\pass_infra 2025-07-17T08:10:45.5922822Z creating build\bdist.win-amd64\wheel\torch\_export\serde 2025-07-17T08:10:45.5926035Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\dynamic_shapes.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5931588Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\export_schema.thrift -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5937131Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5942499Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema.yaml -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5957895Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\schema_check.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5963719Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\serialize.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5971018Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\union.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5976366Z copying build\lib.win-amd64-cpython-39\torch\_export\serde\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export\serde 2025-07-17T08:10:45.5980626Z copying build\lib.win-amd64-cpython-39\torch\_export\tools.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.5985749Z copying build\lib.win-amd64-cpython-39\torch\_export\utils.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.5991926Z copying build\lib.win-amd64-cpython-39\torch\_export\verifier.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.5997415Z copying build\lib.win-amd64-cpython-39\torch\_export\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.6002738Z copying build\lib.win-amd64-cpython-39\torch\_export\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_export 2025-07-17T08:10:45.6008429Z creating build\bdist.win-amd64\wheel\torch\_functorch 2025-07-17T08:10:45.6011837Z copying build\lib.win-amd64-cpython-39\torch\_functorch\aot_autograd.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6017973Z copying build\lib.win-amd64-cpython-39\torch\_functorch\apis.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6023745Z copying build\lib.win-amd64-cpython-39\torch\_functorch\autograd_function.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6029539Z copying build\lib.win-amd64-cpython-39\torch\_functorch\batch_norm_replacement.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6045502Z copying build\lib.win-amd64-cpython-39\torch\_functorch\benchmark_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6051206Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compilers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6057019Z copying build\lib.win-amd64-cpython-39\torch\_functorch\compile_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6062743Z copying build\lib.win-amd64-cpython-39\torch\_functorch\config.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6068308Z copying build\lib.win-amd64-cpython-39\torch\_functorch\deprecated.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6072776Z copying build\lib.win-amd64-cpython-39\torch\_functorch\eager_transforms.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6080246Z copying build\lib.win-amd64-cpython-39\torch\_functorch\functional_call.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6085791Z copying build\lib.win-amd64-cpython-39\torch\_functorch\fx_minifier.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6091759Z copying build\lib.win-amd64-cpython-39\torch\_functorch\make_functional.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6097519Z copying build\lib.win-amd64-cpython-39\torch\_functorch\partitioners.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6103887Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pyfunctorch.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6109504Z copying build\lib.win-amd64-cpython-39\torch\_functorch\python_key.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6115024Z copying build\lib.win-amd64-cpython-39\torch\_functorch\pytree_hacks.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6120656Z copying build\lib.win-amd64-cpython-39\torch\_functorch\top_operators_github_usage.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6126478Z copying build\lib.win-amd64-cpython-39\torch\_functorch\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6132051Z copying build\lib.win-amd64-cpython-39\torch\_functorch\vmap.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6137988Z creating build\bdist.win-amd64\wheel\torch\_functorch\_activation_checkpointing 2025-07-17T08:10:45.6152653Z 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-07-17T08:10:45.6158258Z 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-07-17T08:10:45.6163656Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-17T08:10:45.6179616Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\knapsack_evaluator.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-17T08:10:45.6186045Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_activation_checkpointing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_activation_checkpointing 2025-07-17T08:10:45.6191268Z creating build\bdist.win-amd64\wheel\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6195521Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\autograd_cache.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6201370Z 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-07-17T08:10:45.6207437Z 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-07-17T08:10:45.6224155Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\frontend_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6230050Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\functional_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6242994Z 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-07-17T08:10:45.6244316Z 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-07-17T08:10:45.6248723Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\logging_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6254600Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\runtime_wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6261494Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\schemas.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6267814Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_parametrization.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6273165Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\subclass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6279398Z 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-07-17T08:10:45.6285619Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\utils.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6291617Z copying build\lib.win-amd64-cpython-39\torch\_functorch\_aot_autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch\_aot_autograd 2025-07-17T08:10:45.6296672Z copying build\lib.win-amd64-cpython-39\torch\_functorch\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_functorch 2025-07-17T08:10:45.6302228Z copying build\lib.win-amd64-cpython-39\torch\_guards.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:45.6308559Z creating build\bdist.win-amd64\wheel\torch\_higher_order_ops 2025-07-17T08:10:45.6312047Z 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-07-17T08:10:45.6317552Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\associative_scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6323332Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\auto_functionalize.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6340031Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\base_hop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6345430Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\cond.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6351382Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\effects.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6356902Z 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-07-17T08:10:45.6362554Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flat_apply.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6368637Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6374708Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\foreach_map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6380631Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\hints_wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6385087Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\invoke_subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6391849Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\map.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6396064Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\out_dtype.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6401605Z 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-07-17T08:10:45.6407993Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\scan.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6413234Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\schema.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6418467Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\strict_mode.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6423769Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\torchbind.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6429453Z 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-07-17T08:10:45.6435793Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\utils.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6441771Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\while_loop.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6457734Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\wrap.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6492537Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\_invoke_quant.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6498629Z copying build\lib.win-amd64-cpython-39\torch\_higher_order_ops\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_higher_order_ops 2025-07-17T08:10:45.6517044Z creating build\bdist.win-amd64\wheel\torch\_inductor 2025-07-17T08:10:45.6543429Z creating build\bdist.win-amd64\wheel\torch\_inductor\analysis 2025-07-17T08:10:45.6546785Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\device_info.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-17T08:10:45.6552398Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\profile_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-17T08:10:45.6558294Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analysis\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\analysis 2025-07-17T08:10:45.6562892Z copying build\lib.win-amd64-cpython-39\torch\_inductor\analyze_preserves_zero_mask.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:45.6568196Z copying build\lib.win-amd64-cpython-39\torch\_inductor\aoti_eager.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:45.6579636Z copying build\lib.win-amd64-cpython-39\torch\_inductor\async_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:45.6585569Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic 2025-07-17T08:10:45.6588832Z creating build\bdist.win-amd64\wheel\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:10:45.6592276Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:10:45.6597795Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MixedMMH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:10:45.6604061Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:10:45.6740111Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_MMRankingH100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:10:45.6746900Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\_PadMMA100.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:10:45.6752700Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\artifacts\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic\artifacts 2025-07-17T08:10:45.6757135Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-17T08:10:45.6762554Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\autoheuristic_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-17T08:10:46.1934889Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learnedheuristic_interface.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-17T08:10:46.1936169Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\learned_heuristic_controller.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-17T08:10:46.1937285Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autoheuristic\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\autoheuristic 2025-07-17T08:10:46.1938252Z copying build\lib.win-amd64-cpython-39\torch\_inductor\autotune_process.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.1941220Z copying build\lib.win-amd64-cpython-39\torch\_inductor\bounds.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.1946726Z copying build\lib.win-amd64-cpython-39\torch\_inductor\choices.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.1952778Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codecache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.1961094Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen 2025-07-17T08:10:46.1964515Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\aoti_hipify_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.1970647Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\aoti_runtime 2025-07-17T08:10:46.1974047Z 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-07-17T08:10:46.1980149Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\block_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.1986026Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2054091Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2062005Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_bmm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2067618Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_flex_attention_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2074716Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2081193Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_grouped_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2087283Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_micro_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2093735Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2099026Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_template_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2104786Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2110578Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_cpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2117859Z 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-07-17T08:10:46.2123832Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_gpu.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2129709Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpp_wrapper_mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2135484Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cpu_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.2141157Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2144451Z 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-07-17T08:10:46.2149806Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_env.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2154988Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2160796Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cuda_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2241681Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2247180Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\cuda\cutlass_lib_extensions 2025-07-17T08:10:46.2249870Z 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-07-17T08:10:46.2256058Z 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-07-17T08:10:46.2262370Z 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-07-17T08:10:46.2397939Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_presets.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2403488Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_python_evt.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2409048Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\cutlass_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2415865Z 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-07-17T08:10:46.2421434Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2433247Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\serialization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2434696Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\cuda 2025-07-17T08:10:46.2439658Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\cuda_combined_scheduling.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7476929Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\debug_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7482628Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\halide.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7487802Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\memory_planning.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7494049Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7499966Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\mps_device_op_overrides.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7505335Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\multi_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7512099Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7515912Z 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-07-17T08:10:46.7521732Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7527216Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7532849Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\ck_tile_universal_gemm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7684406Z 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-07-17T08:10:46.7690268Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\compile_command.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7695773Z 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-07-17T08:10:46.7701614Z 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-07-17T08:10:46.7707048Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7712671Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_template.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7795510Z 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-07-17T08:10:46.7801063Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\rocm_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7805570Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\rocm\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\rocm 2025-07-17T08:10:46.7810074Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7816903Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\simd_kernel_features.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7824179Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\subgraph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7828563Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7836434Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_combo_kernel.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7977972Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_split_scan.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7983471Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\triton_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.7989049Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.8004822Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\wrapper_fxir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.8011098Z creating build\bdist.win-amd64\wheel\torch\_inductor\codegen\xpu 2025-07-17T08:10:46.8014641Z 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-07-17T08:10:46.8020123Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\xpu\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen\xpu 2025-07-17T08:10:46.8024471Z copying build\lib.win-amd64-cpython-39\torch\_inductor\codegen\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\codegen 2025-07-17T08:10:46.8028847Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comms.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8036026Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_analysis.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8041761Z copying build\lib.win-amd64-cpython-39\torch\_inductor\comm_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8047654Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compiler_bisector.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8053367Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8060060Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_async.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8065503Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_ext.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8071462Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_fx_subproc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8077190Z creating build\bdist.win-amd64\wheel\torch\_inductor\compile_worker 2025-07-17T08:10:46.8080564Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\subproc_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-17T08:10:46.8090811Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\tracked_process_pool.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-17T08:10:46.8096250Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-17T08:10:46.8101441Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-17T08:10:46.8115853Z copying build\lib.win-amd64-cpython-39\torch\_inductor\compile_worker\__main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\compile_worker 2025-07-17T08:10:46.8120770Z copying build\lib.win-amd64-cpython-39\torch\_inductor\config.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8126893Z copying build\lib.win-amd64-cpython-39\torch\_inductor\constant_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8132477Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpp_builder.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8148468Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cpu_vec_isa.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8153569Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_trees.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8159915Z copying build\lib.win-amd64-cpython-39\torch\_inductor\cudagraph_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8165496Z copying build\lib.win-amd64-cpython-39\torch\_inductor\custom_graph_pass.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8170805Z copying build\lib.win-amd64-cpython-39\torch\_inductor\debug.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8176758Z copying build\lib.win-amd64-cpython-39\torch\_inductor\decomposition.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8182694Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dependencies.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8188544Z copying build\lib.win-amd64-cpython-39\torch\_inductor\dtype_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8193932Z copying build\lib.win-amd64-cpython-39\torch\_inductor\exc.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8199927Z copying build\lib.win-amd64-cpython-39\torch\_inductor\extern_node_serializer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8214557Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8220207Z copying build\lib.win-amd64-cpython-39\torch\_inductor\freezing_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8225535Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fuzzer.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8231888Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes 2025-07-17T08:10:46.8235182Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\b2b_gemm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8241521Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\binary_folding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8247308Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\bucketing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8253168Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\ddp_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8269180Z 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-07-17T08:10:46.8274448Z 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-07-17T08:10:46.8279877Z 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-07-17T08:10:46.8285389Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\freezing_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8290924Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fsdp.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8296194Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\fuse_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8302084Z 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-07-17T08:10:46.8309455Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\joint_graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8314601Z 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-07-17T08:10:46.8320474Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\misc_patterns.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8325791Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\mkldnn_fusion.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8332237Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\numeric_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8337665Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pad_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8343325Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\post_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8349676Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\pre_grad.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8355389Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\quantization.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8362423Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\reinplace.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8377917Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\replace_random.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8384555Z creating build\bdist.win-amd64\wheel\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:10:46.8388151Z 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-07-17T08:10:46.8393713Z 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-07-17T08:10:46.8399177Z 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-07-17T08:10:46.8414886Z 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-07-17T08:10:46.8421849Z 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-07-17T08:10:46.8427497Z 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-07-17T08:10:46.8432945Z 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-07-17T08:10:46.8438414Z 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-07-17T08:10:46.8443972Z 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-07-17T08:10:46.8449537Z 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-07-17T08:10:46.8455869Z 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-07-17T08:10:46.8462018Z 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-07-17T08:10:46.8467915Z 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-07-17T08:10:46.8474033Z 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-07-17T08:10:46.8479631Z 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-07-17T08:10:46.8485177Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_20.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:10:46.8491130Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_21.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:10:46.8496906Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_22.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:10:46.8502506Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_23.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:10:46.8516990Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\serialized_patterns\_sfdp_pattern_24.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes\serialized_patterns 2025-07-17T08:10:46.8522443Z 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-07-17T08:10:46.8527978Z 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-07-17T08:10:46.8533483Z 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-07-17T08:10:46.8539289Z 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-07-17T08:10:46.8545359Z 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-07-17T08:10:46.8551084Z 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-07-17T08:10:46.8556805Z 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-07-17T08:10:46.8562986Z 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-07-17T08:10:46.8567098Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\split_cat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8574197Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_passes\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\fx_passes 2025-07-17T08:10:46.8578537Z copying build\lib.win-amd64-cpython-39\torch\_inductor\fx_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8583849Z copying build\lib.win-amd64-cpython-39\torch\_inductor\graph.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8590191Z copying build\lib.win-amd64-cpython-39\torch\_inductor\hooks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8595280Z copying build\lib.win-amd64-cpython-39\torch\_inductor\index_propagation.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8600599Z copying build\lib.win-amd64-cpython-39\torch\_inductor\inductor_prims.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8606481Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8615247Z copying build\lib.win-amd64-cpython-39\torch\_inductor\jagged_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8636788Z creating build\bdist.win-amd64\wheel\torch\_inductor\kernel 2025-07-17T08:10:46.8639848Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\bmm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8645159Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\conv.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8650958Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_attention.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8657808Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\flex_decoding.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8664513Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8678554Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_common.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8683981Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_grouped.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8690062Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\mm_plus_mm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8695656Z copying build\lib.win-amd64-cpython-39\torch\_inductor\kernel\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\kernel 2025-07-17T08:10:46.8700721Z copying build\lib.win-amd64-cpython-39\torch\_inductor\loop_body.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8716084Z copying build\lib.win-amd64-cpython-39\torch\_inductor\lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8723961Z copying build\lib.win-amd64-cpython-39\torch\_inductor\memory.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8729659Z copying build\lib.win-amd64-cpython-39\torch\_inductor\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8735781Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_ir.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8741947Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mkldnn_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8748326Z copying build\lib.win-amd64-cpython-39\torch\_inductor\mock_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8754020Z copying build\lib.win-amd64-cpython-39\torch\_inductor\ops_handler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8760080Z copying build\lib.win-amd64-cpython-39\torch\_inductor\optimize_indexing.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8765752Z copying build\lib.win-amd64-cpython-39\torch\_inductor\output_code.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8771973Z creating build\bdist.win-amd64\wheel\torch\_inductor\package 2025-07-17T08:10:46.8775275Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\build_package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-17T08:10:46.8780335Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\package.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-17T08:10:46.8785462Z copying build\lib.win-amd64-cpython-39\torch\_inductor\package\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\package 2025-07-17T08:10:46.8791155Z copying build\lib.win-amd64-cpython-39\torch\_inductor\pattern_matcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8815514Z copying build\lib.win-amd64-cpython-39\torch\_inductor\quantized_lowerings.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8821046Z copying build\lib.win-amd64-cpython-39\torch\_inductor\remote_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8826836Z creating build\bdist.win-amd64\wheel\torch\_inductor\runtime 2025-07-17T08:10:46.8830940Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\autotune_cache.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8836595Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\benchmarking.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8841010Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\cache_dir_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8846128Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\compile_tasks.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8861036Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\coordinate_descent_tuner.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8866307Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\halide_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8872287Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\hints.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8877790Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\runtime_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8883304Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\static_cuda_launcher.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8888971Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_compat.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8899559Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_helpers.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8905904Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\triton_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8912887Z copying build\lib.win-amd64-cpython-39\torch\_inductor\runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor\runtime 2025-07-17T08:10:46.8917682Z copying build\lib.win-amd64-cpython-39\torch\_inductor\scheduler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8925101Z copying build\lib.win-amd64-cpython-39\torch\_inductor\script.ld -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8930372Z copying build\lib.win-amd64-cpython-39\torch\_inductor\select_algorithm.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8937689Z copying build\lib.win-amd64-cpython-39\torch\_inductor\sizevars.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8943609Z copying build\lib.win-amd64-cpython-39\torch\_inductor\standalone_compile.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8949254Z copying build\lib.win-amd64-cpython-39\torch\_inductor\subgraph_lowering.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8954814Z copying build\lib.win-amd64-cpython-39\torch\_inductor\template_heuristics.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.8960812Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_case.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9123034Z copying build\lib.win-amd64-cpython-39\torch\_inductor\test_operators.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9128324Z copying build\lib.win-amd64-cpython-39\torch\_inductor\tiling_utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9134271Z copying build\lib.win-amd64-cpython-39\torch\_inductor\triton_bundler.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9140071Z copying build\lib.win-amd64-cpython-39\torch\_inductor\utils.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9146680Z copying build\lib.win-amd64-cpython-39\torch\_inductor\virtualized.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9152312Z copying build\lib.win-amd64-cpython-39\torch\_inductor\wrapper_benchmark.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9158118Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__autotune_main__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9163385Z copying build\lib.win-amd64-cpython-39\torch\_inductor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_inductor 2025-07-17T08:10:46.9168919Z copying build\lib.win-amd64-cpython-39\torch\_jit_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9175675Z creating build\bdist.win-amd64\wheel\torch\_lazy 2025-07-17T08:10:46.9178840Z copying build\lib.win-amd64-cpython-39\torch\_lazy\closure.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9184067Z copying build\lib.win-amd64-cpython-39\torch\_lazy\computation.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9189185Z copying build\lib.win-amd64-cpython-39\torch\_lazy\config.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9194200Z copying build\lib.win-amd64-cpython-39\torch\_lazy\debug.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9204019Z copying build\lib.win-amd64-cpython-39\torch\_lazy\device_context.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9219196Z copying build\lib.win-amd64-cpython-39\torch\_lazy\extract_compiled_graph.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9224523Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ir_cache.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9229538Z copying build\lib.win-amd64-cpython-39\torch\_lazy\metrics.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9234756Z copying build\lib.win-amd64-cpython-39\torch\_lazy\tensor_factory_functions.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9240026Z copying build\lib.win-amd64-cpython-39\torch\_lazy\ts_backend.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9245708Z copying build\lib.win-amd64-cpython-39\torch\_lazy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_lazy 2025-07-17T08:10:46.9284119Z creating build\bdist.win-amd64\wheel\torch\_library 2025-07-17T08:10:46.9292535Z copying build\lib.win-amd64-cpython-39\torch\_library\autograd.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9298058Z copying build\lib.win-amd64-cpython-39\torch\_library\custom_ops.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9304493Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_class_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9310457Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_impl.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9325941Z copying build\lib.win-amd64-cpython-39\torch\_library\fake_profile.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9331404Z copying build\lib.win-amd64-cpython-39\torch\_library\infer_schema.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9337084Z copying build\lib.win-amd64-cpython-39\torch\_library\simple_registry.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9342815Z copying build\lib.win-amd64-cpython-39\torch\_library\triton.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9356655Z copying build\lib.win-amd64-cpython-39\torch\_library\utils.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9357466Z copying build\lib.win-amd64-cpython-39\torch\_library\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_library 2025-07-17T08:10:46.9360002Z copying build\lib.win-amd64-cpython-39\torch\_linalg_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9365462Z copying build\lib.win-amd64-cpython-39\torch\_lobpcg.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9371751Z creating build\bdist.win-amd64\wheel\torch\_logging 2025-07-17T08:10:46.9375041Z copying build\lib.win-amd64-cpython-39\torch\_logging\scribe.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-17T08:10:46.9380869Z copying build\lib.win-amd64-cpython-39\torch\_logging\structured.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-17T08:10:46.9385534Z copying build\lib.win-amd64-cpython-39\torch\_logging\_internal.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-17T08:10:46.9392034Z copying build\lib.win-amd64-cpython-39\torch\_logging\_registrations.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-17T08:10:46.9407978Z copying build\lib.win-amd64-cpython-39\torch\_logging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_logging 2025-07-17T08:10:46.9411915Z copying build\lib.win-amd64-cpython-39\torch\_lowrank.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9417424Z copying build\lib.win-amd64-cpython-39\torch\_meta_registrations.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9425715Z copying build\lib.win-amd64-cpython-39\torch\_namedtensor_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9431657Z creating build\bdist.win-amd64\wheel\torch\_numpy 2025-07-17T08:10:46.9434847Z copying build\lib.win-amd64-cpython-39\torch\_numpy\fft.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9440093Z copying build\lib.win-amd64-cpython-39\torch\_numpy\linalg.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9445265Z copying build\lib.win-amd64-cpython-39\torch\_numpy\random.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9450691Z creating build\bdist.win-amd64\wheel\torch\_numpy\testing 2025-07-17T08:10:46.9453874Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\utils.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-07-17T08:10:46.9460526Z copying build\lib.win-amd64-cpython-39\torch\_numpy\testing\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy\testing 2025-07-17T08:10:46.9465555Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_binary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9470779Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_casting_dicts.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9486895Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9492198Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_dtypes_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9498055Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9503158Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_funcs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9509642Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_getlimits.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9514955Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ndarray.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9558069Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_normalizations.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9558925Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_reductions_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9559742Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_ufuncs.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9560566Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_unary_ufuncs_impl.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9561366Z copying build\lib.win-amd64-cpython-39\torch\_numpy\_util.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9562124Z copying build\lib.win-amd64-cpython-39\torch\_numpy\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_numpy 2025-07-17T08:10:46.9564233Z copying build\lib.win-amd64-cpython-39\torch\_ops.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9564766Z creating build\bdist.win-amd64\wheel\torch\_prims 2025-07-17T08:10:46.9566241Z copying build\lib.win-amd64-cpython-39\torch\_prims\context.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-17T08:10:46.9571685Z copying build\lib.win-amd64-cpython-39\torch\_prims\debug_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-17T08:10:46.9577038Z copying build\lib.win-amd64-cpython-39\torch\_prims\executor.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-17T08:10:46.9582335Z copying build\lib.win-amd64-cpython-39\torch\_prims\rng_prims.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-17T08:10:46.9587428Z copying build\lib.win-amd64-cpython-39\torch\_prims\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims 2025-07-17T08:10:46.9604326Z creating build\bdist.win-amd64\wheel\torch\_prims_common 2025-07-17T08:10:46.9608611Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\wrappers.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-07-17T08:10:46.9613434Z copying build\lib.win-amd64-cpython-39\torch\_prims_common\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_prims_common 2025-07-17T08:10:46.9619670Z copying build\lib.win-amd64-cpython-39\torch\_python_dispatcher.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9625591Z creating build\bdist.win-amd64\wheel\torch\_refs 2025-07-17T08:10:46.9628648Z copying build\lib.win-amd64-cpython-39\torch\_refs\fft.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-17T08:10:46.9634458Z creating build\bdist.win-amd64\wheel\torch\_refs\linalg 2025-07-17T08:10:46.9637576Z copying build\lib.win-amd64-cpython-39\torch\_refs\linalg\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\linalg 2025-07-17T08:10:46.9642888Z creating build\bdist.win-amd64\wheel\torch\_refs\nn 2025-07-17T08:10:46.9646066Z creating build\bdist.win-amd64\wheel\torch\_refs\nn\functional 2025-07-17T08:10:46.9649281Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\functional\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn\functional 2025-07-17T08:10:46.9655207Z copying build\lib.win-amd64-cpython-39\torch\_refs\nn\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\nn 2025-07-17T08:10:46.9660424Z creating build\bdist.win-amd64\wheel\torch\_refs\special 2025-07-17T08:10:46.9664102Z copying build\lib.win-amd64-cpython-39\torch\_refs\special\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs\special 2025-07-17T08:10:46.9669518Z copying build\lib.win-amd64-cpython-39\torch\_refs\_conversions.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-17T08:10:46.9674696Z copying build\lib.win-amd64-cpython-39\torch\_refs\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_refs 2025-07-17T08:10:46.9758030Z copying build\lib.win-amd64-cpython-39\torch\_size_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9782110Z copying build\lib.win-amd64-cpython-39\torch\_sources.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9787877Z copying build\lib.win-amd64-cpython-39\torch\_storage_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9793351Z copying build\lib.win-amd64-cpython-39\torch\_streambase.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9797855Z creating build\bdist.win-amd64\wheel\torch\_strobelight 2025-07-17T08:10:46.9801392Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\cli_function_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-17T08:10:46.9807132Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\compile_time_profiler.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-17T08:10:46.9812574Z copying build\lib.win-amd64-cpython-39\torch\_strobelight\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_strobelight 2025-07-17T08:10:46.9826472Z creating build\bdist.win-amd64\wheel\torch\_subclasses 2025-07-17T08:10:46.9829822Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_impls.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9835900Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9842864Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\fake_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9858667Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\functional_tensor.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9864701Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\meta_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9871296Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\schema_check_mode.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9876956Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\_fake_tensor_utils.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9882350Z copying build\lib.win-amd64-cpython-39\torch\_subclasses\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_subclasses 2025-07-17T08:10:46.9887342Z copying build\lib.win-amd64-cpython-39\torch\_tensor.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9893838Z copying build\lib.win-amd64-cpython-39\torch\_tensor_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9901291Z copying build\lib.win-amd64-cpython-39\torch\_tensor_str.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9908824Z copying build\lib.win-amd64-cpython-39\torch\_thread_safe_fork.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9912343Z copying build\lib.win-amd64-cpython-39\torch\_torch_docs.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9922111Z copying build\lib.win-amd64-cpython-39\torch\_utils.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9928185Z copying build\lib.win-amd64-cpython-39\torch\_utils_internal.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9944668Z creating build\bdist.win-amd64\wheel\torch\_vendor 2025-07-17T08:10:46.9948887Z creating build\bdist.win-amd64\wheel\torch\_vendor\packaging 2025-07-17T08:10:46.9951300Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\version.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-17T08:10:46.9957563Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\_structures.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-17T08:10:46.9963196Z copying build\lib.win-amd64-cpython-39\torch\_vendor\packaging\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor\packaging 2025-07-17T08:10:46.9968743Z copying build\lib.win-amd64-cpython-39\torch\_vendor\__init__.py -> build\bdist.win-amd64\wheel\.\torch\_vendor 2025-07-17T08:10:46.9973083Z copying build\lib.win-amd64-cpython-39\torch\_VF.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9978312Z copying build\lib.win-amd64-cpython-39\torch\_VF.pyi -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:46.9996467Z copying build\lib.win-amd64-cpython-39\torch\_vmap_internals.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:47.0003030Z copying build\lib.win-amd64-cpython-39\torch\_weights_only_unpickler.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:47.0008897Z copying build\lib.win-amd64-cpython-39\torch\__config__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:47.0014988Z copying build\lib.win-amd64-cpython-39\torch\__future__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:47.0019027Z copying build\lib.win-amd64-cpython-39\torch\__init__.py -> build\bdist.win-amd64\wheel\.\torch 2025-07-17T08:10:47.0038019Z creating build\bdist.win-amd64\wheel\torchgen 2025-07-17T08:10:47.0041188Z creating build\bdist.win-amd64\wheel\torchgen\aoti 2025-07-17T08:10:47.0044339Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\fallback_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-07-17T08:10:47.0049943Z copying build\lib.win-amd64-cpython-39\torchgen\aoti\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\aoti 2025-07-17T08:10:47.0054481Z creating build\bdist.win-amd64\wheel\torchgen\api 2025-07-17T08:10:47.0057546Z copying build\lib.win-amd64-cpython-39\torchgen\api\autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0063262Z copying build\lib.win-amd64-cpython-39\torchgen\api\cpp.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0068707Z copying build\lib.win-amd64-cpython-39\torchgen\api\dispatcher.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0073937Z copying build\lib.win-amd64-cpython-39\torchgen\api\functionalization.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0079413Z copying build\lib.win-amd64-cpython-39\torchgen\api\lazy.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0094710Z copying build\lib.win-amd64-cpython-39\torchgen\api\meta.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0099892Z copying build\lib.win-amd64-cpython-39\torchgen\api\native.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0104783Z copying build\lib.win-amd64-cpython-39\torchgen\api\python.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0110753Z copying build\lib.win-amd64-cpython-39\torchgen\api\structured.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0115929Z copying build\lib.win-amd64-cpython-39\torchgen\api\translate.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0122209Z creating build\bdist.win-amd64\wheel\torchgen\api\types 2025-07-17T08:10:47.0125568Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\signatures.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-17T08:10:47.0130908Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-17T08:10:47.0136329Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\types_base.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-17T08:10:47.0141439Z copying build\lib.win-amd64-cpython-39\torchgen\api\types\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api\types 2025-07-17T08:10:47.0146351Z copying build\lib.win-amd64-cpython-39\torchgen\api\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0151551Z copying build\lib.win-amd64-cpython-39\torchgen\api\unboxing.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0156828Z copying build\lib.win-amd64-cpython-39\torchgen\api\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\api 2025-07-17T08:10:47.0161006Z copying build\lib.win-amd64-cpython-39\torchgen\code_template.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0166019Z copying build\lib.win-amd64-cpython-39\torchgen\context.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0171459Z creating build\bdist.win-amd64\wheel\torchgen\dest 2025-07-17T08:10:47.0174575Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ir.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-17T08:10:47.0180406Z copying build\lib.win-amd64-cpython-39\torchgen\dest\lazy_ts_lowering.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-17T08:10:47.0185609Z copying build\lib.win-amd64-cpython-39\torchgen\dest\native_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-17T08:10:47.0190898Z copying build\lib.win-amd64-cpython-39\torchgen\dest\register_dispatch_key.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-17T08:10:47.0206757Z copying build\lib.win-amd64-cpython-39\torchgen\dest\ufunc.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-17T08:10:47.0212393Z copying build\lib.win-amd64-cpython-39\torchgen\dest\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\dest 2025-07-17T08:10:47.0217587Z copying build\lib.win-amd64-cpython-39\torchgen\gen.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0234085Z copying build\lib.win-amd64-cpython-39\torchgen\gen_aoti_c_shim.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0240064Z copying build\lib.win-amd64-cpython-39\torchgen\gen_backend_stubs.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0246082Z copying build\lib.win-amd64-cpython-39\torchgen\gen_functionalization_type.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0253766Z copying build\lib.win-amd64-cpython-39\torchgen\gen_lazy_tensor.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0259517Z copying build\lib.win-amd64-cpython-39\torchgen\gen_schema_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0265296Z copying build\lib.win-amd64-cpython-39\torchgen\gen_vmap_plumbing.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0271002Z copying build\lib.win-amd64-cpython-39\torchgen\local.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0276371Z copying build\lib.win-amd64-cpython-39\torchgen\model.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0282602Z copying build\lib.win-amd64-cpython-39\torchgen\native_function_generation.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.0289346Z creating build\bdist.win-amd64\wheel\torchgen\operator_versions 2025-07-17T08:10:47.0293937Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-17T08:10:47.0299790Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\gen_mobile_upgraders_constant.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-17T08:10:47.0304002Z copying build\lib.win-amd64-cpython-39\torchgen\operator_versions\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\operator_versions 2025-07-17T08:10:47.0318904Z creating build\bdist.win-amd64\wheel\torchgen\packaged 2025-07-17T08:10:47.0323076Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen 2025-07-17T08:10:47.0326195Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\native 2025-07-17T08:10:47.0329723Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\native_functions.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-07-17T08:10:47.0341318Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\native\tags.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\native 2025-07-17T08:10:47.0347509Z creating build\bdist.win-amd64\wheel\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0351886Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\ATenOpList.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0360786Z 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-07-17T08:10:47.0366267Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\CompositeViewCopyKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0381978Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0387295Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0392805Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyFunctions_inl.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0398538Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0403670Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\DispatchKeyNativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0409208Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\enum_tag.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0415037Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Function.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0420225Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\FunctionalInverses.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0424649Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0430383Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0435847Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0441305Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\LazyNonNativeIr.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0446525Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\MethodOperators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0452451Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0458182Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0463758Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunction.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0478962Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\NativeMetaFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0511030Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operator.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0516553Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0522635Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\Operators.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0527404Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0533713Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RedispatchFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0538482Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterBackendSelect.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0544022Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterCodegenUnboxedKernels.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0549845Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchDefinitions.ini -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0554705Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterDispatchKey.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0751822Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterFunctionalization.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0757796Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegisterSchema.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0763189Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\RegistrationDeclarations.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0768439Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorBody.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0775157Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\TensorMethods.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0780614Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPU.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0785795Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCPUKernel.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0790980Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UfuncCUDA.cu -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0796344Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0812467Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\ATen\templates\UnboxingFunctions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\ATen\templates 2025-07-17T08:10:47.0818122Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd 2025-07-17T08:10:47.0821166Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\BUILD.bazel -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0826362Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\build.bzl -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0831420Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\context.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0836738Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\deprecated.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0842259Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\derivatives.yaml -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0859501Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_annotated_fn_args.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0865185Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0870888Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_autograd_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0877022Z 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-07-17T08:10:47.0882976Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_python_functions.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0888934Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_trace_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0895054Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_factories.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0900445Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_variable_type.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0906922Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\gen_view_funcs.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0912442Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\load_derivatives.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0918649Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\README.md -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.0924558Z creating build\bdist.win-amd64\wheel\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.0928108Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ADInplaceOrViewType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.0933859Z 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-07-17T08:10:47.0939523Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.0954166Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\Functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.0959596Z 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-07-17T08:10:47.0965445Z 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-07-17T08:10:47.0971414Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.0977551Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\python_functions.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.0983110Z 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-07-17T08:10:47.0988730Z 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-07-17T08:10:47.0994185Z 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-07-17T08:10:47.0999534Z 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-07-17T08:10:47.1005062Z 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-07-17T08:10:47.1010511Z 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-07-17T08:10:47.1016722Z 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-07-17T08:10:47.1022201Z 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-07-17T08:10:47.1027880Z 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-07-17T08:10:47.1043684Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\TraceType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.1048979Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.1054404Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\VariableType.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.1059822Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\variable_factories.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.1065426Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.cpp -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.1070415Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\templates\ViewFuncs.h -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd\templates 2025-07-17T08:10:47.1075708Z copying build\lib.win-amd64-cpython-39\torchgen\packaged\autograd\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\packaged\autograd 2025-07-17T08:10:47.1080313Z creating build\bdist.win-amd64\wheel\torchgen\selective_build 2025-07-17T08:10:47.1083591Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\operator.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-17T08:10:47.1088822Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\selector.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-17T08:10:47.1094141Z copying build\lib.win-amd64-cpython-39\torchgen\selective_build\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\selective_build 2025-07-17T08:10:47.1098589Z creating build\bdist.win-amd64\wheel\torchgen\static_runtime 2025-07-17T08:10:47.1101802Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\config.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-17T08:10:47.1107061Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\generator.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-17T08:10:47.1112812Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\gen_static_runtime_ops.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-17T08:10:47.1129286Z copying build\lib.win-amd64-cpython-39\torchgen\static_runtime\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen\static_runtime 2025-07-17T08:10:47.1134237Z copying build\lib.win-amd64-cpython-39\torchgen\utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.1141209Z copying build\lib.win-amd64-cpython-39\torchgen\yaml_utils.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.1145861Z copying build\lib.win-amd64-cpython-39\torchgen\__init__.py -> build\bdist.win-amd64\wheel\.\torchgen 2025-07-17T08:10:47.1161661Z running install_egg_info 2025-07-17T08:10:47.1258749Z running egg_info 2025-07-17T08:10:47.1336204Z creating torch.egg-info 2025-07-17T08:10:47.1338708Z writing torch.egg-info\PKG-INFO 2025-07-17T08:10:47.9065451Z writing dependency_links to torch.egg-info\dependency_links.txt 2025-07-17T08:10:47.9070150Z writing entry points to torch.egg-info\entry_points.txt 2025-07-17T08:10:47.9162314Z writing requirements to torch.egg-info\requires.txt 2025-07-17T08:10:47.9166524Z writing top-level names to torch.egg-info\top_level.txt 2025-07-17T08:10:47.9170005Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-07-17T08:10:49.0744781Z reading manifest file 'torch.egg-info\SOURCES.txt' 2025-07-17T08:10:49.0750412Z reading manifest template 'MANIFEST.in' 2025-07-17T08:10:49.1093308Z warning: no files found matching 'BUILD' 2025-07-17T08:10:49.1097370Z warning: no files found matching '*.BUILD' 2025-07-17T08:10:49.1121376Z warning: no files found matching 'BUCK' 2025-07-17T08:10:49.1131562Z warning: no files found matching '[Mm]akefile.*' 2025-07-17T08:10:49.1141192Z warning: no files found matching '*.[Dd]ockerfile' 2025-07-17T08:10:49.1145719Z warning: no files found matching '[Dd]ockerfile.*' 2025-07-17T08:10:58.3129742Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-07-17T08:10:58.4369965Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-07-17T08:10:58.5601040Z warning: no previously-included files matching '*.so' found anywhere in distribution 2025-07-17T08:10:58.6865045Z warning: no previously-included files matching '*.a' found anywhere in distribution 2025-07-17T08:10:58.8078967Z warning: no previously-included files matching '*.dylib' found anywhere in distribution 2025-07-17T08:10:59.3452750Z no previously-included directories found matching '*\.git' 2025-07-17T08:10:59.5646501Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-07-17T08:10:59.6881593Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-07-17T08:10:59.6882467Z adding license file 'LICENSE' 2025-07-17T08:10:59.6882765Z adding license file 'NOTICE' 2025-07-17T08:11:05.1737011Z writing manifest file 'torch.egg-info\SOURCES.txt' 2025-07-17T08:11:05.2290363Z Copying torch.egg-info to build\bdist.win-amd64\wheel\.\torch-2.9.0a0+gita38f433-py3.9.egg-info 2025-07-17T08:11:05.2406017Z running install_scripts 2025-07-17T08:11:05.2426464Z C:\Jenkins\Miniconda3\lib\site-packages\setuptools\command\bdist_wheel.py:103: RuntimeWarning: Config variable 'Py_DEBUG' is unset, Python ABI tag may be incorrect 2025-07-17T08:11:05.2427494Z if get_flag("Py_DEBUG", hasattr(sys, "gettotalrefcount"), warn=(impl == "cp")): 2025-07-17T08:11:05.3255264Z creating build\bdist.win-amd64\wheel\torch-2.9.0a0+gita38f433.dist-info\WHEEL 2025-07-17T08:11:05.3269133Z creating 'dist\torch-2.9.0a0+gita38f433-cp39-cp39-win_amd64.whl' and adding 'build\bdist.win-amd64\wheel' to it 2025-07-17T08:11:05.3505038Z adding 'functorch/_C.cp39-win_amd64.pyd' 2025-07-17T08:11:05.3529300Z adding 'functorch/__init__.py' 2025-07-17T08:11:05.3533082Z adding 'functorch/_src/__init__.py' 2025-07-17T08:11:05.3536887Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-07-17T08:11:05.3540774Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-07-17T08:11:05.3544118Z adding 'functorch/_src/make_functional/__init__.py' 2025-07-17T08:11:05.3547830Z adding 'functorch/_src/vmap/__init__.py' 2025-07-17T08:11:05.3552197Z adding 'functorch/compile/__init__.py' 2025-07-17T08:11:05.3556670Z adding 'functorch/dim/__init__.py' 2025-07-17T08:11:05.3559984Z adding 'functorch/dim/batch_tensor.py' 2025-07-17T08:11:05.3563656Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-07-17T08:11:05.3567058Z adding 'functorch/dim/dim.py' 2025-07-17T08:11:05.3570595Z adding 'functorch/dim/magic_trace.py' 2025-07-17T08:11:05.3575273Z adding 'functorch/dim/op_properties.py' 2025-07-17T08:11:05.3592510Z adding 'functorch/dim/reference.py' 2025-07-17T08:11:05.3592829Z adding 'functorch/dim/tree_map.py' 2025-07-17T08:11:05.3593975Z adding 'functorch/dim/wrap_type.py' 2025-07-17T08:11:05.3597796Z adding 'functorch/einops/__init__.py' 2025-07-17T08:11:05.3603466Z adding 'functorch/einops/_parsing.py' 2025-07-17T08:11:05.3609719Z adding 'functorch/einops/rearrange.py' 2025-07-17T08:11:05.3612646Z adding 'functorch/experimental/__init__.py' 2025-07-17T08:11:05.3615608Z adding 'functorch/experimental/control_flow.py' 2025-07-17T08:11:05.3618280Z adding 'functorch/experimental/ops.py' 2025-07-17T08:11:05.3627438Z adding 'torch/_C.cp39-win_amd64.pyd' 2025-07-17T08:11:05.3631417Z adding 'torch/_VF.py' 2025-07-17T08:11:05.3855052Z adding 'torch/_VF.pyi' 2025-07-17T08:11:05.3884831Z adding 'torch/__config__.py' 2025-07-17T08:11:05.3888251Z adding 'torch/__future__.py' 2025-07-17T08:11:05.3925667Z adding 'torch/__init__.py' 2025-07-17T08:11:05.3936170Z adding 'torch/_appdirs.py' 2025-07-17T08:11:05.3940247Z adding 'torch/_classes.py' 2025-07-17T08:11:05.3943718Z adding 'torch/_compile.py' 2025-07-17T08:11:05.3949788Z adding 'torch/_custom_ops.py' 2025-07-17T08:11:05.3952667Z adding 'torch/_environment.py' 2025-07-17T08:11:05.3967562Z adding 'torch/_guards.py' 2025-07-17T08:11:05.3990992Z adding 'torch/_jit_internal.py' 2025-07-17T08:11:05.3996406Z adding 'torch/_linalg_utils.py' 2025-07-17T08:11:05.4012521Z adding 'torch/_lobpcg.py' 2025-07-17T08:11:05.4018854Z adding 'torch/_lowrank.py' 2025-07-17T08:11:05.4097457Z adding 'torch/_meta_registrations.py' 2025-07-17T08:11:05.4107404Z adding 'torch/_namedtensor_internals.py' 2025-07-17T08:11:05.4129664Z adding 'torch/_ops.py' 2025-07-17T08:11:05.4148636Z adding 'torch/_python_dispatcher.py' 2025-07-17T08:11:05.4148972Z adding 'torch/_size_docs.py' 2025-07-17T08:11:05.4149220Z adding 'torch/_sources.py' 2025-07-17T08:11:05.4149448Z adding 'torch/_storage_docs.py' 2025-07-17T08:11:05.4150899Z adding 'torch/_streambase.py' 2025-07-17T08:11:05.4175556Z adding 'torch/_tensor.py' 2025-07-17T08:11:05.4220422Z adding 'torch/_tensor_docs.py' 2025-07-17T08:11:05.4233884Z adding 'torch/_tensor_str.py' 2025-07-17T08:11:05.4237472Z adding 'torch/_thread_safe_fork.py' 2025-07-17T08:11:05.4375069Z adding 'torch/_torch_docs.py' 2025-07-17T08:11:05.4403081Z adding 'torch/_utils.py' 2025-07-17T08:11:05.4409763Z adding 'torch/_utils_internal.py' 2025-07-17T08:11:05.4415417Z adding 'torch/_vmap_internals.py' 2025-07-17T08:11:05.4423653Z adding 'torch/_weights_only_unpickler.py' 2025-07-17T08:11:05.4456863Z adding 'torch/functional.py' 2025-07-17T08:11:05.4470722Z adding 'torch/hub.py' 2025-07-17T08:11:05.4493339Z adding 'torch/library.py' 2025-07-17T08:11:05.4521460Z adding 'torch/overrides.py' 2025-07-17T08:11:05.4526848Z adding 'torch/py.typed' 2025-07-17T08:11:05.4531667Z adding 'torch/quasirandom.py' 2025-07-17T08:11:05.4536648Z adding 'torch/random.py' 2025-07-17T08:11:05.4540071Z adding 'torch/return_types.py' 2025-07-17T08:11:05.4544561Z adding 'torch/return_types.pyi' 2025-07-17T08:11:05.4574453Z adding 'torch/serialization.py' 2025-07-17T08:11:05.4591606Z adding 'torch/storage.py' 2025-07-17T08:11:05.4596523Z adding 'torch/torch_version.py' 2025-07-17T08:11:05.4600481Z adding 'torch/types.py' 2025-07-17T08:11:05.4603496Z adding 'torch/version.py' 2025-07-17T08:11:05.4829747Z adding 'torch/_C/_VariableFunctions.pyi' 2025-07-17T08:11:05.4949099Z adding 'torch/_C/__init__.pyi' 2025-07-17T08:11:05.4961678Z adding 'torch/_C/_aoti.pyi' 2025-07-17T08:11:05.4965870Z adding 'torch/_C/_autograd.pyi' 2025-07-17T08:11:05.4969812Z adding 'torch/_C/_cpu.pyi' 2025-07-17T08:11:05.4971999Z adding 'torch/_C/_cudnn.pyi' 2025-07-17T08:11:05.4975569Z adding 'torch/_C/_cusparselt.pyi' 2025-07-17T08:11:05.4977865Z adding 'torch/_C/_distributed_autograd.pyi' 2025-07-17T08:11:05.4986808Z adding 'torch/_C/_distributed_c10d.pyi' 2025-07-17T08:11:05.4990620Z adding 'torch/_C/_distributed_rpc.pyi' 2025-07-17T08:11:05.4994097Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-07-17T08:11:05.4997056Z adding 'torch/_C/_functions.pyi' 2025-07-17T08:11:05.5000635Z adding 'torch/_C/_functorch.pyi' 2025-07-17T08:11:05.5004140Z adding 'torch/_C/_instruction_counter.pyi' 2025-07-17T08:11:05.5006323Z adding 'torch/_C/_itt.pyi' 2025-07-17T08:11:05.5010272Z adding 'torch/_C/_jit_tree_views.pyi' 2025-07-17T08:11:05.5013569Z adding 'torch/_C/_lazy.pyi' 2025-07-17T08:11:05.5016636Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-07-17T08:11:05.5019755Z adding 'torch/_C/_monitor.pyi' 2025-07-17T08:11:05.5023794Z adding 'torch/_C/_nn.pyi' 2025-07-17T08:11:05.5027087Z adding 'torch/_C/_nvtx.pyi' 2025-07-17T08:11:05.5030013Z adding 'torch/_C/_onnx.pyi' 2025-07-17T08:11:05.5034377Z adding 'torch/_C/_profiler.pyi' 2025-07-17T08:11:05.5037948Z adding 'torch/_C/_verbose.pyi' 2025-07-17T08:11:05.5041141Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-07-17T08:11:05.5044341Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-07-17T08:11:05.5047537Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-07-17T08:11:05.5051489Z adding 'torch/_C/_dynamo/guards.pyi' 2025-07-17T08:11:05.5055826Z adding 'torch/_C/_export/__init__.pyi' 2025-07-17T08:11:05.5058427Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-07-17T08:11:05.5062208Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-07-17T08:11:05.5066080Z adding 'torch/_awaits/__init__.py' 2025-07-17T08:11:05.5069712Z adding 'torch/_custom_op/__init__.py' 2025-07-17T08:11:05.5075546Z adding 'torch/_custom_op/autograd.py' 2025-07-17T08:11:05.5085572Z adding 'torch/_custom_op/impl.py' 2025-07-17T08:11:05.5094088Z adding 'torch/_decomp/__init__.py' 2025-07-17T08:11:05.5154688Z adding 'torch/_decomp/decompositions.py' 2025-07-17T08:11:05.5164505Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-07-17T08:11:05.5169999Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-07-17T08:11:05.5174130Z adding 'torch/_dispatch/__init__.py' 2025-07-17T08:11:05.5179793Z adding 'torch/_dispatch/python.py' 2025-07-17T08:11:05.5184696Z adding 'torch/_dynamo/__init__.py' 2025-07-17T08:11:05.5190115Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-07-17T08:11:05.5195842Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-07-17T08:11:05.5217405Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-07-17T08:11:05.5223957Z adding 'torch/_dynamo/cache_size.py' 2025-07-17T08:11:05.5228103Z adding 'torch/_dynamo/callback.py' 2025-07-17T08:11:05.5231545Z adding 'torch/_dynamo/code_context.py' 2025-07-17T08:11:05.5242035Z adding 'torch/_dynamo/codegen.py' 2025-07-17T08:11:05.5263360Z adding 'torch/_dynamo/compiled_autograd.py' 2025-07-17T08:11:05.5270966Z adding 'torch/_dynamo/comptime.py' 2025-07-17T08:11:05.5284509Z adding 'torch/_dynamo/config.py' 2025-07-17T08:11:05.5307608Z adding 'torch/_dynamo/convert_frame.py' 2025-07-17T08:11:05.5312503Z adding 'torch/_dynamo/create_parameter_op.py' 2025-07-17T08:11:05.5315730Z adding 'torch/_dynamo/current_scope_id.py' 2025-07-17T08:11:05.5329102Z adding 'torch/_dynamo/debug_utils.py' 2025-07-17T08:11:05.5342172Z adding 'torch/_dynamo/decorators.py' 2025-07-17T08:11:05.5349264Z adding 'torch/_dynamo/device_interface.py' 2025-07-17T08:11:05.5353114Z adding 'torch/_dynamo/distributed.py' 2025-07-17T08:11:05.5386262Z adding 'torch/_dynamo/eval_frame.py' 2025-07-17T08:11:05.5397226Z adding 'torch/_dynamo/exc.py' 2025-07-17T08:11:05.5402580Z adding 'torch/_dynamo/external_utils.py' 2025-07-17T08:11:05.5406409Z adding 'torch/_dynamo/funcname_cache.py' 2025-07-17T08:11:05.5409819Z adding 'torch/_dynamo/graph_break_hints.py' 2025-07-17T08:11:05.5434447Z adding 'torch/_dynamo/graph_break_registry.json' 2025-07-17T08:11:05.5444468Z adding 'torch/_dynamo/graph_deduplication.py' 2025-07-17T08:11:05.5453039Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-07-17T08:11:05.5456887Z adding 'torch/_dynamo/graph_utils.py' 2025-07-17T08:11:05.5508258Z adding 'torch/_dynamo/guards.py' 2025-07-17T08:11:05.5513992Z adding 'torch/_dynamo/hooks.py' 2025-07-17T08:11:05.5517430Z adding 'torch/_dynamo/logging.py' 2025-07-17T08:11:05.5522177Z adding 'torch/_dynamo/metrics_context.py' 2025-07-17T08:11:05.5526619Z adding 'torch/_dynamo/mutation_guard.py' 2025-07-17T08:11:05.5577445Z adding 'torch/_dynamo/output_graph.py' 2025-07-17T08:11:05.5590021Z adding 'torch/_dynamo/package.py' 2025-07-17T08:11:05.5602877Z adding 'torch/_dynamo/pgo.py' 2025-07-17T08:11:05.5608408Z adding 'torch/_dynamo/precompile_context.py' 2025-07-17T08:11:05.5613020Z adding 'torch/_dynamo/profiler.py' 2025-07-17T08:11:05.5616911Z adding 'torch/_dynamo/replay_record.py' 2025-07-17T08:11:05.5625667Z adding 'torch/_dynamo/resume_execution.py' 2025-07-17T08:11:05.5642688Z adding 'torch/_dynamo/side_effects.py' 2025-07-17T08:11:05.5653280Z adding 'torch/_dynamo/source.py' 2025-07-17T08:11:05.5710430Z adding 'torch/_dynamo/symbolic_convert.py' 2025-07-17T08:11:05.5717628Z adding 'torch/_dynamo/tensor_version_op.py' 2025-07-17T08:11:05.5722223Z adding 'torch/_dynamo/test_case.py' 2025-07-17T08:11:05.5725576Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-07-17T08:11:05.5731607Z adding 'torch/_dynamo/test_minifier_common.py' 2025-07-17T08:11:05.5738939Z adding 'torch/_dynamo/testing.py' 2025-07-17T08:11:05.5777091Z adding 'torch/_dynamo/trace_rules.py' 2025-07-17T08:11:05.5784591Z adding 'torch/_dynamo/types.py' 2025-07-17T08:11:05.5844696Z adding 'torch/_dynamo/utils.py' 2025-07-17T08:11:05.5852273Z adding 'torch/_dynamo/backends/__init__.py' 2025-07-17T08:11:05.5856390Z adding 'torch/_dynamo/backends/common.py' 2025-07-17T08:11:05.5861599Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-07-17T08:11:05.5868461Z adding 'torch/_dynamo/backends/debugging.py' 2025-07-17T08:11:05.5879716Z adding 'torch/_dynamo/backends/distributed.py' 2025-07-17T08:11:05.5883485Z adding 'torch/_dynamo/backends/inductor.py' 2025-07-17T08:11:05.5886791Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-07-17T08:11:05.5891137Z adding 'torch/_dynamo/backends/registry.py' 2025-07-17T08:11:05.5894222Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-07-17T08:11:05.5897369Z adding 'torch/_dynamo/backends/torchxla.py' 2025-07-17T08:11:05.5902060Z adding 'torch/_dynamo/backends/tvm.py' 2025-07-17T08:11:05.5908888Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-07-17T08:11:05.5912402Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-07-17T08:11:05.5915631Z adding 'torch/_dynamo/polyfills/functools.py' 2025-07-17T08:11:05.5918784Z adding 'torch/_dynamo/polyfills/fx.py' 2025-07-17T08:11:05.5922972Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-07-17T08:11:05.5926319Z adding 'torch/_dynamo/polyfills/loader.py' 2025-07-17T08:11:05.5929877Z adding 'torch/_dynamo/polyfills/operator.py' 2025-07-17T08:11:05.5933202Z adding 'torch/_dynamo/polyfills/os.py' 2025-07-17T08:11:05.5939229Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-07-17T08:11:05.5943075Z adding 'torch/_dynamo/polyfills/sys.py' 2025-07-17T08:11:05.5946274Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-07-17T08:11:05.5949688Z adding 'torch/_dynamo/repro/__init__.py' 2025-07-17T08:11:05.5963922Z adding 'torch/_dynamo/repro/after_aot.py' 2025-07-17T08:11:05.5972980Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-07-17T08:11:05.5982196Z adding 'torch/_dynamo/repro/aoti.py' 2025-07-17T08:11:05.5988154Z adding 'torch/_dynamo/variables/__init__.py' 2025-07-17T08:11:05.5997972Z adding 'torch/_dynamo/variables/base.py' 2025-07-17T08:11:05.6051820Z adding 'torch/_dynamo/variables/builder.py' 2025-07-17T08:11:05.6086157Z adding 'torch/_dynamo/variables/builtin.py' 2025-07-17T08:11:05.6095174Z adding 'torch/_dynamo/variables/constant.py' 2025-07-17T08:11:05.6112368Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-07-17T08:11:05.6127183Z adding 'torch/_dynamo/variables/dicts.py' 2025-07-17T08:11:05.6144579Z adding 'torch/_dynamo/variables/distributed.py' 2025-07-17T08:11:05.6168639Z adding 'torch/_dynamo/variables/functions.py' 2025-07-17T08:11:05.6209730Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-07-17T08:11:05.6220238Z adding 'torch/_dynamo/variables/iter.py' 2025-07-17T08:11:05.6225473Z adding 'torch/_dynamo/variables/lazy.py' 2025-07-17T08:11:05.6239537Z adding 'torch/_dynamo/variables/lists.py' 2025-07-17T08:11:05.6264106Z adding 'torch/_dynamo/variables/misc.py' 2025-07-17T08:11:05.6282396Z adding 'torch/_dynamo/variables/nn_module.py' 2025-07-17T08:11:05.6290859Z adding 'torch/_dynamo/variables/optimizer.py' 2025-07-17T08:11:05.6295079Z adding 'torch/_dynamo/variables/script_object.py' 2025-07-17T08:11:05.6298659Z adding 'torch/_dynamo/variables/sdpa.py' 2025-07-17T08:11:05.6320837Z adding 'torch/_dynamo/variables/tensor.py' 2025-07-17T08:11:05.6346684Z adding 'torch/_dynamo/variables/torch.py' 2025-07-17T08:11:05.6359098Z adding 'torch/_dynamo/variables/torch_function.py' 2025-07-17T08:11:05.6384154Z adding 'torch/_dynamo/variables/user_defined.py' 2025-07-17T08:11:05.6391555Z adding 'torch/_export/__init__.py' 2025-07-17T08:11:05.6414490Z adding 'torch/_export/converter.py' 2025-07-17T08:11:05.6419486Z adding 'torch/_export/error.py' 2025-07-17T08:11:05.6435081Z adding 'torch/_export/non_strict_utils.py' 2025-07-17T08:11:05.6442823Z adding 'torch/_export/pass_base.py' 2025-07-17T08:11:05.6447430Z adding 'torch/_export/tools.py' 2025-07-17T08:11:05.6469369Z adding 'torch/_export/utils.py' 2025-07-17T08:11:05.6477663Z adding 'torch/_export/verifier.py' 2025-07-17T08:11:05.6483381Z adding 'torch/_export/wrappers.py' 2025-07-17T08:11:05.6487524Z adding 'torch/_export/db/__init__.py' 2025-07-17T08:11:05.6491842Z adding 'torch/_export/db/case.py' 2025-07-17T08:11:05.6495007Z adding 'torch/_export/db/gen_example.py' 2025-07-17T08:11:05.6498451Z adding 'torch/_export/db/logging.py' 2025-07-17T08:11:05.6503529Z adding 'torch/_export/db/examples/__init__.py' 2025-07-17T08:11:05.6506635Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-07-17T08:11:05.6509800Z adding 'torch/_export/db/examples/autograd_function.py' 2025-07-17T08:11:05.6513326Z adding 'torch/_export/db/examples/class_method.py' 2025-07-17T08:11:05.6516156Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-07-17T08:11:05.6541963Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-07-17T08:11:05.6542474Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-07-17T08:11:05.6542945Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-07-17T08:11:05.6550929Z adding 'torch/_export/db/examples/cond_operands.py' 2025-07-17T08:11:05.6551319Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-07-17T08:11:05.6551751Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-07-17T08:11:05.6552337Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-07-17T08:11:05.6554292Z adding 'torch/_export/db/examples/decorator.py' 2025-07-17T08:11:05.6554646Z adding 'torch/_export/db/examples/dictionary.py' 2025-07-17T08:11:05.6555023Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-07-17T08:11:05.6555454Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-07-17T08:11:05.6555890Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-07-17T08:11:05.6558741Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-07-17T08:11:05.6561836Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-07-17T08:11:05.6564774Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-07-17T08:11:05.6567920Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-07-17T08:11:05.6571022Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-07-17T08:11:05.6574096Z adding 'torch/_export/db/examples/list_contains.py' 2025-07-17T08:11:05.6577613Z adding 'torch/_export/db/examples/list_unpack.py' 2025-07-17T08:11:05.6580208Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-07-17T08:11:05.6583174Z adding 'torch/_export/db/examples/nested_function.py' 2025-07-17T08:11:05.6586129Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-07-17T08:11:05.6589045Z adding 'torch/_export/db/examples/optional_input.py' 2025-07-17T08:11:05.6591973Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-07-17T08:11:05.6595170Z adding 'torch/_export/db/examples/scalar_output.py' 2025-07-17T08:11:05.6598181Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-07-17T08:11:05.6601090Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-07-17T08:11:05.6603990Z adding 'torch/_export/db/examples/static_if.py' 2025-07-17T08:11:05.6606830Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-07-17T08:11:05.6609767Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-07-17T08:11:05.6612795Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-07-17T08:11:05.6615662Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-07-17T08:11:05.6619180Z adding 'torch/_export/pass_infra/__init__.py' 2025-07-17T08:11:05.6622161Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-07-17T08:11:05.6625429Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-07-17T08:11:05.6629170Z adding 'torch/_export/passes/__init__.py' 2025-07-17T08:11:05.6632655Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-07-17T08:11:05.6637919Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-07-17T08:11:05.6642296Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-07-17T08:11:05.6648012Z adding 'torch/_export/passes/constant_folding.py' 2025-07-17T08:11:05.6652155Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-07-17T08:11:05.6683834Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-07-17T08:11:05.6690944Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-07-17T08:11:05.6695020Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-07-17T08:11:05.6699552Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-07-17T08:11:05.6708623Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-07-17T08:11:05.6712975Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-07-17T08:11:05.6716590Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-07-17T08:11:05.6721113Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-07-17T08:11:05.6725025Z adding 'torch/_export/serde/__init__.py' 2025-07-17T08:11:05.6730491Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-07-17T08:11:05.6735365Z adding 'torch/_export/serde/export_schema.thrift' 2025-07-17T08:11:05.6741792Z adding 'torch/_export/serde/schema.py' 2025-07-17T08:11:05.6746836Z adding 'torch/_export/serde/schema.yaml' 2025-07-17T08:11:05.6755501Z adding 'torch/_export/serde/schema_check.py' 2025-07-17T08:11:05.6801924Z adding 'torch/_export/serde/serialize.py' 2025-07-17T08:11:05.6808971Z adding 'torch/_export/serde/union.py' 2025-07-17T08:11:05.6813348Z adding 'torch/_functorch/__init__.py' 2025-07-17T08:11:05.6836912Z adding 'torch/_functorch/aot_autograd.py' 2025-07-17T08:11:05.6845906Z adding 'torch/_functorch/apis.py' 2025-07-17T08:11:05.6857491Z adding 'torch/_functorch/autograd_function.py' 2025-07-17T08:11:05.6861957Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-07-17T08:11:05.6865819Z adding 'torch/_functorch/benchmark_utils.py' 2025-07-17T08:11:05.6871008Z adding 'torch/_functorch/compile_utils.py' 2025-07-17T08:11:05.6877590Z adding 'torch/_functorch/compilers.py' 2025-07-17T08:11:05.6885883Z adding 'torch/_functorch/config.py' 2025-07-17T08:11:05.6890636Z adding 'torch/_functorch/deprecated.py' 2025-07-17T08:11:05.6915447Z adding 'torch/_functorch/eager_transforms.py' 2025-07-17T08:11:05.6922639Z adding 'torch/_functorch/functional_call.py' 2025-07-17T08:11:05.6930953Z adding 'torch/_functorch/fx_minifier.py' 2025-07-17T08:11:05.6939106Z adding 'torch/_functorch/make_functional.py' 2025-07-17T08:11:05.6979049Z adding 'torch/_functorch/partitioners.py' 2025-07-17T08:11:05.6986828Z adding 'torch/_functorch/pyfunctorch.py' 2025-07-17T08:11:05.6990249Z adding 'torch/_functorch/python_key.py' 2025-07-17T08:11:05.6993773Z adding 'torch/_functorch/pytree_hacks.py' 2025-07-17T08:11:05.7001689Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-07-17T08:11:05.7005447Z adding 'torch/_functorch/utils.py' 2025-07-17T08:11:05.7013613Z adding 'torch/_functorch/vmap.py' 2025-07-17T08:11:05.7018076Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-07-17T08:11:05.7022624Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-07-17T08:11:05.7028383Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-07-17T08:11:05.7031890Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-07-17T08:11:05.7037543Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-07-17T08:11:05.7041905Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-07-17T08:11:05.7063470Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-07-17T08:11:05.7081167Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-07-17T08:11:05.7088009Z adding 'torch/_functorch/_aot_autograd/dispatch_and_compile_graph.py' 2025-07-17T08:11:05.7094038Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-07-17T08:11:05.7103105Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-07-17T08:11:05.7110938Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-07-17T08:11:05.7140617Z adding 'torch/_functorch/_aot_autograd/jit_compile_runtime_wrappers.py' 2025-07-17T08:11:05.7146406Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-07-17T08:11:05.7185783Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-07-17T08:11:05.7208183Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-07-17T08:11:05.7213387Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-07-17T08:11:05.7221332Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-07-17T08:11:05.7261329Z adding 'torch/_functorch/_aot_autograd/traced_function_transforms.py' 2025-07-17T08:11:05.7261785Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-07-17T08:11:05.7262115Z adding 'torch/_higher_order_ops/__init__.py' 2025-07-17T08:11:05.7262462Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-07-17T08:11:05.7267285Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-07-17T08:11:05.7274628Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-07-17T08:11:05.7287719Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-07-17T08:11:05.7294358Z adding 'torch/_higher_order_ops/base_hop.py' 2025-07-17T08:11:05.7306004Z adding 'torch/_higher_order_ops/cond.py' 2025-07-17T08:11:05.7312136Z adding 'torch/_higher_order_ops/effects.py' 2025-07-17T08:11:05.7316745Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-07-17T08:11:05.7320878Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-07-17T08:11:05.7333182Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-07-17T08:11:05.7337242Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-07-17T08:11:05.7341188Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-07-17T08:11:05.7351040Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-07-17T08:11:05.7356875Z adding 'torch/_higher_order_ops/map.py' 2025-07-17T08:11:05.7361339Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-07-17T08:11:05.7364928Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-07-17T08:11:05.7379723Z adding 'torch/_higher_order_ops/scan.py' 2025-07-17T08:11:05.7386249Z adding 'torch/_higher_order_ops/schema.py' 2025-07-17T08:11:05.7390190Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-07-17T08:11:05.7395121Z adding 'torch/_higher_order_ops/torchbind.py' 2025-07-17T08:11:05.7422030Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-07-17T08:11:05.7440590Z adding 'torch/_higher_order_ops/utils.py' 2025-07-17T08:11:05.7448841Z adding 'torch/_higher_order_ops/while_loop.py' 2025-07-17T08:11:05.7454870Z adding 'torch/_higher_order_ops/wrap.py' 2025-07-17T08:11:05.7460260Z adding 'torch/_inductor/__autotune_main__.py' 2025-07-17T08:11:05.7466411Z adding 'torch/_inductor/__init__.py' 2025-07-17T08:11:05.7470927Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-07-17T08:11:05.7476116Z adding 'torch/_inductor/aoti_eager.py' 2025-07-17T08:11:05.7485228Z adding 'torch/_inductor/async_compile.py' 2025-07-17T08:11:05.7495818Z adding 'torch/_inductor/autotune_process.py' 2025-07-17T08:11:05.7501830Z adding 'torch/_inductor/bounds.py' 2025-07-17T08:11:05.7508411Z adding 'torch/_inductor/choices.py' 2025-07-17T08:11:05.7563036Z adding 'torch/_inductor/codecache.py' 2025-07-17T08:11:05.7571695Z adding 'torch/_inductor/comm_analysis.py' 2025-07-17T08:11:05.7577457Z adding 'torch/_inductor/comm_lowering.py' 2025-07-17T08:11:05.7595870Z adding 'torch/_inductor/comms.py' 2025-07-17T08:11:05.7634136Z adding 'torch/_inductor/compile_fx.py' 2025-07-17T08:11:05.7642491Z adding 'torch/_inductor/compile_fx_async.py' 2025-07-17T08:11:05.7651693Z adding 'torch/_inductor/compile_fx_ext.py' 2025-07-17T08:11:05.7656006Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-07-17T08:11:05.7663997Z adding 'torch/_inductor/compiler_bisector.py' 2025-07-17T08:11:05.7696485Z adding 'torch/_inductor/config.py' 2025-07-17T08:11:05.7704954Z adding 'torch/_inductor/constant_folding.py' 2025-07-17T08:11:05.7746220Z adding 'torch/_inductor/cpp_builder.py' 2025-07-17T08:11:05.7746548Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-07-17T08:11:05.7779183Z adding 'torch/_inductor/cudagraph_trees.py' 2025-07-17T08:11:05.7787804Z adding 'torch/_inductor/cudagraph_utils.py' 2025-07-17T08:11:05.7791966Z adding 'torch/_inductor/custom_graph_pass.py' 2025-07-17T08:11:05.7804939Z adding 'torch/_inductor/debug.py' 2025-07-17T08:11:05.7818820Z adding 'torch/_inductor/decomposition.py' 2025-07-17T08:11:05.7831042Z adding 'torch/_inductor/dependencies.py' 2025-07-17T08:11:05.7836922Z adding 'torch/_inductor/dtype_propagation.py' 2025-07-17T08:11:05.7841063Z adding 'torch/_inductor/exc.py' 2025-07-17T08:11:05.7844309Z adding 'torch/_inductor/extern_node_serializer.py' 2025-07-17T08:11:05.7849696Z adding 'torch/_inductor/freezing.py' 2025-07-17T08:11:05.7853239Z adding 'torch/_inductor/freezing_utils.py' 2025-07-17T08:11:05.7866269Z adding 'torch/_inductor/fuzzer.py' 2025-07-17T08:11:05.7873179Z adding 'torch/_inductor/fx_utils.py' 2025-07-17T08:11:05.7910207Z adding 'torch/_inductor/graph.py' 2025-07-17T08:11:05.7915626Z adding 'torch/_inductor/hooks.py' 2025-07-17T08:11:05.7921562Z adding 'torch/_inductor/index_propagation.py' 2025-07-17T08:11:05.7926430Z adding 'torch/_inductor/inductor_prims.py' 2025-07-17T08:11:05.8029734Z adding 'torch/_inductor/ir.py' 2025-07-17T08:11:05.8041805Z adding 'torch/_inductor/jagged_lowerings.py' 2025-07-17T08:11:05.8050984Z adding 'torch/_inductor/loop_body.py' 2025-07-17T08:11:05.8130879Z adding 'torch/_inductor/lowering.py' 2025-07-17T08:11:05.8146297Z adding 'torch/_inductor/memory.py' 2025-07-17T08:11:05.8153521Z adding 'torch/_inductor/metrics.py' 2025-07-17T08:11:05.8165624Z adding 'torch/_inductor/mkldnn_ir.py' 2025-07-17T08:11:05.8179754Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-07-17T08:11:05.8185670Z adding 'torch/_inductor/mock_cache.py' 2025-07-17T08:11:05.8197073Z adding 'torch/_inductor/ops_handler.py' 2025-07-17T08:11:05.8201926Z adding 'torch/_inductor/optimize_indexing.py' 2025-07-17T08:11:05.8212642Z adding 'torch/_inductor/output_code.py' 2025-07-17T08:11:05.8242640Z adding 'torch/_inductor/pattern_matcher.py' 2025-07-17T08:11:05.8248717Z adding 'torch/_inductor/quantized_lowerings.py' 2025-07-17T08:11:05.8255088Z adding 'torch/_inductor/remote_cache.py' 2025-07-17T08:11:05.8323869Z adding 'torch/_inductor/scheduler.py' 2025-07-17T08:11:05.8331227Z adding 'torch/_inductor/script.ld' 2025-07-17T08:11:05.8373013Z adding 'torch/_inductor/select_algorithm.py' 2025-07-17T08:11:05.8389826Z adding 'torch/_inductor/sizevars.py' 2025-07-17T08:11:05.8396038Z adding 'torch/_inductor/standalone_compile.py' 2025-07-17T08:11:05.8400950Z adding 'torch/_inductor/subgraph_lowering.py' 2025-07-17T08:11:05.8411990Z adding 'torch/_inductor/template_heuristics.py' 2025-07-17T08:11:05.8416203Z adding 'torch/_inductor/test_case.py' 2025-07-17T08:11:05.8419328Z adding 'torch/_inductor/test_operators.py' 2025-07-17T08:11:05.8429527Z adding 'torch/_inductor/tiling_utils.py' 2025-07-17T08:11:05.8436499Z adding 'torch/_inductor/triton_bundler.py' 2025-07-17T08:11:05.8480522Z adding 'torch/_inductor/utils.py' 2025-07-17T08:11:05.8489109Z adding 'torch/_inductor/virtualized.py' 2025-07-17T08:11:05.8496512Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-07-17T08:11:05.8500530Z adding 'torch/_inductor/analysis/__init__.py' 2025-07-17T08:11:05.8504627Z adding 'torch/_inductor/analysis/device_info.py' 2025-07-17T08:11:05.8513932Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-07-17T08:11:05.8518146Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-07-17T08:11:05.8523694Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-07-17T08:11:05.8529240Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-07-17T08:11:05.8533568Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-07-17T08:11:05.8537149Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-07-17T08:11:05.8545002Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-07-17T08:11:05.8553301Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-07-17T08:11:05.8558267Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-07-17T08:11:05.8562682Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-07-17T08:11:05.8566760Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-07-17T08:11:05.8570120Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-07-17T08:11:05.8574084Z adding 'torch/_inductor/codegen/__init__.py' 2025-07-17T08:11:05.8577319Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-07-17T08:11:05.8582043Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-07-17T08:11:05.8613818Z adding 'torch/_inductor/codegen/common.py' 2025-07-17T08:11:05.8733124Z adding 'torch/_inductor/codegen/cpp.py' 2025-07-17T08:11:05.8746393Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-07-17T08:11:05.8763705Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-07-17T08:11:05.8789872Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-07-17T08:11:05.8800008Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-07-17T08:11:05.8820650Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-07-17T08:11:05.8826618Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-07-17T08:11:05.8835088Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-07-17T08:11:05.8845617Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-07-17T08:11:05.8884023Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-07-17T08:11:05.8899107Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-07-17T08:11:05.8910245Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-07-17T08:11:05.8914753Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-07-17T08:11:05.8918186Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-07-17T08:11:05.8921750Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-07-17T08:11:05.8926883Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-07-17T08:11:05.8948519Z adding 'torch/_inductor/codegen/halide.py' 2025-07-17T08:11:05.8961068Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-07-17T08:11:05.8976346Z adding 'torch/_inductor/codegen/mps.py' 2025-07-17T08:11:05.8981709Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-07-17T08:11:05.8992837Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-07-17T08:11:05.9036735Z adding 'torch/_inductor/codegen/simd.py' 2025-07-17T08:11:05.9049933Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-07-17T08:11:05.9056408Z adding 'torch/_inductor/codegen/subgraph.py' 2025-07-17T08:11:05.9132263Z adding 'torch/_inductor/codegen/triton.py' 2025-07-17T08:11:05.9171390Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-07-17T08:11:05.9178584Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-07-17T08:11:05.9185484Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-07-17T08:11:05.9235389Z adding 'torch/_inductor/codegen/wrapper.py' 2025-07-17T08:11:05.9249269Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-07-17T08:11:05.9256721Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-07-17T08:11:05.9260888Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-07-17T08:11:05.9266607Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-07-17T08:11:05.9270074Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-07-17T08:11:05.9279074Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-07-17T08:11:05.9285097Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-07-17T08:11:05.9289197Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-07-17T08:11:05.9292998Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-07-17T08:11:05.9298825Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-07-17T08:11:05.9308920Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-07-17T08:11:05.9316106Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-07-17T08:11:05.9408807Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-07-17T08:11:05.9418277Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-07-17T08:11:05.9424131Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-07-17T08:11:05.9429298Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-07-17T08:11:05.9436072Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-07-17T08:11:05.9441624Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-07-17T08:11:05.9449881Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-07-17T08:11:05.9454312Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-07-17T08:11:05.9457772Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-07-17T08:11:05.9469984Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-07-17T08:11:05.9483515Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-07-17T08:11:05.9488381Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-07-17T08:11:05.9492660Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-07-17T08:11:05.9496667Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-07-17T08:11:05.9502203Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-07-17T08:11:05.9507054Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-07-17T08:11:05.9510491Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-07-17T08:11:05.9513454Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-07-17T08:11:05.9517004Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-07-17T08:11:05.9520274Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-07-17T08:11:05.9523854Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-07-17T08:11:05.9528680Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-07-17T08:11:05.9535257Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-07-17T08:11:05.9539476Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-07-17T08:11:05.9542750Z adding 'torch/_inductor/compile_worker/utils.py' 2025-07-17T08:11:05.9546581Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-07-17T08:11:05.9555562Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-07-17T08:11:05.9562833Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-07-17T08:11:05.9573142Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-07-17T08:11:05.9582328Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-07-17T08:11:05.9586913Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-07-17T08:11:05.9590448Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-07-17T08:11:05.9595898Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-07-17T08:11:05.9601254Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-07-17T08:11:05.9604483Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-07-17T08:11:05.9614628Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-07-17T08:11:05.9633347Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-07-17T08:11:05.9652968Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-07-17T08:11:05.9709830Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-07-17T08:11:05.9715790Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-07-17T08:11:05.9734861Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-07-17T08:11:05.9740716Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-07-17T08:11:05.9752127Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-07-17T08:11:05.9776508Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-07-17T08:11:05.9789370Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-07-17T08:11:05.9825888Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-07-17T08:11:05.9840578Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-07-17T08:11:05.9845130Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-07-17T08:11:05.9880197Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-07-17T08:11:05.9887653Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-07-17T08:11:05.9891828Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-07-17T08:11:05.9896331Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-07-17T08:11:05.9900840Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-07-17T08:11:05.9905503Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-07-17T08:11:05.9909570Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-07-17T08:11:05.9914297Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-07-17T08:11:05.9919027Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-07-17T08:11:05.9925370Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-07-17T08:11:05.9930978Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-07-17T08:11:05.9936998Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-07-17T08:11:05.9941787Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-07-17T08:11:05.9946129Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-07-17T08:11:05.9950907Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-07-17T08:11:05.9955739Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-07-17T08:11:05.9961405Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-07-17T08:11:05.9966506Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-07-17T08:11:05.9970767Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-07-17T08:11:05.9975222Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-07-17T08:11:05.9979548Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-07-17T08:11:05.9983715Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-07-17T08:11:05.9988276Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-07-17T08:11:05.9992898Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-07-17T08:11:05.9997401Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-07-17T08:11:06.0002293Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-07-17T08:11:06.0005970Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-07-17T08:11:06.0009193Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-07-17T08:11:06.0012483Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-07-17T08:11:06.0016205Z adding 'torch/_inductor/kernel/__init__.py' 2025-07-17T08:11:06.0021480Z adding 'torch/_inductor/kernel/bmm.py' 2025-07-17T08:11:06.0029566Z adding 'torch/_inductor/kernel/conv.py' 2025-07-17T08:11:06.0062844Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-07-17T08:11:06.0074508Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-07-17T08:11:06.0089171Z adding 'torch/_inductor/kernel/mm.py' 2025-07-17T08:11:06.0095556Z adding 'torch/_inductor/kernel/mm_common.py' 2025-07-17T08:11:06.0103903Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-07-17T08:11:06.0108666Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-07-17T08:11:06.0112350Z adding 'torch/_inductor/package/__init__.py' 2025-07-17T08:11:06.0115213Z adding 'torch/_inductor/package/build_package.py' 2025-07-17T08:11:06.0119091Z adding 'torch/_inductor/package/package.py' 2025-07-17T08:11:06.0122927Z adding 'torch/_inductor/runtime/__init__.py' 2025-07-17T08:11:06.0131838Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-07-17T08:11:06.0137861Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-07-17T08:11:06.0141468Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-07-17T08:11:06.0144898Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-07-17T08:11:06.0150158Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-07-17T08:11:06.0154177Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-07-17T08:11:06.0158820Z adding 'torch/_inductor/runtime/hints.py' 2025-07-17T08:11:06.0165772Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-07-17T08:11:06.0211187Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-07-17T08:11:06.0217023Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-07-17T08:11:06.0229501Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-07-17T08:11:06.0275219Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-07-17T08:11:06.0282242Z adding 'torch/_lazy/__init__.py' 2025-07-17T08:11:06.0286469Z adding 'torch/_lazy/closure.py' 2025-07-17T08:11:06.0289711Z adding 'torch/_lazy/computation.py' 2025-07-17T08:11:06.0294145Z adding 'torch/_lazy/config.py' 2025-07-17T08:11:06.0297133Z adding 'torch/_lazy/debug.py' 2025-07-17T08:11:06.0300114Z adding 'torch/_lazy/device_context.py' 2025-07-17T08:11:06.0305194Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-07-17T08:11:06.0309250Z adding 'torch/_lazy/ir_cache.py' 2025-07-17T08:11:06.0312240Z adding 'torch/_lazy/metrics.py' 2025-07-17T08:11:06.0315387Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-07-17T08:11:06.0318187Z adding 'torch/_lazy/ts_backend.py' 2025-07-17T08:11:06.0321821Z adding 'torch/_library/__init__.py' 2025-07-17T08:11:06.0326529Z adding 'torch/_library/autograd.py' 2025-07-17T08:11:06.0339594Z adding 'torch/_library/custom_ops.py' 2025-07-17T08:11:06.0346527Z adding 'torch/_library/fake_class_registry.py' 2025-07-17T08:11:06.0351758Z adding 'torch/_library/fake_impl.py' 2025-07-17T08:11:06.0357722Z adding 'torch/_library/fake_profile.py' 2025-07-17T08:11:06.0363928Z adding 'torch/_library/infer_schema.py' 2025-07-17T08:11:06.0367652Z adding 'torch/_library/simple_registry.py' 2025-07-17T08:11:06.0373595Z adding 'torch/_library/triton.py' 2025-07-17T08:11:06.0381530Z adding 'torch/_library/utils.py' 2025-07-17T08:11:06.0385827Z adding 'torch/_logging/__init__.py' 2025-07-17T08:11:06.0404014Z adding 'torch/_logging/_internal.py' 2025-07-17T08:11:06.0409694Z adding 'torch/_logging/_registrations.py' 2025-07-17T08:11:06.0413484Z adding 'torch/_logging/scribe.py' 2025-07-17T08:11:06.0417261Z adding 'torch/_logging/structured.py' 2025-07-17T08:11:06.0421153Z adding 'torch/_numpy/__init__.py' 2025-07-17T08:11:06.0424472Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-07-17T08:11:06.0430430Z adding 'torch/_numpy/_casting_dicts.py' 2025-07-17T08:11:06.0436983Z adding 'torch/_numpy/_dtypes.py' 2025-07-17T08:11:06.0441692Z adding 'torch/_numpy/_dtypes_impl.py' 2025-07-17T08:11:06.0445227Z adding 'torch/_numpy/_funcs.py' 2025-07-17T08:11:06.0468439Z adding 'torch/_numpy/_funcs_impl.py' 2025-07-17T08:11:06.0472469Z adding 'torch/_numpy/_getlimits.py' 2025-07-17T08:11:06.0482252Z adding 'torch/_numpy/_ndarray.py' 2025-07-17T08:11:06.0487635Z adding 'torch/_numpy/_normalizations.py' 2025-07-17T08:11:06.0493207Z adding 'torch/_numpy/_reductions_impl.py' 2025-07-17T08:11:06.0498087Z adding 'torch/_numpy/_ufuncs.py' 2025-07-17T08:11:06.0501507Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-07-17T08:11:06.0506387Z adding 'torch/_numpy/_util.py' 2025-07-17T08:11:06.0509811Z adding 'torch/_numpy/fft.py' 2025-07-17T08:11:06.0513840Z adding 'torch/_numpy/linalg.py' 2025-07-17T08:11:06.0517920Z adding 'torch/_numpy/random.py' 2025-07-17T08:11:06.0521664Z adding 'torch/_numpy/testing/__init__.py' 2025-07-17T08:11:06.0547980Z adding 'torch/_numpy/testing/utils.py' 2025-07-17T08:11:06.0579301Z adding 'torch/_prims/__init__.py' 2025-07-17T08:11:06.0586884Z adding 'torch/_prims/context.py' 2025-07-17T08:11:06.0591898Z adding 'torch/_prims/debug_prims.py' 2025-07-17T08:11:06.0596702Z adding 'torch/_prims/executor.py' 2025-07-17T08:11:06.0603658Z adding 'torch/_prims/rng_prims.py' 2025-07-17T08:11:06.0637657Z adding 'torch/_prims_common/__init__.py' 2025-07-17T08:11:06.0649322Z adding 'torch/_prims_common/wrappers.py' 2025-07-17T08:11:06.0761889Z adding 'torch/_refs/__init__.py' 2025-07-17T08:11:06.0771871Z adding 'torch/_refs/_conversions.py' 2025-07-17T08:11:06.0778237Z adding 'torch/_refs/fft.py' 2025-07-17T08:11:06.0785004Z adding 'torch/_refs/linalg/__init__.py' 2025-07-17T08:11:06.0788779Z adding 'torch/_refs/nn/__init__.py' 2025-07-17T08:11:06.0802692Z adding 'torch/_refs/nn/functional/__init__.py' 2025-07-17T08:11:06.0808468Z adding 'torch/_refs/special/__init__.py' 2025-07-17T08:11:06.0813353Z adding 'torch/_strobelight/__init__.py' 2025-07-17T08:11:06.0818702Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-07-17T08:11:06.0823930Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-07-17T08:11:06.0827966Z adding 'torch/_subclasses/__init__.py' 2025-07-17T08:11:06.0832925Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-07-17T08:11:06.0846569Z adding 'torch/_subclasses/fake_impls.py' 2025-07-17T08:11:06.0896141Z adding 'torch/_subclasses/fake_tensor.py' 2025-07-17T08:11:06.0904293Z adding 'torch/_subclasses/fake_utils.py' 2025-07-17T08:11:06.0916487Z adding 'torch/_subclasses/functional_tensor.py' 2025-07-17T08:11:06.0946416Z adding 'torch/_subclasses/meta_utils.py' 2025-07-17T08:11:06.0953123Z adding 'torch/_subclasses/schema_check_mode.py' 2025-07-17T08:11:06.0956794Z adding 'torch/_vendor/__init__.py' 2025-07-17T08:11:06.0960445Z adding 'torch/_vendor/packaging/__init__.py' 2025-07-17T08:11:06.0963520Z adding 'torch/_vendor/packaging/_structures.py' 2025-07-17T08:11:06.0971610Z adding 'torch/_vendor/packaging/version.py' 2025-07-17T08:11:06.0977684Z adding 'torch/accelerator/__init__.py' 2025-07-17T08:11:06.0981029Z adding 'torch/accelerator/_utils.py' 2025-07-17T08:11:06.0985246Z adding 'torch/accelerator/memory.py' 2025-07-17T08:11:06.0989159Z adding 'torch/amp/__init__.py' 2025-07-17T08:11:06.0997541Z adding 'torch/amp/autocast_mode.py' 2025-07-17T08:11:06.1009522Z adding 'torch/amp/grad_scaler.py' 2025-07-17T08:11:06.1014102Z adding 'torch/ao/__init__.py' 2025-07-17T08:11:06.1018008Z adding 'torch/ao/nn/__init__.py' 2025-07-17T08:11:06.1021916Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-07-17T08:11:06.1025664Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-07-17T08:11:06.1029584Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-07-17T08:11:06.1033363Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-07-17T08:11:06.1037046Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-07-17T08:11:06.1045477Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-17T08:11:06.1050831Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-17T08:11:06.1054500Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-17T08:11:06.1058188Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-07-17T08:11:06.1061693Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-17T08:11:06.1065193Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-17T08:11:06.1069586Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-17T08:11:06.1073888Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-07-17T08:11:06.1077293Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-17T08:11:06.1081010Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-07-17T08:11:06.1085122Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-17T08:11:06.1089314Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-17T08:11:06.1093131Z adding 'torch/ao/nn/qat/__init__.py' 2025-07-17T08:11:06.1096673Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-07-17T08:11:06.1100410Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-07-17T08:11:06.1103671Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-07-17T08:11:06.1107304Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-07-17T08:11:06.1111740Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-07-17T08:11:06.1116202Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-07-17T08:11:06.1120033Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-07-17T08:11:06.1123660Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-07-17T08:11:06.1127153Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-07-17T08:11:06.1135157Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-07-17T08:11:06.1143423Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-07-17T08:11:06.1147827Z adding 'torch/ao/nn/quantized/__init__.py' 2025-07-17T08:11:06.1156015Z adding 'torch/ao/nn/quantized/functional.py' 2025-07-17T08:11:06.1160263Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-07-17T08:11:06.1163926Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-07-17T08:11:06.1168763Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-07-17T08:11:06.1175484Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-07-17T08:11:06.1189360Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-07-17T08:11:06.1195400Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-07-17T08:11:06.1200564Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-07-17T08:11:06.1212295Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-07-17T08:11:06.1216881Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-07-17T08:11:06.1220831Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-07-17T08:11:06.1226319Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-07-17T08:11:06.1230865Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-07-17T08:11:06.1236960Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-07-17T08:11:06.1241246Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-07-17T08:11:06.1244824Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-07-17T08:11:06.1248923Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-07-17T08:11:06.1252818Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-07-17T08:11:06.1256471Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-07-17T08:11:06.1260961Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-07-17T08:11:06.1264820Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-07-17T08:11:06.1274076Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-07-17T08:11:06.1278474Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-07-17T08:11:06.1283916Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-07-17T08:11:06.1287830Z adding 'torch/ao/nn/sparse/__init__.py' 2025-07-17T08:11:06.1291511Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-07-17T08:11:06.1296158Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-07-17T08:11:06.1299693Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-07-17T08:11:06.1303335Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-07-17T08:11:06.1307708Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-07-17T08:11:06.1311564Z adding 'torch/ao/ns/__init__.py' 2025-07-17T08:11:06.1319533Z adding 'torch/ao/ns/_numeric_suite.py' 2025-07-17T08:11:06.1333340Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-07-17T08:11:06.1337975Z adding 'torch/ao/ns/fx/__init__.py' 2025-07-17T08:11:06.1345684Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-07-17T08:11:06.1360115Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-07-17T08:11:06.1367130Z adding 'torch/ao/ns/fx/mappings.py' 2025-07-17T08:11:06.1384764Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-07-17T08:11:06.1389462Z adding 'torch/ao/ns/fx/ns_types.py' 2025-07-17T08:11:06.1394117Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-07-17T08:11:06.1399400Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-07-17T08:11:06.1407087Z adding 'torch/ao/ns/fx/utils.py' 2025-07-17T08:11:06.1412604Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-07-17T08:11:06.1416740Z adding 'torch/ao/pruning/__init__.py' 2025-07-17T08:11:06.1419706Z adding 'torch/ao/pruning/_mappings.py' 2025-07-17T08:11:06.1423302Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-07-17T08:11:06.1426849Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-07-17T08:11:06.1434584Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-07-17T08:11:06.1438540Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-07-17T08:11:06.1444036Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-07-17T08:11:06.1447913Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-07-17T08:11:06.1454468Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-07-17T08:11:06.1459541Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-07-17T08:11:06.1463880Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-07-17T08:11:06.1467670Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-07-17T08:11:06.1472674Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-07-17T08:11:06.1476083Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-07-17T08:11:06.1480181Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-07-17T08:11:06.1484919Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-07-17T08:11:06.1487949Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-07-17T08:11:06.1493280Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-07-17T08:11:06.1497007Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-07-17T08:11:06.1500511Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-07-17T08:11:06.1503880Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-07-17T08:11:06.1510770Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-07-17T08:11:06.1514499Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-07-17T08:11:06.1518098Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-07-17T08:11:06.1522499Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-07-17T08:11:06.1526451Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-07-17T08:11:06.1530085Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-07-17T08:11:06.1533835Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-07-17T08:11:06.1540044Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-07-17T08:11:06.1544014Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-07-17T08:11:06.1548134Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-07-17T08:11:06.1553295Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-07-17T08:11:06.1558935Z adding 'torch/ao/quantization/__init__.py' 2025-07-17T08:11:06.1563357Z adding 'torch/ao/quantization/_correct_bias.py' 2025-07-17T08:11:06.1568738Z adding 'torch/ao/quantization/_equalize.py' 2025-07-17T08:11:06.1574968Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-07-17T08:11:06.1582756Z adding 'torch/ao/quantization/fake_quantize.py' 2025-07-17T08:11:06.1587822Z adding 'torch/ao/quantization/fuse_modules.py' 2025-07-17T08:11:06.1592866Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-07-17T08:11:06.1618512Z adding 'torch/ao/quantization/observer.py' 2025-07-17T08:11:06.1628522Z adding 'torch/ao/quantization/qconfig.py' 2025-07-17T08:11:06.1634978Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-07-17T08:11:06.1638466Z adding 'torch/ao/quantization/quant_type.py' 2025-07-17T08:11:06.1643908Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-07-17T08:11:06.1655271Z adding 'torch/ao/quantization/quantize.py' 2025-07-17T08:11:06.1665657Z adding 'torch/ao/quantization/quantize_fx.py' 2025-07-17T08:11:06.1675728Z adding 'torch/ao/quantization/quantize_jit.py' 2025-07-17T08:11:06.1720859Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-07-17T08:11:06.1725821Z adding 'torch/ao/quantization/stubs.py' 2025-07-17T08:11:06.1740138Z adding 'torch/ao/quantization/utils.py' 2025-07-17T08:11:06.1746597Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-07-17T08:11:06.1755637Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-07-17T08:11:06.1760318Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-07-17T08:11:06.1772248Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-07-17T08:11:06.1778483Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-07-17T08:11:06.1782452Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-07-17T08:11:06.1786481Z adding 'torch/ao/quantization/backend_config/native.py' 2025-07-17T08:11:06.1789608Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-07-17T08:11:06.1795278Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-07-17T08:11:06.1799467Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-07-17T08:11:06.1804434Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-07-17T08:11:06.1810213Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-07-17T08:11:06.1814093Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-07-17T08:11:06.1819427Z adding 'torch/ao/quantization/fx/__init__.py' 2025-07-17T08:11:06.1829717Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-07-17T08:11:06.1843916Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-07-17T08:11:06.1862499Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-07-17T08:11:06.1882990Z adding 'torch/ao/quantization/fx/convert.py' 2025-07-17T08:11:06.1890712Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-07-17T08:11:06.1895861Z adding 'torch/ao/quantization/fx/fuse.py' 2025-07-17T08:11:06.1899971Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-07-17T08:11:06.1904100Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-07-17T08:11:06.1907295Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-07-17T08:11:06.1910274Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-07-17T08:11:06.1915270Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-07-17T08:11:06.1920438Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-07-17T08:11:06.1924431Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-07-17T08:11:06.1955214Z adding 'torch/ao/quantization/fx/prepare.py' 2025-07-17T08:11:06.1966260Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-07-17T08:11:06.1972523Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-07-17T08:11:06.1977323Z adding 'torch/ao/quantization/fx/tracer.py' 2025-07-17T08:11:06.1994316Z adding 'torch/ao/quantization/fx/utils.py' 2025-07-17T08:11:06.2000264Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-07-17T08:11:06.2027478Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-07-17T08:11:06.2043357Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-07-17T08:11:06.2051110Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-07-17T08:11:06.2066250Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-07-17T08:11:06.2072049Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-07-17T08:11:06.2084895Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-07-17T08:11:06.2094247Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-07-17T08:11:06.2098255Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-07-17T08:11:06.2104617Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-07-17T08:11:06.2110547Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-07-17T08:11:06.2115441Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-07-17T08:11:06.2121839Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-07-17T08:11:06.2133788Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-07-17T08:11:06.2150036Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-07-17T08:11:06.2162229Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-07-17T08:11:06.2191804Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-07-17T08:11:06.2201733Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-07-17T08:11:06.2207561Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-07-17T08:11:06.2214596Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-07-17T08:11:06.2218493Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-07-17T08:11:06.2224868Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-07-17T08:11:06.2230460Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-07-17T08:11:06.2251783Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-07-17T08:11:06.2259657Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-07-17T08:11:06.2272767Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-07-17T08:11:06.2277532Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-07-17T08:11:06.2288155Z adding 'torch/autograd/__init__.py' 2025-07-17T08:11:06.2292736Z adding 'torch/autograd/anomaly_mode.py' 2025-07-17T08:11:06.2298858Z adding 'torch/autograd/forward_ad.py' 2025-07-17T08:11:06.2311124Z adding 'torch/autograd/function.py' 2025-07-17T08:11:06.2328174Z adding 'torch/autograd/functional.py' 2025-07-17T08:11:06.2334973Z adding 'torch/autograd/grad_mode.py' 2025-07-17T08:11:06.2367179Z adding 'torch/autograd/gradcheck.py' 2025-07-17T08:11:06.2380796Z adding 'torch/autograd/graph.py' 2025-07-17T08:11:06.2398134Z adding 'torch/autograd/profiler.py' 2025-07-17T08:11:06.2404655Z adding 'torch/autograd/profiler_legacy.py' 2025-07-17T08:11:06.2420494Z adding 'torch/autograd/profiler_util.py' 2025-07-17T08:11:06.2424451Z adding 'torch/autograd/variable.py' 2025-07-17T08:11:06.2427955Z adding 'torch/autograd/_functions/__init__.py' 2025-07-17T08:11:06.2431216Z adding 'torch/autograd/_functions/tensor.py' 2025-07-17T08:11:06.2434564Z adding 'torch/autograd/_functions/utils.py' 2025-07-17T08:11:06.2439163Z adding 'torch/backends/__init__.py' 2025-07-17T08:11:06.2442733Z adding 'torch/backends/_coreml/__init__.py' 2025-07-17T08:11:06.2446625Z adding 'torch/backends/_coreml/preprocess.py' 2025-07-17T08:11:06.2450300Z adding 'torch/backends/_nnapi/__init__.py' 2025-07-17T08:11:06.2454690Z adding 'torch/backends/_nnapi/prepare.py' 2025-07-17T08:11:06.2478360Z adding 'torch/backends/_nnapi/serializer.py' 2025-07-17T08:11:06.2486450Z adding 'torch/backends/cpu/__init__.py' 2025-07-17T08:11:06.2495057Z adding 'torch/backends/cuda/__init__.py' 2025-07-17T08:11:06.2502056Z adding 'torch/backends/cudnn/__init__.py' 2025-07-17T08:11:06.2507041Z adding 'torch/backends/cudnn/rnn.py' 2025-07-17T08:11:06.2512371Z adding 'torch/backends/cusparselt/__init__.py' 2025-07-17T08:11:06.2517276Z adding 'torch/backends/kleidiai/__init__.py' 2025-07-17T08:11:06.2522321Z adding 'torch/backends/mha/__init__.py' 2025-07-17T08:11:06.2527601Z adding 'torch/backends/mkl/__init__.py' 2025-07-17T08:11:06.2533553Z adding 'torch/backends/mkldnn/__init__.py' 2025-07-17T08:11:06.2537721Z adding 'torch/backends/mps/__init__.py' 2025-07-17T08:11:06.2542846Z adding 'torch/backends/nnpack/__init__.py' 2025-07-17T08:11:06.2547806Z adding 'torch/backends/openmp/__init__.py' 2025-07-17T08:11:06.2553547Z adding 'torch/backends/opt_einsum/__init__.py' 2025-07-17T08:11:06.2558980Z adding 'torch/backends/quantized/__init__.py' 2025-07-17T08:11:06.2563877Z adding 'torch/backends/xeon/__init__.py' 2025-07-17T08:11:06.2578478Z adding 'torch/backends/xeon/run_cpu.py' 2025-07-17T08:11:06.2584468Z adding 'torch/backends/xnnpack/__init__.py' 2025-07-17T08:11:06.2834552Z adding 'torch/bin/FileStoreTest.exe' 2025-07-17T08:11:06.3026225Z adding 'torch/bin/ProcessGroupGlooAsyncTest.exe' 2025-07-17T08:11:06.3340695Z adding 'torch/bin/ProcessGroupGlooTest.exe' 2025-07-17T08:11:06.3595023Z adding 'torch/bin/TCPStoreTest.exe' 2025-07-17T08:11:06.3907091Z adding 'torch/bin/asmjit.dll' 2025-07-17T08:11:06.5840436Z adding 'torch/bin/fbgemm.dll' 2025-07-17T08:11:06.7583545Z adding 'torch/bin/protoc.exe' 2025-07-17T08:11:07.2115909Z adding 'torch/bin/test_api.exe' 2025-07-17T08:11:07.4931397Z adding 'torch/bin/test_jit.exe' 2025-07-17T08:11:07.6055991Z adding 'torch/bin/test_lazy.exe' 2025-07-17T08:11:07.6925954Z adding 'torch/bin/test_nativert.exe' 2025-07-17T08:11:08.0240777Z adding 'torch/bin/test_tensorexpr.exe' 2025-07-17T08:11:08.0455312Z adding 'torch/bin/tutorial_tensorexpr.exe' 2025-07-17T08:11:08.0469449Z adding 'torch/compiler/__init__.py' 2025-07-17T08:11:08.0475741Z adding 'torch/compiler/_cache.py' 2025-07-17T08:11:08.0479922Z adding 'torch/compiler/config.py' 2025-07-17T08:11:08.0483925Z adding 'torch/contrib/__init__.py' 2025-07-17T08:11:08.0488357Z adding 'torch/contrib/_tensorboard_vis.py' 2025-07-17T08:11:08.0493203Z adding 'torch/cpu/__init__.py' 2025-07-17T08:11:08.0496900Z adding 'torch/cpu/amp/__init__.py' 2025-07-17T08:11:08.0500070Z adding 'torch/cpu/amp/autocast_mode.py' 2025-07-17T08:11:08.0503171Z adding 'torch/cpu/amp/grad_scaler.py' 2025-07-17T08:11:08.0508423Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-07-17T08:11:08.0531365Z adding 'torch/cuda/__init__.py' 2025-07-17T08:11:08.0535990Z adding 'torch/cuda/_gpu_trace.py' 2025-07-17T08:11:08.0546307Z adding 'torch/cuda/_memory_viz.py' 2025-07-17T08:11:08.0550060Z adding 'torch/cuda/_pin_memory_utils.py' 2025-07-17T08:11:08.0558330Z adding 'torch/cuda/_sanitizer.py' 2025-07-17T08:11:08.0564944Z adding 'torch/cuda/_utils.py' 2025-07-17T08:11:08.0568295Z adding 'torch/cuda/comm.py' 2025-07-17T08:11:08.0571162Z adding 'torch/cuda/error.py' 2025-07-17T08:11:08.0575153Z adding 'torch/cuda/gds.py' 2025-07-17T08:11:08.0585180Z adding 'torch/cuda/graphs.py' 2025-07-17T08:11:08.0590229Z adding 'torch/cuda/jiterator.py' 2025-07-17T08:11:08.0606570Z adding 'torch/cuda/memory.py' 2025-07-17T08:11:08.0611633Z adding 'torch/cuda/nccl.py' 2025-07-17T08:11:08.0615433Z adding 'torch/cuda/nvtx.py' 2025-07-17T08:11:08.0619031Z adding 'torch/cuda/profiler.py' 2025-07-17T08:11:08.0622839Z adding 'torch/cuda/random.py' 2025-07-17T08:11:08.0626146Z adding 'torch/cuda/sparse.py' 2025-07-17T08:11:08.0630919Z adding 'torch/cuda/streams.py' 2025-07-17T08:11:08.0642592Z adding 'torch/cuda/tunable.py' 2025-07-17T08:11:08.0647008Z adding 'torch/cuda/amp/__init__.py' 2025-07-17T08:11:08.0650512Z adding 'torch/cuda/amp/autocast_mode.py' 2025-07-17T08:11:08.0653470Z adding 'torch/cuda/amp/common.py' 2025-07-17T08:11:08.0656543Z adding 'torch/cuda/amp/grad_scaler.py' 2025-07-17T08:11:08.0662005Z adding 'torch/distributed/__init__.py' 2025-07-17T08:11:08.0665331Z adding 'torch/distributed/_checkpointable.py' 2025-07-17T08:11:08.0668572Z adding 'torch/distributed/_composable_state.py' 2025-07-17T08:11:08.0672540Z adding 'torch/distributed/_dist2.py' 2025-07-17T08:11:08.0687484Z adding 'torch/distributed/_functional_collectives.py' 2025-07-17T08:11:08.0692073Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-07-17T08:11:08.0696037Z adding 'torch/distributed/_serialization.py' 2025-07-17T08:11:08.0706573Z adding 'torch/distributed/_state_dict_utils.py' 2025-07-17T08:11:08.0710945Z adding 'torch/distributed/argparse_util.py' 2025-07-17T08:11:08.0714658Z adding 'torch/distributed/c10d_logger.py' 2025-07-17T08:11:08.0719433Z adding 'torch/distributed/collective_utils.py' 2025-07-17T08:11:08.0722816Z adding 'torch/distributed/constants.py' 2025-07-17T08:11:08.0740327Z adding 'torch/distributed/device_mesh.py' 2025-07-17T08:11:08.0818697Z adding 'torch/distributed/distributed_c10d.py' 2025-07-17T08:11:08.0827149Z adding 'torch/distributed/launch.py' 2025-07-17T08:11:08.0830233Z adding 'torch/distributed/logging_handlers.py' 2025-07-17T08:11:08.0834098Z adding 'torch/distributed/remote_device.py' 2025-07-17T08:11:08.0839644Z adding 'torch/distributed/rendezvous.py' 2025-07-17T08:11:08.0854320Z adding 'torch/distributed/run.py' 2025-07-17T08:11:08.0859580Z adding 'torch/distributed/utils.py' 2025-07-17T08:11:08.0863640Z adding 'torch/distributed/_composable/__init__.py' 2025-07-17T08:11:08.0867682Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-07-17T08:11:08.0873037Z adding 'torch/distributed/_composable/contract.py' 2025-07-17T08:11:08.0878566Z adding 'torch/distributed/_composable/replicate.py' 2025-07-17T08:11:08.0882452Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-07-17T08:11:08.0885357Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-07-17T08:11:08.0888972Z adding 'torch/distributed/_shard/__init__.py' 2025-07-17T08:11:08.0893780Z adding 'torch/distributed/_shard/_utils.py' 2025-07-17T08:11:08.0899614Z adding 'torch/distributed/_shard/api.py' 2025-07-17T08:11:08.0903607Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-07-17T08:11:08.0906985Z adding 'torch/distributed/_shard/metadata.py' 2025-07-17T08:11:08.0910135Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-07-17T08:11:08.0913236Z adding 'torch/distributed/_shard/sharder.py' 2025-07-17T08:11:08.0916957Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-07-17T08:11:08.0921046Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-07-17T08:11:08.0924970Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-07-17T08:11:08.0932128Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-07-17T08:11:08.0950354Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-07-17T08:11:08.0955048Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-07-17T08:11:08.0958119Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-07-17T08:11:08.0961664Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-07-17T08:11:08.0966630Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-07-17T08:11:08.0970357Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-07-17T08:11:08.0976104Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-07-17T08:11:08.0979996Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-07-17T08:11:08.0983854Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-07-17T08:11:08.0987459Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-07-17T08:11:08.0991575Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-07-17T08:11:08.0994734Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-07-17T08:11:08.0999183Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-07-17T08:11:08.1002903Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-07-17T08:11:08.1006620Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-07-17T08:11:08.1010565Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-07-17T08:11:08.1015592Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-07-17T08:11:08.1021057Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-07-17T08:11:08.1026442Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-07-17T08:11:08.1030394Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-07-17T08:11:08.1036444Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-07-17T08:11:08.1042234Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-07-17T08:11:08.1049847Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-07-17T08:11:08.1054307Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-07-17T08:11:08.1058027Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-07-17T08:11:08.1078579Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-07-17T08:11:08.1083859Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-07-17T08:11:08.1087823Z adding 'torch/distributed/_tensor/__init__.py' 2025-07-17T08:11:08.1090810Z adding 'torch/distributed/_tensor/api.py' 2025-07-17T08:11:08.1094196Z adding 'torch/distributed/_tensor/placement_types.py' 2025-07-17T08:11:08.1097623Z adding 'torch/distributed/_tools/__init__.py' 2025-07-17T08:11:08.1100840Z adding 'torch/distributed/_tools/common_utils.py' 2025-07-17T08:11:08.1105513Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-07-17T08:11:08.1114059Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-07-17T08:11:08.1119886Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-07-17T08:11:08.1134913Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-07-17T08:11:08.1141287Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-07-17T08:11:08.1146608Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-07-17T08:11:08.1154719Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-07-17T08:11:08.1169523Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-07-17T08:11:08.1176148Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-07-17T08:11:08.1180103Z adding 'torch/distributed/algorithms/__init__.py' 2025-07-17T08:11:08.1186292Z adding 'torch/distributed/algorithms/join.py' 2025-07-17T08:11:08.1190411Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-07-17T08:11:08.1196414Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-07-17T08:11:08.1200297Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-07-17T08:11:08.1204744Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-07-17T08:11:08.1208531Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-07-17T08:11:08.1212406Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-07-17T08:11:08.1215877Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-07-17T08:11:08.1219900Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-07-17T08:11:08.1224485Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-07-17T08:11:08.1231680Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-07-17T08:11:08.1235403Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-07-17T08:11:08.1239721Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-07-17T08:11:08.1243675Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-07-17T08:11:08.1248029Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-07-17T08:11:08.1252492Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-07-17T08:11:08.1266262Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-07-17T08:11:08.1271603Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-07-17T08:11:08.1275501Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-07-17T08:11:08.1279609Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-07-17T08:11:08.1284887Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-07-17T08:11:08.1288699Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-07-17T08:11:08.1292996Z adding 'torch/distributed/autograd/__init__.py' 2025-07-17T08:11:08.1297605Z adding 'torch/distributed/checkpoint/__init__.py' 2025-07-17T08:11:08.1300753Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-07-17T08:11:08.1306209Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-07-17T08:11:08.1310224Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-07-17T08:11:08.1319169Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-07-17T08:11:08.1330120Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-07-17T08:11:08.1334635Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-07-17T08:11:08.1338025Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-07-17T08:11:08.1342964Z adding 'torch/distributed/checkpoint/_extension.py' 2025-07-17T08:11:08.1347367Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-07-17T08:11:08.1350996Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-07-17T08:11:08.1354558Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-07-17T08:11:08.1360043Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-07-17T08:11:08.1364136Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-07-17T08:11:08.1370512Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-07-17T08:11:08.1374066Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-07-17T08:11:08.1378327Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-07-17T08:11:08.1381286Z adding 'torch/distributed/checkpoint/_version.py' 2025-07-17T08:11:08.1384523Z adding 'torch/distributed/checkpoint/api.py' 2025-07-17T08:11:08.1393962Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-07-17T08:11:08.1406401Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-07-17T08:11:08.1412456Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-07-17T08:11:08.1418786Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-07-17T08:11:08.1422834Z adding 'torch/distributed/checkpoint/logger.py' 2025-07-17T08:11:08.1425849Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-07-17T08:11:08.1429890Z adding 'torch/distributed/checkpoint/metadata.py' 2025-07-17T08:11:08.1435923Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-07-17T08:11:08.1443269Z adding 'torch/distributed/checkpoint/planner.py' 2025-07-17T08:11:08.1450280Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-07-17T08:11:08.1454221Z adding 'torch/distributed/checkpoint/resharding.py' 2025-07-17T08:11:08.1460533Z adding 'torch/distributed/checkpoint/staging.py' 2025-07-17T08:11:08.1478644Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-07-17T08:11:08.1485639Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-07-17T08:11:08.1492617Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-07-17T08:11:08.1496178Z adding 'torch/distributed/checkpoint/stateful.py' 2025-07-17T08:11:08.1501023Z adding 'torch/distributed/checkpoint/storage.py' 2025-07-17T08:11:08.1507888Z adding 'torch/distributed/checkpoint/utils.py' 2025-07-17T08:11:08.1512691Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-07-17T08:11:08.1517941Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-07-17T08:11:08.1522250Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-07-17T08:11:08.1528174Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-07-17T08:11:08.1533504Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-07-17T08:11:08.1538766Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-07-17T08:11:08.1543810Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-07-17T08:11:08.1546874Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-07-17T08:11:08.1551748Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-07-17T08:11:08.1555904Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-07-17T08:11:08.1558348Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-07-17T08:11:08.1569784Z adding 'torch/distributed/elastic/__init__.py' 2025-07-17T08:11:08.1570293Z adding 'torch/distributed/elastic/control_plane.py' 2025-07-17T08:11:08.1570666Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-07-17T08:11:08.1574271Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-07-17T08:11:08.1588762Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-07-17T08:11:08.1593137Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-07-17T08:11:08.1599921Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-07-17T08:11:08.1605515Z adding 'torch/distributed/elastic/events/__init__.py' 2025-07-17T08:11:08.1609746Z adding 'torch/distributed/elastic/events/api.py' 2025-07-17T08:11:08.1613694Z adding 'torch/distributed/elastic/events/handlers.py' 2025-07-17T08:11:08.1618026Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-07-17T08:11:08.1622519Z adding 'torch/distributed/elastic/metrics/api.py' 2025-07-17T08:11:08.1628512Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-07-17T08:11:08.1642112Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-07-17T08:11:08.1645786Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-07-17T08:11:08.1650127Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-07-17T08:11:08.1658183Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-07-17T08:11:08.1663193Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-07-17T08:11:08.1666545Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-07-17T08:11:08.1671089Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-07-17T08:11:08.1673550Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-07-17T08:11:08.1677222Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-07-17T08:11:08.1682698Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-07-17T08:11:08.1686082Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-07-17T08:11:08.1692443Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-07-17T08:11:08.1699637Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-07-17T08:11:08.1714599Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-07-17T08:11:08.1730940Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-07-17T08:11:08.1736553Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-07-17T08:11:08.1741856Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-07-17T08:11:08.1746952Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-07-17T08:11:08.1751414Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-07-17T08:11:08.1754681Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-07-17T08:11:08.1759826Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-07-17T08:11:08.1764340Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-07-17T08:11:08.1769831Z adding 'torch/distributed/elastic/timer/api.py' 2025-07-17T08:11:08.1774268Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-07-17T08:11:08.1780476Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-07-17T08:11:08.1790097Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-07-17T08:11:08.1790529Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-07-17T08:11:08.1792716Z adding 'torch/distributed/elastic/utils/api.py' 2025-07-17T08:11:08.1800002Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-07-17T08:11:08.1800840Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-07-17T08:11:08.1804296Z adding 'torch/distributed/elastic/utils/logging.py' 2025-07-17T08:11:08.1809235Z adding 'torch/distributed/elastic/utils/store.py' 2025-07-17T08:11:08.1813506Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-07-17T08:11:08.1818217Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-07-17T08:11:08.1820786Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-07-17T08:11:08.1825180Z adding 'torch/distributed/fsdp/__init__.py' 2025-07-17T08:11:08.1835278Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-07-17T08:11:08.1839503Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-07-17T08:11:08.1843267Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-07-17T08:11:08.1849627Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-07-17T08:11:08.1892101Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-07-17T08:11:08.1898656Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-07-17T08:11:08.1915921Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-07-17T08:11:08.1920131Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-07-17T08:11:08.1951701Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-07-17T08:11:08.1977287Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-07-17T08:11:08.1982774Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-07-17T08:11:08.1993905Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-07-17T08:11:08.1999960Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-07-17T08:11:08.2004309Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-07-17T08:11:08.2009770Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-07-17T08:11:08.2015546Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-07-17T08:11:08.2023475Z adding 'torch/distributed/fsdp/api.py' 2025-07-17T08:11:08.2056698Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-07-17T08:11:08.2066853Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-07-17T08:11:08.2075559Z adding 'torch/distributed/fsdp/wrap.py' 2025-07-17T08:11:08.2080110Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-07-17T08:11:08.2084505Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-07-17T08:11:08.2095496Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-07-17T08:11:08.2099923Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-07-17T08:11:08.2105463Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-07-17T08:11:08.2120316Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-07-17T08:11:08.2135623Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-07-17T08:11:08.2141978Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-07-17T08:11:08.2154340Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-07-17T08:11:08.2158857Z adding 'torch/distributed/launcher/__init__.py' 2025-07-17T08:11:08.2164684Z adding 'torch/distributed/launcher/api.py' 2025-07-17T08:11:08.2168607Z adding 'torch/distributed/nn/__init__.py' 2025-07-17T08:11:08.2175619Z adding 'torch/distributed/nn/functional.py' 2025-07-17T08:11:08.2178899Z adding 'torch/distributed/nn/api/__init__.py' 2025-07-17T08:11:08.2188877Z adding 'torch/distributed/nn/api/remote_module.py' 2025-07-17T08:11:08.2193315Z adding 'torch/distributed/nn/jit/__init__.py' 2025-07-17T08:11:08.2198325Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-07-17T08:11:08.2201185Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-07-17T08:11:08.2204976Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-07-17T08:11:08.2209974Z adding 'torch/distributed/optim/__init__.py' 2025-07-17T08:11:08.2212477Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-07-17T08:11:08.2216729Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-07-17T08:11:08.2221087Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-07-17T08:11:08.2224681Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-07-17T08:11:08.2229136Z adding 'torch/distributed/optim/functional_adam.py' 2025-07-17T08:11:08.2233332Z adding 'torch/distributed/optim/functional_adamax.py' 2025-07-17T08:11:08.2238675Z adding 'torch/distributed/optim/functional_adamw.py' 2025-07-17T08:11:08.2242026Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-07-17T08:11:08.2246017Z adding 'torch/distributed/optim/functional_rprop.py' 2025-07-17T08:11:08.2250445Z adding 'torch/distributed/optim/functional_sgd.py' 2025-07-17T08:11:08.2256749Z adding 'torch/distributed/optim/named_optimizer.py' 2025-07-17T08:11:08.2262579Z adding 'torch/distributed/optim/optimizer.py' 2025-07-17T08:11:08.2267554Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-07-17T08:11:08.2270363Z adding 'torch/distributed/optim/utils.py' 2025-07-17T08:11:08.2297008Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-07-17T08:11:08.2301247Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-07-17T08:11:08.2322248Z adding 'torch/distributed/pipelining/_IR.py' 2025-07-17T08:11:08.2326425Z adding 'torch/distributed/pipelining/__init__.py' 2025-07-17T08:11:08.2333653Z adding 'torch/distributed/pipelining/_backward.py' 2025-07-17T08:11:08.2337048Z adding 'torch/distributed/pipelining/_debug.py' 2025-07-17T08:11:08.2341563Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-07-17T08:11:08.2344773Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-07-17T08:11:08.2348638Z adding 'torch/distributed/pipelining/_utils.py' 2025-07-17T08:11:08.2355839Z adding 'torch/distributed/pipelining/microbatch.py' 2025-07-17T08:11:08.2389278Z adding 'torch/distributed/pipelining/schedules.py' 2025-07-17T08:11:08.2414305Z adding 'torch/distributed/pipelining/stage.py' 2025-07-17T08:11:08.2421815Z adding 'torch/distributed/rpc/__init__.py' 2025-07-17T08:11:08.2425352Z adding 'torch/distributed/rpc/_utils.py' 2025-07-17T08:11:08.2437987Z adding 'torch/distributed/rpc/api.py' 2025-07-17T08:11:08.2445625Z adding 'torch/distributed/rpc/backend_registry.py' 2025-07-17T08:11:08.2449536Z adding 'torch/distributed/rpc/constants.py' 2025-07-17T08:11:08.2453640Z adding 'torch/distributed/rpc/functions.py' 2025-07-17T08:11:08.2459287Z adding 'torch/distributed/rpc/internal.py' 2025-07-17T08:11:08.2464259Z adding 'torch/distributed/rpc/options.py' 2025-07-17T08:11:08.2468056Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-07-17T08:11:08.2474903Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-07-17T08:11:08.2480029Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-07-17T08:11:08.2483447Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-07-17T08:11:08.2487204Z adding 'torch/distributed/tensor/__init__.py' 2025-07-17T08:11:08.2506845Z adding 'torch/distributed/tensor/_api.py' 2025-07-17T08:11:08.2514393Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-07-17T08:11:08.2522738Z adding 'torch/distributed/tensor/_dispatch.py' 2025-07-17T08:11:08.2528567Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-07-17T08:11:08.2537754Z adding 'torch/distributed/tensor/_op_schema.py' 2025-07-17T08:11:08.2545447Z adding 'torch/distributed/tensor/_random.py' 2025-07-17T08:11:08.2552817Z adding 'torch/distributed/tensor/_redistribute.py' 2025-07-17T08:11:08.2562574Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-07-17T08:11:08.2569967Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-07-17T08:11:08.2574149Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-07-17T08:11:08.2582695Z adding 'torch/distributed/tensor/_utils.py' 2025-07-17T08:11:08.2586031Z adding 'torch/distributed/tensor/device_mesh.py' 2025-07-17T08:11:08.2596793Z adding 'torch/distributed/tensor/placement_types.py' 2025-07-17T08:11:08.2601437Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-07-17T08:11:08.2607529Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-07-17T08:11:08.2611659Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-07-17T08:11:08.2616440Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-07-17T08:11:08.2621760Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-07-17T08:11:08.2634305Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-07-17T08:11:08.2645274Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-07-17T08:11:08.2655753Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-07-17T08:11:08.2658772Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-07-17T08:11:08.2673957Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-07-17T08:11:08.2685743Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-07-17T08:11:08.2693086Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-07-17T08:11:08.2697444Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-07-17T08:11:08.2707450Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-07-17T08:11:08.2711213Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-07-17T08:11:08.2716248Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-07-17T08:11:08.2720621Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-07-17T08:11:08.2737117Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-07-17T08:11:08.2743955Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-07-17T08:11:08.2748693Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-07-17T08:11:08.2756682Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-07-17T08:11:08.2761197Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-07-17T08:11:08.2764441Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-07-17T08:11:08.2769843Z adding 'torch/distributed/tensor/parallel/api.py' 2025-07-17T08:11:08.2772997Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-07-17T08:11:08.2779307Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-07-17T08:11:08.2783406Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-07-17T08:11:08.2790692Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-07-17T08:11:08.2801037Z adding 'torch/distributed/tensor/parallel/style.py' 2025-07-17T08:11:08.2807680Z adding 'torch/distributions/__init__.py' 2025-07-17T08:11:08.2811904Z adding 'torch/distributions/bernoulli.py' 2025-07-17T08:11:08.2816697Z adding 'torch/distributions/beta.py' 2025-07-17T08:11:08.2820797Z adding 'torch/distributions/binomial.py' 2025-07-17T08:11:08.2824635Z adding 'torch/distributions/categorical.py' 2025-07-17T08:11:08.2828616Z adding 'torch/distributions/cauchy.py' 2025-07-17T08:11:08.2831553Z adding 'torch/distributions/chi2.py' 2025-07-17T08:11:08.2836545Z adding 'torch/distributions/constraint_registry.py' 2025-07-17T08:11:08.2844057Z adding 'torch/distributions/constraints.py' 2025-07-17T08:11:08.2849488Z adding 'torch/distributions/continuous_bernoulli.py' 2025-07-17T08:11:08.2853638Z adding 'torch/distributions/dirichlet.py' 2025-07-17T08:11:08.2859381Z adding 'torch/distributions/distribution.py' 2025-07-17T08:11:08.2863172Z adding 'torch/distributions/exp_family.py' 2025-07-17T08:11:08.2866628Z adding 'torch/distributions/exponential.py' 2025-07-17T08:11:08.2870385Z adding 'torch/distributions/fishersnedecor.py' 2025-07-17T08:11:08.2874312Z adding 'torch/distributions/gamma.py' 2025-07-17T08:11:08.2878429Z adding 'torch/distributions/generalized_pareto.py' 2025-07-17T08:11:08.2882586Z adding 'torch/distributions/geometric.py' 2025-07-17T08:11:08.2886205Z adding 'torch/distributions/gumbel.py' 2025-07-17T08:11:08.2889726Z adding 'torch/distributions/half_cauchy.py' 2025-07-17T08:11:08.2893220Z adding 'torch/distributions/half_normal.py' 2025-07-17T08:11:08.2897161Z adding 'torch/distributions/independent.py' 2025-07-17T08:11:08.2900702Z adding 'torch/distributions/inverse_gamma.py' 2025-07-17T08:11:08.2910907Z adding 'torch/distributions/kl.py' 2025-07-17T08:11:08.2915323Z adding 'torch/distributions/kumaraswamy.py' 2025-07-17T08:11:08.2919054Z adding 'torch/distributions/laplace.py' 2025-07-17T08:11:08.2923741Z adding 'torch/distributions/lkj_cholesky.py' 2025-07-17T08:11:08.2927256Z adding 'torch/distributions/log_normal.py' 2025-07-17T08:11:08.2930762Z adding 'torch/distributions/logistic_normal.py' 2025-07-17T08:11:08.2936195Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-07-17T08:11:08.2941057Z adding 'torch/distributions/mixture_same_family.py' 2025-07-17T08:11:08.2945449Z adding 'torch/distributions/multinomial.py' 2025-07-17T08:11:08.2950985Z adding 'torch/distributions/multivariate_normal.py' 2025-07-17T08:11:08.2955282Z adding 'torch/distributions/negative_binomial.py' 2025-07-17T08:11:08.2959104Z adding 'torch/distributions/normal.py' 2025-07-17T08:11:08.2963189Z adding 'torch/distributions/one_hot_categorical.py' 2025-07-17T08:11:08.2966699Z adding 'torch/distributions/pareto.py' 2025-07-17T08:11:08.2970237Z adding 'torch/distributions/poisson.py' 2025-07-17T08:11:08.2974445Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-07-17T08:11:08.2978605Z adding 'torch/distributions/relaxed_categorical.py' 2025-07-17T08:11:08.2982518Z adding 'torch/distributions/studentT.py' 2025-07-17T08:11:08.2987401Z adding 'torch/distributions/transformed_distribution.py' 2025-07-17T08:11:08.3000632Z adding 'torch/distributions/transforms.py' 2025-07-17T08:11:08.3005255Z adding 'torch/distributions/uniform.py' 2025-07-17T08:11:08.3010279Z adding 'torch/distributions/utils.py' 2025-07-17T08:11:08.3015006Z adding 'torch/distributions/von_mises.py' 2025-07-17T08:11:08.3018712Z adding 'torch/distributions/weibull.py' 2025-07-17T08:11:08.3024622Z adding 'torch/distributions/wishart.py' 2025-07-17T08:11:08.3034726Z adding 'torch/export/__init__.py' 2025-07-17T08:11:08.3042654Z adding 'torch/export/_draft_export.py' 2025-07-17T08:11:08.3046609Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-07-17T08:11:08.3051080Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-07-17T08:11:08.3055723Z adding 'torch/export/_safeguard.py' 2025-07-17T08:11:08.3062966Z adding 'torch/export/_swap.py' 2025-07-17T08:11:08.3095135Z adding 'torch/export/_trace.py' 2025-07-17T08:11:08.3100572Z adding 'torch/export/_tree_utils.py' 2025-07-17T08:11:08.3108197Z adding 'torch/export/_unlift.py' 2025-07-17T08:11:08.3111558Z adding 'torch/export/_wrapper_utils.py' 2025-07-17T08:11:08.3114395Z adding 'torch/export/custom_obj.py' 2025-07-17T08:11:08.3117984Z adding 'torch/export/custom_ops.py' 2025-07-17T08:11:08.3121431Z adding 'torch/export/decomp_utils.py' 2025-07-17T08:11:08.3141567Z adding 'torch/export/dynamic_shapes.py' 2025-07-17T08:11:08.3165538Z adding 'torch/export/exported_program.py' 2025-07-17T08:11:08.3175235Z adding 'torch/export/graph_signature.py' 2025-07-17T08:11:08.3200964Z adding 'torch/export/unflatten.py' 2025-07-17T08:11:08.3211426Z adding 'torch/export/experimental/__init__.py' 2025-07-17T08:11:08.3215482Z adding 'torch/export/experimental/_utils.py' 2025-07-17T08:11:08.3219907Z adding 'torch/export/passes/__init__.py' 2025-07-17T08:11:08.3223771Z adding 'torch/export/pt2_archive/__init__.py' 2025-07-17T08:11:08.3232731Z adding 'torch/export/pt2_archive/_package.py' 2025-07-17T08:11:08.3237190Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-07-17T08:11:08.3240452Z adding 'torch/export/pt2_archive/constants.py' 2025-07-17T08:11:08.3253628Z adding 'torch/fft/__init__.py' 2025-07-17T08:11:08.3258725Z adding 'torch/func/__init__.py' 2025-07-17T08:11:08.3265997Z adding 'torch/futures/__init__.py' 2025-07-17T08:11:08.3271425Z adding 'torch/fx/__init__.py' 2025-07-17T08:11:08.3275255Z adding 'torch/fx/_compatibility.py' 2025-07-17T08:11:08.3283537Z adding 'torch/fx/_graph_pickler.py' 2025-07-17T08:11:08.3288570Z adding 'torch/fx/_lazy_graph_module.py' 2025-07-17T08:11:08.3292575Z adding 'torch/fx/_pytree.py' 2025-07-17T08:11:08.3334374Z adding 'torch/fx/_symbolic_trace.py' 2025-07-17T08:11:08.3334679Z adding 'torch/fx/_utils.py' 2025-07-17T08:11:08.3334933Z adding 'torch/fx/annotate.py' 2025-07-17T08:11:08.3335171Z adding 'torch/fx/config.py' 2025-07-17T08:11:08.3354800Z adding 'torch/fx/graph.py' 2025-07-17T08:11:08.3372496Z adding 'torch/fx/graph_module.py' 2025-07-17T08:11:08.3377004Z adding 'torch/fx/immutable_collections.py' 2025-07-17T08:11:08.3385205Z adding 'torch/fx/interpreter.py' 2025-07-17T08:11:08.3399470Z adding 'torch/fx/node.py' 2025-07-17T08:11:08.3409130Z adding 'torch/fx/operator_schemas.py' 2025-07-17T08:11:08.3421268Z adding 'torch/fx/proxy.py' 2025-07-17T08:11:08.3429264Z adding 'torch/fx/subgraph_rewriter.py' 2025-07-17T08:11:08.3433121Z adding 'torch/fx/tensor_type.py' 2025-07-17T08:11:08.3437945Z adding 'torch/fx/traceback.py' 2025-07-17T08:11:08.3442109Z adding 'torch/fx/experimental/__init__.py' 2025-07-17T08:11:08.3445238Z adding 'torch/fx/experimental/_backward_state.py' 2025-07-17T08:11:08.3449312Z adding 'torch/fx/experimental/_config.py' 2025-07-17T08:11:08.3452808Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-07-17T08:11:08.3456758Z adding 'torch/fx/experimental/_dynamism.py' 2025-07-17T08:11:08.3473142Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-07-17T08:11:08.3480435Z adding 'torch/fx/experimental/const_fold.py' 2025-07-17T08:11:08.3483978Z adding 'torch/fx/experimental/debug.py' 2025-07-17T08:11:08.3496152Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-07-17T08:11:08.3501346Z adding 'torch/fx/experimental/merge_matmul.py' 2025-07-17T08:11:08.3507045Z adding 'torch/fx/experimental/meta_tracer.py' 2025-07-17T08:11:08.3511493Z adding 'torch/fx/experimental/normalize.py' 2025-07-17T08:11:08.3519530Z adding 'torch/fx/experimental/optimization.py' 2025-07-17T08:11:08.3525872Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-07-17T08:11:08.3562108Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-07-17T08:11:08.3573019Z adding 'torch/fx/experimental/recording.py' 2025-07-17T08:11:08.3576695Z adding 'torch/fx/experimental/refinement_types.py' 2025-07-17T08:11:08.3581128Z adding 'torch/fx/experimental/rewriter.py' 2025-07-17T08:11:08.3585403Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-07-17T08:11:08.3606822Z adding 'torch/fx/experimental/sym_node.py' 2025-07-17T08:11:08.3739867Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-07-17T08:11:08.3751115Z adding 'torch/fx/experimental/unify_refinements.py' 2025-07-17T08:11:08.3764251Z adding 'torch/fx/experimental/validator.py' 2025-07-17T08:11:08.3769696Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-07-17T08:11:08.3775323Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-07-17T08:11:08.3790744Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-07-17T08:11:08.3807285Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-07-17T08:11:08.3811405Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-07-17T08:11:08.3817673Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-07-17T08:11:08.3821418Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-07-17T08:11:08.3824539Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-07-17T08:11:08.3828553Z adding 'torch/fx/experimental/unification/__init__.py' 2025-07-17T08:11:08.3832224Z adding 'torch/fx/experimental/unification/core.py' 2025-07-17T08:11:08.3835205Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-07-17T08:11:08.3838841Z adding 'torch/fx/experimental/unification/match.py' 2025-07-17T08:11:08.3842528Z adding 'torch/fx/experimental/unification/more.py' 2025-07-17T08:11:08.3848195Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-07-17T08:11:08.3852228Z adding 'torch/fx/experimental/unification/utils.py' 2025-07-17T08:11:08.3855740Z adding 'torch/fx/experimental/unification/variable.py' 2025-07-17T08:11:08.3859730Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-07-17T08:11:08.3863557Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-07-17T08:11:08.3867226Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-07-17T08:11:08.3873857Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-07-17T08:11:08.3878199Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-07-17T08:11:08.3881920Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-07-17T08:11:08.3885809Z adding 'torch/fx/passes/__init__.py' 2025-07-17T08:11:08.3893078Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-07-17T08:11:08.3896789Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-07-17T08:11:08.3900705Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-07-17T08:11:08.3907802Z adding 'torch/fx/passes/graph_drawer.py' 2025-07-17T08:11:08.3912137Z adding 'torch/fx/passes/graph_manipulation.py' 2025-07-17T08:11:08.3916620Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-07-17T08:11:08.3928806Z adding 'torch/fx/passes/net_min_base.py' 2025-07-17T08:11:08.3934336Z adding 'torch/fx/passes/operator_support.py' 2025-07-17T08:11:08.3938235Z adding 'torch/fx/passes/param_fetch.py' 2025-07-17T08:11:08.3942936Z adding 'torch/fx/passes/pass_manager.py' 2025-07-17T08:11:08.3957048Z adding 'torch/fx/passes/reinplace.py' 2025-07-17T08:11:08.3967860Z adding 'torch/fx/passes/runtime_assert.py' 2025-07-17T08:11:08.3973571Z adding 'torch/fx/passes/shape_prop.py' 2025-07-17T08:11:08.3983518Z adding 'torch/fx/passes/split_module.py' 2025-07-17T08:11:08.3989928Z adding 'torch/fx/passes/split_utils.py' 2025-07-17T08:11:08.4002474Z adding 'torch/fx/passes/splitter_base.py' 2025-07-17T08:11:08.4008898Z adding 'torch/fx/passes/tools_common.py' 2025-07-17T08:11:08.4012877Z adding 'torch/fx/passes/backends/__init__.py' 2025-07-17T08:11:08.4016292Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-07-17T08:11:08.4020225Z adding 'torch/fx/passes/dialect/__init__.py' 2025-07-17T08:11:08.4023659Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-07-17T08:11:08.4027795Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-07-17T08:11:08.4031500Z adding 'torch/fx/passes/infra/__init__.py' 2025-07-17T08:11:08.4038328Z adding 'torch/fx/passes/infra/partitioner.py' 2025-07-17T08:11:08.4042169Z adding 'torch/fx/passes/infra/pass_base.py' 2025-07-17T08:11:08.4047883Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-07-17T08:11:08.4052421Z adding 'torch/fx/passes/tests/__init__.py' 2025-07-17T08:11:08.4055244Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-07-17T08:11:08.4058862Z adding 'torch/fx/passes/utils/__init__.py' 2025-07-17T08:11:08.4062473Z adding 'torch/fx/passes/utils/common.py' 2025-07-17T08:11:08.4068102Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-07-17T08:11:08.4076081Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-07-17T08:11:08.4080588Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-07-17T08:11:08.4085117Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-07-17T08:11:08.4094951Z adding 'torch/include/advisor-annotate.h' 2025-07-17T08:11:08.4108999Z adding 'torch/include/cpuinfo.h' 2025-07-17T08:11:08.4113665Z adding 'torch/include/dnnl.h' 2025-07-17T08:11:08.4116839Z adding 'torch/include/dnnl.hpp' 2025-07-17T08:11:08.4119871Z adding 'torch/include/dnnl_config.h' 2025-07-17T08:11:08.4123017Z adding 'torch/include/dnnl_debug.h' 2025-07-17T08:11:08.4126016Z adding 'torch/include/dnnl_ocl.h' 2025-07-17T08:11:08.4129204Z adding 'torch/include/dnnl_ocl.hpp' 2025-07-17T08:11:08.4132353Z adding 'torch/include/dnnl_sycl.h' 2025-07-17T08:11:08.4135503Z adding 'torch/include/dnnl_sycl.hpp' 2025-07-17T08:11:08.4138589Z adding 'torch/include/dnnl_sycl_types.h' 2025-07-17T08:11:08.4141567Z adding 'torch/include/dnnl_threadpool.h' 2025-07-17T08:11:08.4144676Z adding 'torch/include/dnnl_threadpool.hpp' 2025-07-17T08:11:08.4147675Z adding 'torch/include/dnnl_threadpool_iface.hpp' 2025-07-17T08:11:08.4150740Z adding 'torch/include/dnnl_types.h' 2025-07-17T08:11:08.4153755Z adding 'torch/include/dnnl_version.h' 2025-07-17T08:11:08.4156865Z adding 'torch/include/experiments-config.h' 2025-07-17T08:11:08.4159598Z adding 'torch/include/fp16.h' 2025-07-17T08:11:08.4164914Z adding 'torch/include/fxdiv.h' 2025-07-17T08:11:08.4168981Z adding 'torch/include/ittnotify-zca.h' 2025-07-17T08:11:08.4215815Z adding 'torch/include/ittnotify.h' 2025-07-17T08:11:08.4229914Z adding 'torch/include/jitprofiling.h' 2025-07-17T08:11:08.4233640Z adding 'torch/include/libittnotify.h' 2025-07-17T08:11:08.4236748Z adding 'torch/include/libshm.h' 2025-07-17T08:11:08.4246826Z adding 'torch/include/psimd.h' 2025-07-17T08:11:08.4261547Z adding 'torch/include/pthreadpool.h' 2025-07-17T08:11:08.4304727Z adding 'torch/include/sleef.h' 2025-07-17T08:11:08.4346579Z adding 'torch/include/xnnpack.h' 2025-07-17T08:11:08.4357468Z adding 'torch/include/ATen/ATen.h' 2025-07-17T08:11:08.4361557Z adding 'torch/include/ATen/AccumulateType.h' 2025-07-17T08:11:08.4364445Z adding 'torch/include/ATen/ArrayRef.h' 2025-07-17T08:11:08.4367128Z adding 'torch/include/ATen/Backend.h' 2025-07-17T08:11:08.4369747Z adding 'torch/include/ATen/Backtrace.h' 2025-07-17T08:11:08.4373011Z adding 'torch/include/ATen/BlasBackend.h' 2025-07-17T08:11:08.4378239Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-07-17T08:11:08.4381603Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-07-17T08:11:08.4384947Z adding 'torch/include/ATen/CPUFunctions.h' 2025-07-17T08:11:08.4390975Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-07-17T08:11:08.4394831Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-07-17T08:11:08.4398187Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-07-17T08:11:08.4404887Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-07-17T08:11:08.4408818Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-07-17T08:11:08.4412330Z adding 'torch/include/ATen/CollapseDims.h' 2025-07-17T08:11:08.4415861Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-07-17T08:11:08.4422871Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-07-17T08:11:08.4427307Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-07-17T08:11:08.4432483Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-07-17T08:11:08.4436337Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-07-17T08:11:08.4442708Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-07-17T08:11:08.4447192Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-07-17T08:11:08.4450366Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-07-17T08:11:08.4453276Z adding 'torch/include/ATen/Config.h' 2025-07-17T08:11:08.4461510Z adding 'torch/include/ATen/Context.h' 2025-07-17T08:11:08.4465512Z adding 'torch/include/ATen/DLConvertor.h' 2025-07-17T08:11:08.4468296Z adding 'torch/include/ATen/Device.h' 2025-07-17T08:11:08.4471968Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-07-17T08:11:08.4475193Z adding 'torch/include/ATen/DeviceGuard.h' 2025-07-17T08:11:08.4477905Z adding 'torch/include/ATen/DimVector.h' 2025-07-17T08:11:08.4480527Z adding 'torch/include/ATen/Dimname.h' 2025-07-17T08:11:08.4489100Z adding 'torch/include/ATen/Dispatch.h' 2025-07-17T08:11:08.4497972Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-07-17T08:11:08.4502462Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-07-17T08:11:08.4505819Z adding 'torch/include/ATen/EmptyTensor.h' 2025-07-17T08:11:08.4508931Z adding 'torch/include/ATen/ExpandBase.h' 2025-07-17T08:11:08.4514642Z adding 'torch/include/ATen/ExpandUtils.h' 2025-07-17T08:11:08.4517829Z adding 'torch/include/ATen/Formatting.h' 2025-07-17T08:11:08.4521080Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-07-17T08:11:08.4526024Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-07-17T08:11:08.4533721Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-07-17T08:11:08.4545306Z adding 'torch/include/ATen/Functions.h' 2025-07-17T08:11:08.4549371Z adding 'torch/include/ATen/Generator.h' 2025-07-17T08:11:08.4552897Z adding 'torch/include/ATen/InferSize.h' 2025-07-17T08:11:08.4555955Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-07-17T08:11:08.4558623Z adding 'torch/include/ATen/Layout.h' 2025-07-17T08:11:08.4561881Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-07-17T08:11:08.4566322Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-07-17T08:11:08.4569538Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-07-17T08:11:08.4574791Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-07-17T08:11:08.4578104Z adding 'torch/include/ATen/LinalgBackend.h' 2025-07-17T08:11:08.4581720Z adding 'torch/include/ATen/MapAllocator.h' 2025-07-17T08:11:08.4585529Z adding 'torch/include/ATen/MatrixRef.h' 2025-07-17T08:11:08.4588843Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-07-17T08:11:08.4592162Z adding 'torch/include/ATen/MetaFunctions.h' 2025-07-17T08:11:08.4596920Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-07-17T08:11:08.4602220Z adding 'torch/include/ATen/MethodOperators.h' 2025-07-17T08:11:08.4605482Z adding 'torch/include/ATen/NamedTensor.h' 2025-07-17T08:11:08.4609957Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-07-17T08:11:08.4620965Z adding 'torch/include/ATen/NativeFunctions.h' 2025-07-17T08:11:08.4640426Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-07-17T08:11:08.4646758Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-07-17T08:11:08.4651686Z adding 'torch/include/ATen/NumericUtils.h' 2025-07-17T08:11:08.4654272Z adding 'torch/include/ATen/OpMathType.h' 2025-07-17T08:11:08.4658579Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-07-17T08:11:08.4669942Z adding 'torch/include/ATen/Operators.h' 2025-07-17T08:11:08.4674793Z adding 'torch/include/ATen/PTThreadPool.h' 2025-07-17T08:11:08.4677254Z adding 'torch/include/ATen/PadNd.h' 2025-07-17T08:11:08.4680991Z adding 'torch/include/ATen/Parallel-inl.h' 2025-07-17T08:11:08.4685546Z adding 'torch/include/ATen/Parallel.h' 2025-07-17T08:11:08.4688229Z adding 'torch/include/ATen/ParallelFuture.h' 2025-07-17T08:11:08.4691912Z adding 'torch/include/ATen/ParallelNative.h' 2025-07-17T08:11:08.4694503Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-07-17T08:11:08.4697823Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-07-17T08:11:08.4700859Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-07-17T08:11:08.4967347Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-07-17T08:11:08.5154199Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-07-17T08:11:08.5179120Z adding 'torch/include/ATen/SDPBackend.h' 2025-07-17T08:11:08.5182688Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-07-17T08:11:08.5185513Z adding 'torch/include/ATen/Scalar.h' 2025-07-17T08:11:08.5188717Z adding 'torch/include/ATen/ScalarOps.h' 2025-07-17T08:11:08.5191524Z adding 'torch/include/ATen/ScalarType.h' 2025-07-17T08:11:08.5194382Z adding 'torch/include/ATen/SequenceNumber.h' 2025-07-17T08:11:08.5197065Z adding 'torch/include/ATen/SmallVector.h' 2025-07-17T08:11:08.5201470Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-07-17T08:11:08.5207817Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-07-17T08:11:08.5214626Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-07-17T08:11:08.5218436Z adding 'torch/include/ATen/Storage.h' 2025-07-17T08:11:08.5221171Z adding 'torch/include/ATen/StorageUtils.h' 2025-07-17T08:11:08.5224751Z adding 'torch/include/ATen/Tensor.h' 2025-07-17T08:11:08.5226801Z adding 'torch/include/ATen/TensorAccessor.h' 2025-07-17T08:11:08.5230607Z adding 'torch/include/ATen/TensorGeometry.h' 2025-07-17T08:11:08.5240557Z adding 'torch/include/ATen/TensorIndexing.h' 2025-07-17T08:11:08.5256546Z adding 'torch/include/ATen/TensorIterator.h' 2025-07-17T08:11:08.5261040Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-07-17T08:11:08.5265145Z adding 'torch/include/ATen/TensorMeta.h' 2025-07-17T08:11:08.5268839Z adding 'torch/include/ATen/TensorNames.h' 2025-07-17T08:11:08.5272399Z adding 'torch/include/ATen/TensorOperators.h' 2025-07-17T08:11:08.5275166Z adding 'torch/include/ATen/TensorOptions.h' 2025-07-17T08:11:08.5278976Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-07-17T08:11:08.5283111Z adding 'torch/include/ATen/TensorUtils.h' 2025-07-17T08:11:08.5286364Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-07-17T08:11:08.5290479Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-07-17T08:11:08.5295294Z adding 'torch/include/ATen/TracerMode.h' 2025-07-17T08:11:08.5298114Z adding 'torch/include/ATen/TypeDefault.h' 2025-07-17T08:11:08.5301812Z adding 'torch/include/ATen/Utils.h' 2025-07-17T08:11:08.5305196Z adding 'torch/include/ATen/Version.h' 2025-07-17T08:11:08.5481699Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-07-17T08:11:08.5524958Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-07-17T08:11:08.5528285Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-07-17T08:11:08.5539350Z adding 'torch/include/ATen/autocast_mode.h' 2025-07-17T08:11:08.5543328Z adding 'torch/include/ATen/ceil_div.h' 2025-07-17T08:11:08.5548200Z adding 'torch/include/ATen/code_template.h' 2025-07-17T08:11:08.5552051Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-07-17T08:11:08.5555022Z adding 'torch/include/ATen/div_rtn.h' 2025-07-17T08:11:08.5561036Z adding 'torch/include/ATen/dlpack.h' 2025-07-17T08:11:08.5564228Z adding 'torch/include/ATen/jit_macros.h' 2025-07-17T08:11:08.5567460Z adding 'torch/include/ATen/jiterator_macros.h' 2025-07-17T08:11:08.5576550Z adding 'torch/include/ATen/record_function.h' 2025-07-17T08:11:08.5581989Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-07-17T08:11:08.5584893Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-07-17T08:11:08.5587876Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-07-17T08:11:08.5591671Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-07-17T08:11:08.5594896Z adding 'torch/include/ATen/core/Array.h' 2025-07-17T08:11:08.5597666Z adding 'torch/include/ATen/core/Backtrace.h' 2025-07-17T08:11:08.5608415Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-07-17T08:11:08.5612253Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-07-17T08:11:08.5616049Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-07-17T08:11:08.5619656Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-07-17T08:11:08.5625890Z adding 'torch/include/ATen/core/Dict.h' 2025-07-17T08:11:08.5630621Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-07-17T08:11:08.5633660Z adding 'torch/include/ATen/core/DimVector.h' 2025-07-17T08:11:08.5636890Z adding 'torch/include/ATen/core/Dimname.h' 2025-07-17T08:11:08.5642026Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-07-17T08:11:08.5645354Z adding 'torch/include/ATen/core/Formatting.h' 2025-07-17T08:11:08.5650146Z adding 'torch/include/ATen/core/Generator.h' 2025-07-17T08:11:08.5653753Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-07-17T08:11:08.5661951Z adding 'torch/include/ATen/core/IListRef.h' 2025-07-17T08:11:08.5666571Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-07-17T08:11:08.5670963Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-07-17T08:11:08.5677627Z adding 'torch/include/ATen/core/List.h' 2025-07-17T08:11:08.5683125Z adding 'torch/include/ATen/core/List_inl.h' 2025-07-17T08:11:08.5688136Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-07-17T08:11:08.5692686Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-07-17T08:11:08.5697387Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-07-17T08:11:08.5702433Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-07-17T08:11:08.5705903Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-07-17T08:11:08.5708984Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-07-17T08:11:08.5712551Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-07-17T08:11:08.5716378Z adding 'torch/include/ATen/core/Range.h' 2025-07-17T08:11:08.5718596Z adding 'torch/include/ATen/core/Reduction.h' 2025-07-17T08:11:08.5722135Z adding 'torch/include/ATen/core/Scalar.h' 2025-07-17T08:11:08.5724147Z adding 'torch/include/ATen/core/ScalarType.h' 2025-07-17T08:11:08.5727977Z adding 'torch/include/ATen/core/Tensor.h' 2025-07-17T08:11:08.5732329Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-07-17T08:11:08.5747751Z adding 'torch/include/ATen/core/TensorBase.h' 2025-07-17T08:11:08.5804302Z adding 'torch/include/ATen/core/TensorBody.h' 2025-07-17T08:11:08.5827452Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-07-17T08:11:08.5827893Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-07-17T08:11:08.5828293Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-07-17T08:11:08.5828655Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-07-17T08:11:08.5830137Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-07-17T08:11:08.5833783Z adding 'torch/include/ATen/core/Variadic.h' 2025-07-17T08:11:08.5837274Z adding 'torch/include/ATen/core/Vitals.h' 2025-07-17T08:11:08.5841576Z adding 'torch/include/ATen/core/alias_info.h' 2025-07-17T08:11:08.5857143Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-07-17T08:11:08.5862845Z adding 'torch/include/ATen/core/blob.h' 2025-07-17T08:11:08.5866357Z adding 'torch/include/ATen/core/builtin_function.h' 2025-07-17T08:11:08.5872620Z adding 'torch/include/ATen/core/class_type.h' 2025-07-17T08:11:08.5876114Z adding 'torch/include/ATen/core/custom_class.h' 2025-07-17T08:11:08.5881763Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-07-17T08:11:08.5885059Z adding 'torch/include/ATen/core/enum_tag.h' 2025-07-17T08:11:08.5888559Z adding 'torch/include/ATen/core/enum_type.h' 2025-07-17T08:11:08.5892479Z adding 'torch/include/ATen/core/function.h' 2025-07-17T08:11:08.5902348Z adding 'torch/include/ATen/core/function_schema.h' 2025-07-17T08:11:08.5906347Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-07-17T08:11:08.5909698Z adding 'torch/include/ATen/core/functional.h' 2025-07-17T08:11:08.5912600Z adding 'torch/include/ATen/core/grad_mode.h' 2025-07-17T08:11:08.5918239Z adding 'torch/include/ATen/core/interned_strings.h' 2025-07-17T08:11:08.5921702Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-07-17T08:11:08.5940821Z adding 'torch/include/ATen/core/ivalue.h' 2025-07-17T08:11:08.5971079Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-07-17T08:11:08.5976253Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-07-17T08:11:08.5998424Z adding 'torch/include/ATen/core/jit_type.h' 2025-07-17T08:11:08.6008435Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-07-17T08:11:08.6012796Z adding 'torch/include/ATen/core/operator_name.h' 2025-07-17T08:11:08.6016867Z adding 'torch/include/ATen/core/qualified_name.h' 2025-07-17T08:11:08.6020152Z adding 'torch/include/ATen/core/rref_interface.h' 2025-07-17T08:11:08.6024526Z adding 'torch/include/ATen/core/stack.h' 2025-07-17T08:11:08.6028931Z adding 'torch/include/ATen/core/symbol.h' 2025-07-17T08:11:08.6032547Z adding 'torch/include/ATen/core/type_factory.h' 2025-07-17T08:11:08.6035774Z adding 'torch/include/ATen/core/type_ptr.h' 2025-07-17T08:11:08.6040146Z adding 'torch/include/ATen/core/typeid.h' 2025-07-17T08:11:08.6046064Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-07-17T08:11:08.6049852Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-07-17T08:11:08.6054727Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-07-17T08:11:08.6060056Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-07-17T08:11:08.6063407Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-07-17T08:11:08.6067758Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-07-17T08:11:08.6071093Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-07-17T08:11:08.6076893Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-07-17T08:11:08.6086948Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-07-17T08:11:08.6091562Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-07-17T08:11:08.6096077Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-07-17T08:11:08.6101748Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-07-17T08:11:08.6114816Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-07-17T08:11:08.6118852Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-07-17T08:11:08.6125140Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-07-17T08:11:08.6128626Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-07-17T08:11:08.6131883Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-07-17T08:11:08.6136182Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-07-17T08:11:08.6140469Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-07-17T08:11:08.6145369Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-07-17T08:11:08.6153782Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-07-17T08:11:08.6158268Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-07-17T08:11:08.6161298Z adding 'torch/include/ATen/cpu/Utils.h' 2025-07-17T08:11:08.6165550Z adding 'torch/include/ATen/cpu/vml.h' 2025-07-17T08:11:08.6169685Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-07-17T08:11:08.6174914Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-07-17T08:11:08.6181497Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-07-17T08:11:08.6185521Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-07-17T08:11:08.6188732Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-07-17T08:11:08.6202165Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-07-17T08:11:08.6207539Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-07-17T08:11:08.6210727Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-07-17T08:11:08.6215857Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-07-17T08:11:08.6221305Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-07-17T08:11:08.6225686Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-07-17T08:11:08.6230552Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-07-17T08:11:08.6236733Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-07-17T08:11:08.6242103Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-07-17T08:11:08.6247787Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-07-17T08:11:08.6256184Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-07-17T08:11:08.6263225Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-07-17T08:11:08.6270691Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-07-17T08:11:08.6274351Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-07-17T08:11:08.6282216Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-07-17T08:11:08.6285229Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-07-17T08:11:08.6291995Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-07-17T08:11:08.6299445Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-07-17T08:11:08.6305151Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-07-17T08:11:08.6316556Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-07-17T08:11:08.6317039Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-07-17T08:11:08.6318966Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-07-17T08:11:08.6338233Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-07-17T08:11:08.6338699Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-07-17T08:11:08.6341440Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-07-17T08:11:08.6350347Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-07-17T08:11:08.6356238Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-07-17T08:11:08.6360702Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-07-17T08:11:08.6369491Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-07-17T08:11:08.6374727Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-07-17T08:11:08.6389595Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-07-17T08:11:08.6395528Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-07-17T08:11:08.6406795Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-07-17T08:11:08.6412365Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-07-17T08:11:08.6416934Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-07-17T08:11:08.6424997Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-07-17T08:11:08.6433766Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-07-17T08:11:08.6439764Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-07-17T08:11:08.6445796Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-07-17T08:11:08.6451382Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-07-17T08:11:08.6456478Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-07-17T08:11:08.6461373Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-07-17T08:11:08.6466429Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-07-17T08:11:08.6472807Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-07-17T08:11:08.6479420Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-07-17T08:11:08.6487037Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-07-17T08:11:08.6511809Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-07-17T08:11:08.6520093Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-07-17T08:11:08.6536728Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-07-17T08:11:08.6546139Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-07-17T08:11:08.6556453Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-07-17T08:11:08.6561918Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-07-17T08:11:08.6567684Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-07-17T08:11:08.6577961Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-07-17T08:11:08.6585138Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-07-17T08:11:08.6597847Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-07-17T08:11:08.6604223Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-07-17T08:11:08.6615507Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-07-17T08:11:08.6621121Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-07-17T08:11:08.6624369Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-07-17T08:11:08.6627769Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-07-17T08:11:08.6634651Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-07-17T08:11:08.6642989Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-07-17T08:11:08.6648639Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-07-17T08:11:08.6652332Z adding 'torch/include/ATen/cuda/CUDAConfig.h' 2025-07-17T08:11:08.6655201Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-07-17T08:11:08.6658800Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-07-17T08:11:08.6662166Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-07-17T08:11:08.6665222Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-07-17T08:11:08.6670107Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-07-17T08:11:08.6674792Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-07-17T08:11:08.6679763Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-07-17T08:11:08.6682456Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-07-17T08:11:08.6685948Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-07-17T08:11:08.6691258Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-07-17T08:11:08.6695234Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-07-17T08:11:08.6698580Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-07-17T08:11:08.6702151Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-07-17T08:11:08.6705028Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-07-17T08:11:08.6708618Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-07-17T08:11:08.6711680Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-07-17T08:11:08.6717102Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-07-17T08:11:08.6721189Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-07-17T08:11:08.6724270Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-07-17T08:11:08.6727184Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-07-17T08:11:08.6729882Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-07-17T08:11:08.6733040Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-07-17T08:11:08.6737170Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-07-17T08:11:08.6739391Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-07-17T08:11:08.6742918Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-07-17T08:11:08.6745859Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-07-17T08:11:08.6754423Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-07-17T08:11:08.6758053Z adding 'torch/include/ATen/cuda/cub.h' 2025-07-17T08:11:08.6761544Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-07-17T08:11:08.6764579Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-07-17T08:11:08.6768954Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-07-17T08:11:08.6772319Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-07-17T08:11:08.6777350Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-07-17T08:11:08.6781756Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-07-17T08:11:08.6785190Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-07-17T08:11:08.6789342Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-07-17T08:11:08.6792715Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-07-17T08:11:08.6795902Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-07-17T08:11:08.6799947Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-07-17T08:11:08.6803281Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-07-17T08:11:08.6806877Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-07-17T08:11:08.6810318Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-07-17T08:11:08.6827822Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-07-17T08:11:08.6828231Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-07-17T08:11:08.6830865Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-07-17T08:11:08.6835037Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-07-17T08:11:08.6839089Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-07-17T08:11:08.6843928Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-07-17T08:11:08.6850706Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-07-17T08:11:08.6858609Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-07-17T08:11:08.6861890Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-07-17T08:11:08.6864925Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-07-17T08:11:08.6867808Z adding 'torch/include/ATen/cudnn/Types.h' 2025-07-17T08:11:08.6871002Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-07-17T08:11:08.6875376Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-07-17T08:11:08.6878696Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-07-17T08:11:08.6883250Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-07-17T08:11:08.6886853Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-07-17T08:11:08.6890394Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-07-17T08:11:08.6893849Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-07-17T08:11:08.6896978Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-07-17T08:11:08.6900213Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-07-17T08:11:08.6903805Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-07-17T08:11:08.6908443Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-07-17T08:11:08.6911709Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-07-17T08:11:08.6915016Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-07-17T08:11:08.6919198Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-07-17T08:11:08.6925784Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-07-17T08:11:08.6929861Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-07-17T08:11:08.6934595Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-07-17T08:11:08.6939557Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-07-17T08:11:08.6943120Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-07-17T08:11:08.6946442Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-07-17T08:11:08.6952372Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-07-17T08:11:08.6957977Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-07-17T08:11:08.6960956Z adding 'torch/include/ATen/functorch/Macros.h' 2025-07-17T08:11:08.6964566Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-07-17T08:11:08.6968793Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-07-17T08:11:08.6972182Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-07-17T08:11:08.6977146Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-07-17T08:11:08.6980230Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-07-17T08:11:08.6986279Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-07-17T08:11:08.6990480Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-07-17T08:11:08.6994302Z adding 'torch/include/ATen/metal/Context.h' 2025-07-17T08:11:08.6999496Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-07-17T08:11:08.7003059Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-07-17T08:11:08.7005866Z adding 'torch/include/ATen/miopen/Handle.h' 2025-07-17T08:11:08.7008992Z adding 'torch/include/ATen/miopen/Types.h' 2025-07-17T08:11:08.7011947Z adding 'torch/include/ATen/miopen/Utils.h' 2025-07-17T08:11:08.7015089Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-07-17T08:11:08.7019328Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-07-17T08:11:08.7022966Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-07-17T08:11:08.7031885Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-07-17T08:11:08.7036511Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-07-17T08:11:08.7039431Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-07-17T08:11:08.7043411Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-07-17T08:11:08.7047748Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-07-17T08:11:08.7051120Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-07-17T08:11:08.7054794Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-07-17T08:11:08.7062128Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-07-17T08:11:08.7066534Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-07-17T08:11:08.7072678Z adding 'torch/include/ATen/native/Activation.h' 2025-07-17T08:11:08.7076701Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-07-17T08:11:08.7079581Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-07-17T08:11:08.7084102Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-07-17T08:11:08.7088113Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-07-17T08:11:08.7093888Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-07-17T08:11:08.7097447Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-07-17T08:11:08.7101229Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-07-17T08:11:08.7105188Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-07-17T08:11:08.7108102Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-07-17T08:11:08.7111840Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-07-17T08:11:08.7125578Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-07-17T08:11:08.7131613Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-07-17T08:11:08.7135139Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-07-17T08:11:08.7138265Z adding 'torch/include/ATen/native/Copy.h' 2025-07-17T08:11:08.7141177Z adding 'torch/include/ATen/native/Cross.h' 2025-07-17T08:11:08.7145635Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-07-17T08:11:08.7151854Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-07-17T08:11:08.7155419Z adding 'torch/include/ATen/native/Distance.h' 2025-07-17T08:11:08.7162081Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-07-17T08:11:08.7171838Z adding 'torch/include/ATen/native/Distributions.h' 2025-07-17T08:11:08.7176309Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-07-17T08:11:08.7179681Z adding 'torch/include/ATen/native/Fill.h' 2025-07-17T08:11:08.7186285Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-07-17T08:11:08.7190284Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-07-17T08:11:08.7193352Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-07-17T08:11:08.7196393Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-07-17T08:11:08.7199413Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-07-17T08:11:08.7202539Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-07-17T08:11:08.7205624Z adding 'torch/include/ATen/native/Gelu.h' 2025-07-17T08:11:08.7210627Z adding 'torch/include/ATen/native/GridSampler.h' 2025-07-17T08:11:08.7214674Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-07-17T08:11:08.7217783Z adding 'torch/include/ATen/native/Histogram.h' 2025-07-17T08:11:08.7221090Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-07-17T08:11:08.7225770Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-07-17T08:11:08.7228950Z adding 'torch/include/ATen/native/Lerp.h' 2025-07-17T08:11:08.7232231Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-07-17T08:11:08.7243222Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-07-17T08:11:08.7248046Z adding 'torch/include/ATen/native/LossMulti.h' 2025-07-17T08:11:08.7294420Z adding 'torch/include/ATen/native/Math.h' 2025-07-17T08:11:08.7301221Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-07-17T08:11:08.7306306Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-07-17T08:11:08.7310944Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-07-17T08:11:08.7313491Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-07-17T08:11:08.7317038Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-07-17T08:11:08.7320127Z adding 'torch/include/ATen/native/Normalization.h' 2025-07-17T08:11:08.7333601Z adding 'torch/include/ATen/native/Padding.h' 2025-07-17T08:11:08.7333987Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-07-17T08:11:08.7334326Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-07-17T08:11:08.7336763Z adding 'torch/include/ATen/native/Pool.h' 2025-07-17T08:11:08.7340655Z adding 'torch/include/ATen/native/Pow.h' 2025-07-17T08:11:08.7344036Z adding 'torch/include/ATen/native/RNN.h' 2025-07-17T08:11:08.7347311Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-07-17T08:11:08.7352016Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-07-17T08:11:08.7354866Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-07-17T08:11:08.7358153Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-07-17T08:11:08.7364885Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-07-17T08:11:08.7369706Z adding 'torch/include/ATen/native/ReductionType.h' 2025-07-17T08:11:08.7372174Z adding 'torch/include/ATen/native/Repeat.h' 2025-07-17T08:11:08.7377299Z adding 'torch/include/ATen/native/Resize.h' 2025-07-17T08:11:08.7381162Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-07-17T08:11:08.7385885Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-07-17T08:11:08.7388233Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-07-17T08:11:08.7393768Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-07-17T08:11:08.7397624Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-07-17T08:11:08.7400636Z adding 'torch/include/ATen/native/Sorting.h' 2025-07-17T08:11:08.7403984Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-07-17T08:11:08.7408535Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-07-17T08:11:08.7412606Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-07-17T08:11:08.7417306Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-07-17T08:11:08.7420557Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-07-17T08:11:08.7424413Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-07-17T08:11:08.7427625Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-07-17T08:11:08.7430736Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-07-17T08:11:08.7434013Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-07-17T08:11:08.7438270Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-07-17T08:11:08.7441196Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-07-17T08:11:08.7444539Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-07-17T08:11:08.7447403Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-07-17T08:11:08.7451467Z adding 'torch/include/ATen/native/TensorShape.h' 2025-07-17T08:11:08.7454773Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-07-17T08:11:08.7458201Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-07-17T08:11:08.7462129Z adding 'torch/include/ATen/native/TransposeType.h' 2025-07-17T08:11:08.7465645Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-07-17T08:11:08.7468654Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-07-17T08:11:08.7472540Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-07-17T08:11:08.7475734Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-07-17T08:11:08.7478717Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-07-17T08:11:08.7482474Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-07-17T08:11:08.7489555Z adding 'torch/include/ATen/native/UpSample.h' 2025-07-17T08:11:08.7493369Z adding 'torch/include/ATen/native/batch_norm.h' 2025-07-17T08:11:08.7496432Z adding 'torch/include/ATen/native/group_norm.h' 2025-07-17T08:11:08.7500129Z adding 'torch/include/ATen/native/im2col.h' 2025-07-17T08:11:08.7504384Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-07-17T08:11:08.7508165Z adding 'torch/include/ATen/native/layer_norm.h' 2025-07-17T08:11:08.7511187Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-07-17T08:11:08.7514591Z adding 'torch/include/ATen/native/vol2col.h' 2025-07-17T08:11:08.7523322Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-07-17T08:11:08.7524050Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-07-17T08:11:08.7527893Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-07-17T08:11:08.7532521Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-07-17T08:11:08.7535458Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-07-17T08:11:08.7538421Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-07-17T08:11:08.7541248Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-07-17T08:11:08.7544238Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-07-17T08:11:08.7549851Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-07-17T08:11:08.7553737Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-07-17T08:11:08.7557246Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-07-17T08:11:08.7560423Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-07-17T08:11:08.7564075Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-07-17T08:11:08.7567253Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-07-17T08:11:08.7570674Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-07-17T08:11:08.7574125Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-07-17T08:11:08.7579584Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-07-17T08:11:08.7585791Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-07-17T08:11:08.7589183Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-07-17T08:11:08.7592111Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-07-17T08:11:08.7597870Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-07-17T08:11:08.7602544Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-07-17T08:11:08.7606071Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-07-17T08:11:08.7608938Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-07-17T08:11:08.7613256Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-07-17T08:11:08.7616438Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-07-17T08:11:08.7619494Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-07-17T08:11:08.7622626Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-07-17T08:11:08.7638045Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-07-17T08:11:08.7642617Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-07-17T08:11:08.7649022Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-07-17T08:11:08.7652839Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-07-17T08:11:08.7656105Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-07-17T08:11:08.7660624Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-07-17T08:11:08.7665613Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-07-17T08:11:08.7669726Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-07-17T08:11:08.7675013Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-07-17T08:11:08.7678421Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-07-17T08:11:08.7684058Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-07-17T08:11:08.7694896Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-07-17T08:11:08.7699012Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-07-17T08:11:08.7701854Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-07-17T08:11:08.7709954Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-07-17T08:11:08.7713720Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-07-17T08:11:08.7716949Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-07-17T08:11:08.7725921Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-07-17T08:11:08.7729956Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-07-17T08:11:08.7733253Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-07-17T08:11:08.7738814Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-07-17T08:11:08.7744221Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-07-17T08:11:08.7749824Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-07-17T08:11:08.7752417Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-07-17T08:11:08.7755564Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-07-17T08:11:08.7759740Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-07-17T08:11:08.7763072Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-07-17T08:11:08.7766619Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-07-17T08:11:08.7771367Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-07-17T08:11:08.7777085Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-07-17T08:11:08.7780578Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-07-17T08:11:08.7786130Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-07-17T08:11:08.7820671Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-07-17T08:11:08.7841955Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-07-17T08:11:08.7842378Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-07-17T08:11:08.7842789Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-07-17T08:11:08.7861677Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-07-17T08:11:08.7869619Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-07-17T08:11:08.7873471Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-07-17T08:11:08.7877248Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-07-17T08:11:08.7894426Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-07-17T08:11:08.7898669Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-07-17T08:11:08.7901950Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-07-17T08:11:08.7905014Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-07-17T08:11:08.7907906Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-07-17T08:11:08.7910842Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-07-17T08:11:08.7917988Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-07-17T08:11:08.7921501Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-07-17T08:11:08.7924589Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-07-17T08:11:08.7930075Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-07-17T08:11:08.7933419Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-07-17T08:11:08.7937517Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-07-17T08:11:08.7943546Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-07-17T08:11:08.7950923Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-07-17T08:11:08.7954260Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-07-17T08:11:08.7957184Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-07-17T08:11:08.7960103Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-07-17T08:11:08.7965421Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-07-17T08:11:08.7969430Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-07-17T08:11:08.7972712Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-07-17T08:11:08.7975775Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-07-17T08:11:08.7979757Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-07-17T08:11:08.7983502Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-07-17T08:11:08.7986767Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-07-17T08:11:08.7989641Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-07-17T08:11:08.7994180Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-07-17T08:11:08.7998917Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-07-17T08:11:08.8006994Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-07-17T08:11:08.8010722Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-07-17T08:11:08.8015448Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-07-17T08:11:08.8019569Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-07-17T08:11:08.8022582Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-07-17T08:11:08.8027785Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-07-17T08:11:08.8031435Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-07-17T08:11:08.8035613Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-07-17T08:11:08.8039925Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-07-17T08:11:08.8043956Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-07-17T08:11:08.8047231Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-07-17T08:11:08.8051059Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-07-17T08:11:08.8055537Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-07-17T08:11:08.8058852Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-07-17T08:11:08.8066477Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-07-17T08:11:08.8073629Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-07-17T08:11:08.8077590Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-07-17T08:11:08.8081601Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-07-17T08:11:08.8085519Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-07-17T08:11:08.8089324Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-07-17T08:11:08.8093237Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-07-17T08:11:08.8096383Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-07-17T08:11:08.8099669Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-07-17T08:11:08.8103879Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-07-17T08:11:08.8108275Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-07-17T08:11:08.8117070Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-07-17T08:11:08.8120820Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-07-17T08:11:08.8124645Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-07-17T08:11:08.8127585Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-07-17T08:11:08.8131549Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-07-17T08:11:08.8134679Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-07-17T08:11:08.8137644Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-07-17T08:11:08.8140710Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-07-17T08:11:08.8143623Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-07-17T08:11:08.8149272Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-07-17T08:11:08.8153593Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-07-17T08:11:08.8157404Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-07-17T08:11:08.8160848Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-07-17T08:11:08.8164515Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-07-17T08:11:08.8167742Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-07-17T08:11:08.8174775Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-07-17T08:11:08.8179399Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-07-17T08:11:08.8183097Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-07-17T08:11:08.8187450Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-07-17T08:11:08.8189418Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-07-17T08:11:08.8192736Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-07-17T08:11:08.8195914Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-07-17T08:11:08.8199565Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-07-17T08:11:08.8202553Z adding 'torch/include/ATen/native/quantized/library.h' 2025-07-17T08:11:08.8208299Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-07-17T08:11:08.8211718Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-07-17T08:11:08.8214880Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-07-17T08:11:08.8220685Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-07-17T08:11:08.8228136Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-07-17T08:11:08.8233776Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-07-17T08:11:08.8238401Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-07-17T08:11:08.8241800Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-07-17T08:11:08.8247119Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-07-17T08:11:08.8253184Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-07-17T08:11:08.8258726Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-07-17T08:11:08.8262728Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-07-17T08:11:08.8265341Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-07-17T08:11:08.8268662Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-07-17T08:11:08.8271609Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-07-17T08:11:08.8274858Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-07-17T08:11:08.8280847Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-07-17T08:11:08.8285701Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-07-17T08:11:08.8289036Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-07-17T08:11:08.8296796Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-07-17T08:11:08.8300308Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-07-17T08:11:08.8305021Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-07-17T08:11:08.8308787Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-07-17T08:11:08.8314581Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-07-17T08:11:08.8320234Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-07-17T08:11:08.8350855Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-07-17T08:11:08.8371793Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-07-17T08:11:08.8376368Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-07-17T08:11:08.8384845Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-07-17T08:11:08.8390070Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-07-17T08:11:08.8394585Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-07-17T08:11:08.8399536Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-07-17T08:11:08.8403744Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-07-17T08:11:08.8412798Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-07-17T08:11:08.8419719Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-07-17T08:11:08.8424085Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-07-17T08:11:08.8430382Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-07-17T08:11:08.8450355Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-07-17T08:11:08.8457180Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-07-17T08:11:08.8464729Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-07-17T08:11:08.8468538Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-07-17T08:11:08.8480940Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-07-17T08:11:08.8492842Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-07-17T08:11:08.8496652Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-07-17T08:11:08.8502318Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-07-17T08:11:08.8516324Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-07-17T08:11:08.8523821Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-07-17T08:11:08.8528845Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-07-17T08:11:08.8533630Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-07-17T08:11:08.8540097Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-07-17T08:11:08.8544711Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-07-17T08:11:08.8548424Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-07-17T08:11:08.8551790Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-07-17T08:11:08.8555512Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-07-17T08:11:08.8746087Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-07-17T08:11:08.8749260Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-07-17T08:11:08.8752828Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8756424Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-07-17T08:11:08.8759365Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-07-17T08:11:08.8762440Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-07-17T08:11:08.8765516Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-07-17T08:11:08.8769038Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8772180Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-17T08:11:08.8775542Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-17T08:11:08.8779441Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-07-17T08:11:08.8781766Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-07-17T08:11:08.8785443Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-07-17T08:11:08.8788576Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-07-17T08:11:08.8791938Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8794946Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-17T08:11:08.8798156Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-17T08:11:08.8801115Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-07-17T08:11:08.8804465Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-07-17T08:11:08.8807819Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8811120Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-17T08:11:08.8814110Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-17T08:11:08.8817219Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-07-17T08:11:08.8820626Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-07-17T08:11:08.8823711Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-07-17T08:11:08.8827028Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.8829895Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-07-17T08:11:08.8832916Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-07-17T08:11:08.8836338Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-07-17T08:11:08.8839648Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8842765Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-07-17T08:11:08.8845873Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-07-17T08:11:08.8848947Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-07-17T08:11:08.8852531Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-07-17T08:11:08.8855709Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-07-17T08:11:08.8859068Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:08.8862035Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-07-17T08:11:08.8866506Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-07-17T08:11:08.8868419Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-07-17T08:11:08.8871859Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-07-17T08:11:08.8874954Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-07-17T08:11:08.8878074Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-07-17T08:11:08.8881297Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-07-17T08:11:08.8884582Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8887576Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-07-17T08:11:08.8890815Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-07-17T08:11:08.8893893Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-07-17T08:11:08.8897283Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-07-17T08:11:08.8900577Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-07-17T08:11:08.8903917Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8907357Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-07-17T08:11:08.8910546Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-07-17T08:11:08.8913608Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-07-17T08:11:08.8916953Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-07-17T08:11:08.8920130Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-07-17T08:11:08.8923602Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8926563Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-07-17T08:11:08.8929651Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-07-17T08:11:08.8932875Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-07-17T08:11:08.8935959Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-07-17T08:11:08.8939309Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-07-17T08:11:08.8942390Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-07-17T08:11:08.8945486Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-07-17T08:11:08.8948517Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-07-17T08:11:08.8951452Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-07-17T08:11:08.8954591Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-07-17T08:11:08.8957591Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-07-17T08:11:08.8960918Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8963786Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-07-17T08:11:08.8966782Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-07-17T08:11:08.8970146Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-07-17T08:11:08.8973534Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.8976564Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-07-17T08:11:08.8979605Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-07-17T08:11:08.8983054Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-07-17T08:11:08.8986096Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-07-17T08:11:08.8989196Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.8992050Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-07-17T08:11:08.8995133Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-07-17T08:11:08.8998074Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-07-17T08:11:08.9001277Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9004244Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-07-17T08:11:08.9007331Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-07-17T08:11:08.9010235Z adding 'torch/include/ATen/ops/_backward.h' 2025-07-17T08:11:08.9013512Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9016390Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-07-17T08:11:08.9021333Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-07-17T08:11:08.9024821Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-07-17T08:11:08.9028093Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-07-17T08:11:08.9031615Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9035576Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-07-17T08:11:08.9038081Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-07-17T08:11:08.9041648Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9044841Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-07-17T08:11:08.9048224Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-07-17T08:11:08.9051612Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-07-17T08:11:08.9055255Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9058815Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-07-17T08:11:08.9061655Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-07-17T08:11:08.9065183Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-07-17T08:11:08.9068544Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9071826Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-07-17T08:11:08.9075106Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-07-17T08:11:08.9078438Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-07-17T08:11:08.9082017Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-07-17T08:11:08.9085110Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-07-17T08:11:08.9088457Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9091413Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-07-17T08:11:08.9094659Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-07-17T08:11:08.9097656Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-07-17T08:11:08.9101026Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9104676Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-07-17T08:11:08.9107167Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-07-17T08:11:08.9110424Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-07-17T08:11:08.9113564Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9116574Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-07-17T08:11:08.9119653Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-07-17T08:11:08.9122923Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-07-17T08:11:08.9126120Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9129042Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-07-17T08:11:08.9133223Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-07-17T08:11:08.9135476Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-07-17T08:11:08.9139211Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9141650Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-07-17T08:11:08.9144887Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-07-17T08:11:08.9148000Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-07-17T08:11:08.9151358Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9154385Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-07-17T08:11:08.9157689Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-07-17T08:11:08.9160732Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-07-17T08:11:08.9164129Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9167935Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-07-17T08:11:08.9170357Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-07-17T08:11:08.9173963Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-07-17T08:11:08.9176682Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9179691Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-07-17T08:11:08.9182769Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-07-17T08:11:08.9186345Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-07-17T08:11:08.9189634Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9192952Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-07-17T08:11:08.9196906Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-07-17T08:11:08.9199093Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-07-17T08:11:08.9202590Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-07-17T08:11:08.9205546Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-07-17T08:11:08.9208954Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9212290Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-07-17T08:11:08.9215384Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-07-17T08:11:08.9218241Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-07-17T08:11:08.9221601Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-07-17T08:11:08.9225509Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-07-17T08:11:08.9228235Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9231335Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-07-17T08:11:08.9234462Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-07-17T08:11:08.9237632Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-07-17T08:11:08.9240756Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-07-17T08:11:08.9243970Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-07-17T08:11:08.9247251Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9250348Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-07-17T08:11:08.9254274Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-07-17T08:11:08.9256766Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-07-17T08:11:08.9260100Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9263115Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-07-17T08:11:08.9266255Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-07-17T08:11:08.9269452Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-07-17T08:11:08.9272695Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-07-17T08:11:08.9275912Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9278973Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-07-17T08:11:08.9282870Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-07-17T08:11:08.9285302Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-07-17T08:11:08.9288802Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9291779Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-07-17T08:11:08.9294874Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-07-17T08:11:08.9298191Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-07-17T08:11:08.9301599Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-07-17T08:11:08.9304591Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-07-17T08:11:08.9307823Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-07-17T08:11:08.9311760Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-07-17T08:11:08.9314110Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-07-17T08:11:08.9317874Z adding 'torch/include/ATen/ops/_conj.h' 2025-07-17T08:11:08.9320460Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9323826Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-07-17T08:11:08.9326934Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9330368Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:08.9333241Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-07-17T08:11:08.9336568Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-07-17T08:11:08.9339473Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-07-17T08:11:08.9342812Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-07-17T08:11:08.9345912Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-07-17T08:11:08.9349157Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9353340Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-07-17T08:11:08.9355412Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-07-17T08:11:08.9358936Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-07-17T08:11:08.9362373Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-07-17T08:11:08.9365442Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-07-17T08:11:08.9369388Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-07-17T08:11:08.9372262Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-07-17T08:11:08.9375653Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:08.9378598Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-07-17T08:11:08.9381672Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-07-17T08:11:08.9384666Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-07-17T08:11:08.9388062Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-07-17T08:11:08.9391124Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-07-17T08:11:08.9394622Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-07-17T08:11:08.9397590Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-07-17T08:11:08.9401026Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:08.9403988Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-07-17T08:11:08.9407049Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-07-17T08:11:08.9410085Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-07-17T08:11:08.9413293Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-07-17T08:11:08.9416321Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-07-17T08:11:08.9419563Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-07-17T08:11:08.9422572Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-07-17T08:11:08.9425654Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-07-17T08:11:08.9428686Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-07-17T08:11:08.9431968Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-07-17T08:11:08.9434951Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-07-17T08:11:08.9438162Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-07-17T08:11:08.9441118Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-07-17T08:11:08.9444097Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-07-17T08:11:08.9447845Z adding 'torch/include/ATen/ops/_convolution.h' 2025-07-17T08:11:08.9451663Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9454840Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9458343Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-07-17T08:11:08.9462174Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9464929Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-07-17T08:11:08.9467971Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-07-17T08:11:08.9472508Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-07-17T08:11:08.9474741Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9477638Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-07-17T08:11:08.9480802Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-07-17T08:11:08.9484034Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-07-17T08:11:08.9487957Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-07-17T08:11:08.9490758Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-07-17T08:11:08.9493895Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-07-17T08:11:08.9497140Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9499991Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-07-17T08:11:08.9503210Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-07-17T08:11:08.9506453Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9509225Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-07-17T08:11:08.9512352Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-07-17T08:11:08.9515349Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-07-17T08:11:08.9518411Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-07-17T08:11:08.9521292Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-07-17T08:11:08.9524354Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-07-17T08:11:08.9527477Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-07-17T08:11:08.9530709Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-07-17T08:11:08.9533727Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-07-17T08:11:08.9536914Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-07-17T08:11:08.9540030Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-07-17T08:11:08.9543203Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-07-17T08:11:08.9546163Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-07-17T08:11:08.9549330Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-07-17T08:11:08.9552579Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-07-17T08:11:08.9555923Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-07-17T08:11:08.9559237Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9562253Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-07-17T08:11:08.9565356Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-07-17T08:11:08.9568507Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-07-17T08:11:08.9571996Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-07-17T08:11:08.9575294Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9578321Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-07-17T08:11:08.9581401Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-07-17T08:11:08.9584450Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-07-17T08:11:08.9587495Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-07-17T08:11:08.9591045Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-07-17T08:11:08.9594569Z adding 'torch/include/ATen/ops/_cudnn_attention_backward.h' 2025-07-17T08:11:08.9597842Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_cuda_dispatch.h' 2025-07-17T08:11:08.9600871Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_native.h' 2025-07-17T08:11:08.9604188Z adding 'torch/include/ATen/ops/_cudnn_attention_backward_ops.h' 2025-07-17T08:11:08.9607541Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-07-17T08:11:08.9610943Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-07-17T08:11:08.9614283Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-07-17T08:11:08.9617430Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-07-17T08:11:08.9620653Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-07-17T08:11:08.9623981Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9626991Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-17T08:11:08.9630383Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-07-17T08:11:08.9633757Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-07-17T08:11:08.9637222Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-07-17T08:11:08.9640493Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9643437Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-07-17T08:11:08.9646552Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-07-17T08:11:08.9650793Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-07-17T08:11:08.9654013Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-07-17T08:11:08.9658638Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-07-17T08:11:08.9662740Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9666124Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-07-17T08:11:08.9669339Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-07-17T08:11:08.9673769Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-07-17T08:11:08.9676678Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9679984Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-07-17T08:11:08.9683520Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-07-17T08:11:08.9687242Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9691492Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-07-17T08:11:08.9693657Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-07-17T08:11:08.9697103Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-07-17T08:11:08.9700216Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-07-17T08:11:08.9703891Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-07-17T08:11:08.9707053Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-07-17T08:11:08.9710517Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9714413Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-07-17T08:11:08.9716585Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-07-17T08:11:08.9720107Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-07-17T08:11:08.9722936Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9725917Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-07-17T08:11:08.9729131Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-07-17T08:11:08.9732382Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-07-17T08:11:08.9735690Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9738759Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-07-17T08:11:08.9742326Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-07-17T08:11:08.9745077Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-07-17T08:11:08.9748960Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9751254Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-07-17T08:11:08.9754562Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-07-17T08:11:08.9757440Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-07-17T08:11:08.9768302Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-07-17T08:11:08.9772577Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-07-17T08:11:08.9775229Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-07-17T08:11:08.9778816Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-07-17T08:11:08.9781757Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-07-17T08:11:08.9785080Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-07-17T08:11:08.9788216Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-07-17T08:11:08.9791572Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-07-17T08:11:08.9795646Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-07-17T08:11:08.9798230Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-07-17T08:11:08.9801708Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9804606Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-07-17T08:11:08.9807887Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-07-17T08:11:08.9810995Z adding 'torch/include/ATen/ops/_dimI.h' 2025-07-17T08:11:08.9814219Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-07-17T08:11:08.9817447Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-07-17T08:11:08.9820642Z adding 'torch/include/ATen/ops/_dimV.h' 2025-07-17T08:11:08.9824464Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-07-17T08:11:08.9826862Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-07-17T08:11:08.9830268Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-07-17T08:11:08.9833338Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:08.9854139Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-07-17T08:11:08.9854279Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-07-17T08:11:08.9854414Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-07-17T08:11:08.9854685Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9854854Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-07-17T08:11:08.9855025Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-07-17T08:11:08.9857464Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-07-17T08:11:08.9860874Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-07-17T08:11:08.9864058Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-07-17T08:11:08.9867599Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-07-17T08:11:08.9872123Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-07-17T08:11:08.9874027Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-07-17T08:11:08.9878418Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-07-17T08:11:08.9880589Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-07-17T08:11:08.9883598Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-07-17T08:11:08.9886831Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-07-17T08:11:08.9890799Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-07-17T08:11:08.9894418Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-07-17T08:11:08.9897437Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-07-17T08:11:08.9900901Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-07-17T08:11:08.9905674Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-07-17T08:11:08.9908089Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-07-17T08:11:08.9911226Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-07-17T08:11:08.9914678Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-07-17T08:11:08.9918226Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-07-17T08:11:08.9921585Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9924642Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-07-17T08:11:08.9927826Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-07-17T08:11:08.9931116Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-07-17T08:11:08.9934226Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-07-17T08:11:08.9937767Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-07-17T08:11:08.9941149Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-07-17T08:11:08.9944794Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-07-17T08:11:08.9948143Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-07-17T08:11:08.9951347Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-07-17T08:11:08.9954451Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-07-17T08:11:08.9957749Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-07-17T08:11:08.9961110Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9964136Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-07-17T08:11:08.9967348Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-07-17T08:11:08.9971132Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-07-17T08:11:08.9974786Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9977851Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-07-17T08:11:08.9981057Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-07-17T08:11:08.9984294Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-07-17T08:11:08.9987781Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-07-17T08:11:08.9992221Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-07-17T08:11:08.9994840Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:08.9997927Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-07-17T08:11:09.0001084Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-07-17T08:11:09.0004220Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-07-17T08:11:09.0007657Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-07-17T08:11:09.0010957Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-07-17T08:11:09.0014485Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-07-17T08:11:09.0018022Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-07-17T08:11:09.0021403Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0024465Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-07-17T08:11:09.0027588Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-07-17T08:11:09.0030779Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-07-17T08:11:09.0034192Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-07-17T08:11:09.0037385Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-07-17T08:11:09.0040714Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.0043691Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-07-17T08:11:09.0047015Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-07-17T08:11:09.0050990Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-07-17T08:11:09.0054557Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0058243Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-07-17T08:11:09.0061263Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-07-17T08:11:09.0064604Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-07-17T08:11:09.0068459Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-07-17T08:11:09.0072162Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0075299Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-07-17T08:11:09.0078467Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-07-17T08:11:09.0081872Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-07-17T08:11:09.0084907Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-07-17T08:11:09.0088172Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0091240Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-07-17T08:11:09.0094634Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-07-17T08:11:09.0098088Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-07-17T08:11:09.0101568Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-07-17T08:11:09.0105667Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-07-17T08:11:09.0108203Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-07-17T08:11:09.0111439Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-07-17T08:11:09.0114741Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-07-17T08:11:09.0118253Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0121334Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-07-17T08:11:09.0124664Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-07-17T08:11:09.0127818Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-07-17T08:11:09.0131509Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-07-17T08:11:09.0134769Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-07-17T08:11:09.0138040Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-07-17T08:11:09.0141487Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-07-17T08:11:09.0144756Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-07-17T08:11:09.0148015Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-07-17T08:11:09.0151752Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-07-17T08:11:09.0154683Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0157835Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-07-17T08:11:09.0161030Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-07-17T08:11:09.0164272Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-07-17T08:11:09.0167505Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-07-17T08:11:09.0171134Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-07-17T08:11:09.0174962Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0177854Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-07-17T08:11:09.0181172Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-07-17T08:11:09.0184247Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-07-17T08:11:09.0187773Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-07-17T08:11:09.0191766Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-07-17T08:11:09.0194642Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-07-17T08:11:09.0197994Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-07-17T08:11:09.0200961Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-07-17T08:11:09.0204392Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-07-17T08:11:09.0208387Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-07-17T08:11:09.0211472Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-07-17T08:11:09.0214827Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-07-17T08:11:09.0217997Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-07-17T08:11:09.0221424Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-07-17T08:11:09.0224492Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-07-17T08:11:09.0227901Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-07-17T08:11:09.0231945Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-07-17T08:11:09.0234257Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-07-17T08:11:09.0237667Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-07-17T08:11:09.0240935Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-07-17T08:11:09.0244254Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-07-17T08:11:09.0247231Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-07-17T08:11:09.0250596Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-07-17T08:11:09.0254776Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-07-17T08:11:09.0257681Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-07-17T08:11:09.0261290Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-07-17T08:11:09.0264454Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-07-17T08:11:09.0267867Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-07-17T08:11:09.0271349Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-07-17T08:11:09.0274999Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-07-17T08:11:09.0278242Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-07-17T08:11:09.0281677Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-07-17T08:11:09.0284983Z adding 'torch/include/ATen/ops/_foobar.h' 2025-07-17T08:11:09.0288307Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0291550Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-07-17T08:11:09.0294748Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-07-17T08:11:09.0298252Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-07-17T08:11:09.0301438Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-07-17T08:11:09.0304839Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0307834Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-07-17T08:11:09.0311011Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-07-17T08:11:09.0314263Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-07-17T08:11:09.0317525Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-07-17T08:11:09.0320894Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0323988Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-07-17T08:11:09.0327112Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-07-17T08:11:09.0330365Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-07-17T08:11:09.0334027Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-07-17T08:11:09.0337592Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0341047Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-07-17T08:11:09.0344784Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-07-17T08:11:09.0349086Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-07-17T08:11:09.0353176Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-07-17T08:11:09.0356736Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0360049Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-07-17T08:11:09.0363335Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-07-17T08:11:09.0367305Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-07-17T08:11:09.0371097Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-07-17T08:11:09.0374807Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0377970Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-07-17T08:11:09.0381201Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-07-17T08:11:09.0385163Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-07-17T08:11:09.0388544Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-07-17T08:11:09.0391819Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0394796Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-07-17T08:11:09.0397753Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-07-17T08:11:09.0401194Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-07-17T08:11:09.0404615Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-07-17T08:11:09.0407667Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0410761Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-07-17T08:11:09.0413971Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-07-17T08:11:09.0417231Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-07-17T08:11:09.0420374Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-07-17T08:11:09.0423611Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0426613Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-07-17T08:11:09.0429564Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-07-17T08:11:09.0433032Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-07-17T08:11:09.0436589Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-07-17T08:11:09.0440057Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0443170Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-07-17T08:11:09.0446315Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-07-17T08:11:09.0450126Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-07-17T08:11:09.0454143Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-07-17T08:11:09.0457063Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0460152Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-07-17T08:11:09.0463359Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-07-17T08:11:09.0466977Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-07-17T08:11:09.0470361Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-07-17T08:11:09.0473659Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0476575Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-07-17T08:11:09.0479602Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-07-17T08:11:09.0482883Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-07-17T08:11:09.0486063Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-07-17T08:11:09.0489560Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0492885Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-07-17T08:11:09.0495921Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-07-17T08:11:09.0498996Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-07-17T08:11:09.0502111Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-07-17T08:11:09.0505360Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0508342Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-07-17T08:11:09.0511333Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-07-17T08:11:09.0514583Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-07-17T08:11:09.0518024Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-07-17T08:11:09.0521463Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0524554Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-07-17T08:11:09.0527719Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-07-17T08:11:09.0532423Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-07-17T08:11:09.0535849Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-07-17T08:11:09.0539171Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0542180Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-07-17T08:11:09.0545149Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-07-17T08:11:09.0548366Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-07-17T08:11:09.0551509Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-07-17T08:11:09.0554784Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0557772Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-07-17T08:11:09.0560908Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-07-17T08:11:09.0564328Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-07-17T08:11:09.0567405Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-07-17T08:11:09.0570765Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0573758Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-07-17T08:11:09.0576727Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-07-17T08:11:09.0579944Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-07-17T08:11:09.0583090Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-07-17T08:11:09.0586480Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0589487Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-07-17T08:11:09.0592504Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-07-17T08:11:09.0595771Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-07-17T08:11:09.0599208Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-07-17T08:11:09.0602131Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0605131Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-07-17T08:11:09.0608041Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-07-17T08:11:09.0611354Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-07-17T08:11:09.0614497Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-07-17T08:11:09.0617766Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0620739Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-07-17T08:11:09.0623824Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-07-17T08:11:09.0627041Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-07-17T08:11:09.0630337Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-07-17T08:11:09.0633808Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0636864Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-07-17T08:11:09.0640064Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-07-17T08:11:09.0643826Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-07-17T08:11:09.0647129Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-07-17T08:11:09.0650638Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0653667Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-07-17T08:11:09.0656938Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-07-17T08:11:09.0660085Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-07-17T08:11:09.0663369Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-07-17T08:11:09.0666547Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-07-17T08:11:09.0670095Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0673170Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-07-17T08:11:09.0676046Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-07-17T08:11:09.0679426Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-07-17T08:11:09.0682547Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-07-17T08:11:09.0686015Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0690037Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-07-17T08:11:09.0692350Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-07-17T08:11:09.0695925Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-07-17T08:11:09.0698857Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-07-17T08:11:09.0702376Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0705276Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-07-17T08:11:09.0708838Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-07-17T08:11:09.0713071Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-07-17T08:11:09.0716550Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0720202Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-07-17T08:11:09.0723030Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-07-17T08:11:09.0726382Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-07-17T08:11:09.0729580Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-07-17T08:11:09.0733129Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0736155Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-07-17T08:11:09.0739335Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-07-17T08:11:09.0743229Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-07-17T08:11:09.0746073Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-07-17T08:11:09.0749940Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0752943Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-07-17T08:11:09.0756226Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-07-17T08:11:09.0759899Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-07-17T08:11:09.0763519Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-07-17T08:11:09.0766963Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0770332Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-07-17T08:11:09.0773592Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-07-17T08:11:09.0777419Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-07-17T08:11:09.0781149Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-07-17T08:11:09.0784684Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0787956Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-07-17T08:11:09.0791177Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-07-17T08:11:09.0795180Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-07-17T08:11:09.0798669Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-07-17T08:11:09.0801969Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0805138Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-07-17T08:11:09.0808148Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-07-17T08:11:09.0811569Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-07-17T08:11:09.0814766Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-07-17T08:11:09.0818232Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0821360Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-07-17T08:11:09.0824569Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-07-17T08:11:09.0827806Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-07-17T08:11:09.0831337Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-07-17T08:11:09.0834995Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0838156Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-07-17T08:11:09.0841517Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-07-17T08:11:09.0845721Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-07-17T08:11:09.0868545Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-07-17T08:11:09.0869123Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0869714Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-07-17T08:11:09.0870192Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-07-17T08:11:09.0870726Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-07-17T08:11:09.0871097Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-07-17T08:11:09.0871588Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0874677Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-07-17T08:11:09.0877635Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-07-17T08:11:09.0881037Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-07-17T08:11:09.0884074Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-07-17T08:11:09.0887585Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0890745Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-07-17T08:11:09.0894000Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-07-17T08:11:09.0897486Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-07-17T08:11:09.0900535Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-07-17T08:11:09.0904209Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0907129Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-07-17T08:11:09.0910122Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-07-17T08:11:09.0913325Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-07-17T08:11:09.0916437Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-07-17T08:11:09.0920125Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0922938Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-07-17T08:11:09.0926031Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-07-17T08:11:09.0929211Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-07-17T08:11:09.0932406Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-07-17T08:11:09.0935635Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0938624Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-07-17T08:11:09.0941576Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-07-17T08:11:09.0944807Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-07-17T08:11:09.0947945Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-07-17T08:11:09.0951495Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0954592Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-07-17T08:11:09.0957422Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-07-17T08:11:09.0960608Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-07-17T08:11:09.0963724Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-07-17T08:11:09.0966955Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0970066Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-07-17T08:11:09.0973195Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-07-17T08:11:09.0976382Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-07-17T08:11:09.0979659Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-07-17T08:11:09.0983092Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.0986182Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-07-17T08:11:09.0989327Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-07-17T08:11:09.0992962Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-07-17T08:11:09.0996536Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-07-17T08:11:09.0999824Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1002840Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-07-17T08:11:09.1005830Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-07-17T08:11:09.1009044Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-07-17T08:11:09.1012305Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-07-17T08:11:09.1015534Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1018550Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-07-17T08:11:09.1021538Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-07-17T08:11:09.1025044Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-07-17T08:11:09.1028173Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-07-17T08:11:09.1031434Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1034431Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-07-17T08:11:09.1037434Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-07-17T08:11:09.1040642Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-07-17T08:11:09.1043998Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-07-17T08:11:09.1047197Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1050163Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-07-17T08:11:09.1053153Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-07-17T08:11:09.1056441Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-07-17T08:11:09.1059589Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-07-17T08:11:09.1062791Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-07-17T08:11:09.1065892Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-07-17T08:11:09.1069077Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-07-17T08:11:09.1072130Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-07-17T08:11:09.1075456Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1078397Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-07-17T08:11:09.1081522Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-07-17T08:11:09.1084589Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-07-17T08:11:09.1088010Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1091093Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-07-17T08:11:09.1094446Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1097410Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-07-17T08:11:09.1100580Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-07-17T08:11:09.1103576Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-07-17T08:11:09.1106742Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-07-17T08:11:09.1110314Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-07-17T08:11:09.1113924Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1116977Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-07-17T08:11:09.1120193Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-07-17T08:11:09.1124026Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-07-17T08:11:09.1127904Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-07-17T08:11:09.1131669Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1134876Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-07-17T08:11:09.1138058Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-07-17T08:11:09.1141314Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-07-17T08:11:09.1145256Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-07-17T08:11:09.1149181Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-07-17T08:11:09.1153363Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1156282Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-07-17T08:11:09.1159634Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-07-17T08:11:09.1162799Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-07-17T08:11:09.1166912Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-07-17T08:11:09.1170590Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-07-17T08:11:09.1174022Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1177572Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-07-17T08:11:09.1180738Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-07-17T08:11:09.1184199Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-07-17T08:11:09.1188033Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-07-17T08:11:09.1191389Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1194614Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-07-17T08:11:09.1197769Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-07-17T08:11:09.1201255Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-07-17T08:11:09.1204932Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-07-17T08:11:09.1208219Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-07-17T08:11:09.1211324Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-07-17T08:11:09.1214480Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-07-17T08:11:09.1217769Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-07-17T08:11:09.1221045Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-07-17T08:11:09.1224424Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-07-17T08:11:09.1227683Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-07-17T08:11:09.1230927Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-07-17T08:11:09.1234190Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-07-17T08:11:09.1237790Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-07-17T08:11:09.1241595Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1245568Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-07-17T08:11:09.1248091Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-07-17T08:11:09.1251573Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-07-17T08:11:09.1255518Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-07-17T08:11:09.1258940Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-07-17T08:11:09.1262968Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1265200Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-07-17T08:11:09.1268718Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1271885Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1274860Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-07-17T08:11:09.1278071Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-07-17T08:11:09.1281338Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-07-17T08:11:09.1284521Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-07-17T08:11:09.1288548Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-07-17T08:11:09.1292189Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.1295191Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-07-17T08:11:09.1298549Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-07-17T08:11:09.1302363Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-07-17T08:11:09.1305173Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-07-17T08:11:09.1309007Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.1311636Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-07-17T08:11:09.1314998Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-07-17T08:11:09.1318329Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1321543Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-07-17T08:11:09.1324845Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-07-17T08:11:09.1328228Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-07-17T08:11:09.1332045Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-07-17T08:11:09.1334630Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-07-17T08:11:09.1337982Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-07-17T08:11:09.1341202Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-07-17T08:11:09.1376388Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.1377206Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-07-17T08:11:09.1377750Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-07-17T08:11:09.1378226Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-07-17T08:11:09.1378768Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1379347Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-07-17T08:11:09.1379818Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-07-17T08:11:09.1380237Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-07-17T08:11:09.1382185Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1382805Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-07-17T08:11:09.1383296Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-07-17T08:11:09.1383738Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-07-17T08:11:09.1385815Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-07-17T08:11:09.1389478Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1392348Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-07-17T08:11:09.1395419Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-07-17T08:11:09.1398838Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-07-17T08:11:09.1402202Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-07-17T08:11:09.1405537Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1408585Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-07-17T08:11:09.1411696Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-07-17T08:11:09.1415208Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-07-17T08:11:09.1418411Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-07-17T08:11:09.1421774Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1424820Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-07-17T08:11:09.1427930Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-07-17T08:11:09.1431056Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-07-17T08:11:09.1434107Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-07-17T08:11:09.1437433Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-07-17T08:11:09.1440511Z adding 'torch/include/ATen/ops/_indices.h' 2025-07-17T08:11:09.1443612Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-07-17T08:11:09.1446998Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1450234Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1453142Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-07-17T08:11:09.1456303Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-07-17T08:11:09.1459287Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-07-17T08:11:09.1462416Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-07-17T08:11:09.1465571Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-07-17T08:11:09.1468764Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-07-17T08:11:09.1471941Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-07-17T08:11:09.1474887Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-07-17T08:11:09.1478090Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-07-17T08:11:09.1481099Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-07-17T08:11:09.1484320Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1487471Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-07-17T08:11:09.1490372Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-07-17T08:11:09.1493434Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-07-17T08:11:09.1497450Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1499645Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-07-17T08:11:09.1502736Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-07-17T08:11:09.1505765Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-07-17T08:11:09.1508990Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.1511883Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-07-17T08:11:09.1514996Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-07-17T08:11:09.1518261Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-07-17T08:11:09.1521539Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-07-17T08:11:09.1524694Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-07-17T08:11:09.1527692Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-07-17T08:11:09.1530953Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-07-17T08:11:09.1534137Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-07-17T08:11:09.1537233Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1539986Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-07-17T08:11:09.1543045Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-07-17T08:11:09.1546107Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-07-17T08:11:09.1549399Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1552271Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-07-17T08:11:09.1555400Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-07-17T08:11:09.1558579Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-07-17T08:11:09.1561923Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1564838Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-07-17T08:11:09.1567938Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-07-17T08:11:09.1571060Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-07-17T08:11:09.1574247Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-07-17T08:11:09.1577247Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-07-17T08:11:09.1580438Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-07-17T08:11:09.1583672Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-07-17T08:11:09.1587016Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1589971Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-07-17T08:11:09.1593089Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-07-17T08:11:09.1596104Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-07-17T08:11:09.1599262Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-07-17T08:11:09.1602293Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-07-17T08:11:09.1605613Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-07-17T08:11:09.1608723Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-07-17T08:11:09.1611873Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-07-17T08:11:09.1614846Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-07-17T08:11:09.1618102Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-07-17T08:11:09.1621205Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-07-17T08:11:09.1624383Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-07-17T08:11:09.1627814Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1630813Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-07-17T08:11:09.1633848Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-07-17T08:11:09.1636845Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-07-17T08:11:09.1639974Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-07-17T08:11:09.1642979Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-07-17T08:11:09.1646233Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-07-17T08:11:09.1649515Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-07-17T08:11:09.1654169Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1656267Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-07-17T08:11:09.1660173Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-07-17T08:11:09.1662621Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-07-17T08:11:09.1665952Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-07-17T08:11:09.1668997Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-07-17T08:11:09.1672501Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-07-17T08:11:09.1675896Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-07-17T08:11:09.1679413Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1682484Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-07-17T08:11:09.1685799Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-07-17T08:11:09.1688960Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-07-17T08:11:09.1692325Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-07-17T08:11:09.1695535Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-07-17T08:11:09.1698838Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-07-17T08:11:09.1702089Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-07-17T08:11:09.1705367Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-07-17T08:11:09.1708470Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-07-17T08:11:09.1711434Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-07-17T08:11:09.1714705Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-07-17T08:11:09.1717893Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-07-17T08:11:09.1721191Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-07-17T08:11:09.1724744Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1727740Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-07-17T08:11:09.1731099Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-07-17T08:11:09.1734187Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-07-17T08:11:09.1737559Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-07-17T08:11:09.1740639Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-07-17T08:11:09.1744294Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-07-17T08:11:09.1748458Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1750629Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-07-17T08:11:09.1754034Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-07-17T08:11:09.1756818Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-07-17T08:11:09.1760097Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-07-17T08:11:09.1763163Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-07-17T08:11:09.1766955Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-07-17T08:11:09.1771207Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-07-17T08:11:09.1773665Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-07-17T08:11:09.1777056Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-07-17T08:11:09.1779934Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-07-17T08:11:09.1783271Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-07-17T08:11:09.1786693Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-07-17T08:11:09.1790341Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1794203Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-07-17T08:11:09.1796865Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-07-17T08:11:09.1800150Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-07-17T08:11:09.1803431Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.1806517Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-07-17T08:11:09.1809734Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-07-17T08:11:09.1813621Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-07-17T08:11:09.1817287Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-07-17T08:11:09.1819885Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-07-17T08:11:09.1823276Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-07-17T08:11:09.1826395Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-07-17T08:11:09.1829823Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1832941Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-07-17T08:11:09.1836513Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1840416Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.1842603Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-07-17T08:11:09.1851775Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-07-17T08:11:09.1852199Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-07-17T08:11:09.1853040Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-07-17T08:11:09.1856411Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-07-17T08:11:09.1860172Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1863662Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-07-17T08:11:09.1867252Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-07-17T08:11:09.1870680Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-07-17T08:11:09.1874527Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-07-17T08:11:09.1877878Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-07-17T08:11:09.1882674Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1884506Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-07-17T08:11:09.1888540Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-07-17T08:11:09.1890916Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-07-17T08:11:09.1894677Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-07-17T08:11:09.1897617Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-07-17T08:11:09.1900971Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1904196Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-07-17T08:11:09.1906998Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-07-17T08:11:09.1911655Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-07-17T08:11:09.1913618Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-07-17T08:11:09.1916841Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-07-17T08:11:09.1920427Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1923551Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-07-17T08:11:09.1927997Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-07-17T08:11:09.1929846Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-07-17T08:11:09.1933206Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-07-17T08:11:09.1936503Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1939554Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-07-17T08:11:09.1942687Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-07-17T08:11:09.1945832Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-07-17T08:11:09.1949115Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-07-17T08:11:09.1952214Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-07-17T08:11:09.1955345Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-07-17T08:11:09.1958603Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-07-17T08:11:09.1961711Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-07-17T08:11:09.1964799Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-07-17T08:11:09.1968152Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1971192Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-07-17T08:11:09.1974295Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-07-17T08:11:09.1977421Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-07-17T08:11:09.1980704Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.1983666Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-07-17T08:11:09.1986706Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-07-17T08:11:09.1989944Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-07-17T08:11:09.1993413Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-07-17T08:11:09.1996969Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2000029Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-07-17T08:11:09.2003267Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-07-17T08:11:09.2007179Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-07-17T08:11:09.2010914Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2013840Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-07-17T08:11:09.2017254Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-07-17T08:11:09.2020762Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-07-17T08:11:09.2024216Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2027410Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-07-17T08:11:09.2070265Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-07-17T08:11:09.2073540Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-07-17T08:11:09.2077128Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-07-17T08:11:09.2080532Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2083455Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-07-17T08:11:09.2086818Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-07-17T08:11:09.2090621Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-07-17T08:11:09.2094173Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-07-17T08:11:09.2097655Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2100807Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-07-17T08:11:09.2103974Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-07-17T08:11:09.2107096Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-07-17T08:11:09.2110581Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-07-17T08:11:09.2113670Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-07-17T08:11:09.2117165Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2120166Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-07-17T08:11:09.2123454Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2126632Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.2129463Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-07-17T08:11:09.2132774Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-07-17T08:11:09.2135757Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-07-17T08:11:09.2138883Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-07-17T08:11:09.2142059Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-07-17T08:11:09.2145255Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-07-17T08:11:09.2148317Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-07-17T08:11:09.2151315Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-07-17T08:11:09.2154403Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-07-17T08:11:09.2157634Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-07-17T08:11:09.2161843Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-07-17T08:11:09.2164378Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2167557Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-07-17T08:11:09.2170973Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-07-17T08:11:09.2174308Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2177354Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-07-17T08:11:09.2180691Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-07-17T08:11:09.2184716Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-07-17T08:11:09.2187149Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-07-17T08:11:09.2190675Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-07-17T08:11:09.2193818Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-07-17T08:11:09.2197185Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-07-17T08:11:09.2200250Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-07-17T08:11:09.2203471Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-07-17T08:11:09.2206563Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-07-17T08:11:09.2209685Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-07-17T08:11:09.2213754Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-07-17T08:11:09.2216020Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-07-17T08:11:09.2219511Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-07-17T08:11:09.2222173Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-07-17T08:11:09.2225459Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-07-17T08:11:09.2228520Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-07-17T08:11:09.2231673Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-07-17T08:11:09.2234824Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-07-17T08:11:09.2238012Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-07-17T08:11:09.2241152Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-07-17T08:11:09.2244497Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-07-17T08:11:09.2248190Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-07-17T08:11:09.2250649Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-07-17T08:11:09.2253960Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-07-17T08:11:09.2257025Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-07-17T08:11:09.2260283Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-07-17T08:11:09.2263791Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2267259Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.2271138Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-07-17T08:11:09.2273491Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-07-17T08:11:09.2276926Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-07-17T08:11:09.2279703Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-07-17T08:11:09.2283011Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-07-17T08:11:09.2286102Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-07-17T08:11:09.2289484Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-07-17T08:11:09.2292732Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-07-17T08:11:09.2295960Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-07-17T08:11:09.2299768Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-07-17T08:11:09.2302439Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-07-17T08:11:09.2305928Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2309066Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-07-17T08:11:09.2312374Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-07-17T08:11:09.2315326Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-07-17T08:11:09.2318694Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-07-17T08:11:09.2322774Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-07-17T08:11:09.2324976Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-07-17T08:11:09.2328795Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-07-17T08:11:09.2331443Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-07-17T08:11:09.2334867Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-07-17T08:11:09.2338114Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-07-17T08:11:09.2341698Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2344630Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-07-17T08:11:09.2365146Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-07-17T08:11:09.2365311Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-07-17T08:11:09.2365598Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2365755Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-07-17T08:11:09.2365902Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-07-17T08:11:09.2366269Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-07-17T08:11:09.2369431Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-07-17T08:11:09.2372921Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-07-17T08:11:09.2377310Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-07-17T08:11:09.2379515Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2383376Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-07-17T08:11:09.2385823Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-07-17T08:11:09.2389358Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-07-17T08:11:09.2392407Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2395296Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-07-17T08:11:09.2398541Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-07-17T08:11:09.2401889Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-07-17T08:11:09.2404973Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-07-17T08:11:09.2408289Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2411654Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.2414749Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-07-17T08:11:09.2418365Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-07-17T08:11:09.2421627Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-07-17T08:11:09.2424715Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-07-17T08:11:09.2427589Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-07-17T08:11:09.2430742Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-07-17T08:11:09.2433869Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-07-17T08:11:09.2437142Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-07-17T08:11:09.2440516Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2443954Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.2447427Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-07-17T08:11:09.2450353Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-07-17T08:11:09.2453416Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-07-17T08:11:09.2456614Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-07-17T08:11:09.2459821Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-07-17T08:11:09.2463148Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2466177Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-07-17T08:11:09.2469448Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-07-17T08:11:09.2472302Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-07-17T08:11:09.2475457Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2478315Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-07-17T08:11:09.2481355Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-07-17T08:11:09.2485837Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-07-17T08:11:09.2489506Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2492633Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-07-17T08:11:09.2495891Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-07-17T08:11:09.2498884Z adding 'torch/include/ATen/ops/_nnz.h' 2025-07-17T08:11:09.2503003Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-07-17T08:11:09.2505211Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-07-17T08:11:09.2508543Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-07-17T08:11:09.2511799Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-07-17T08:11:09.2515056Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2517972Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-07-17T08:11:09.2521084Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-07-17T08:11:09.2524342Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2527279Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-07-17T08:11:09.2530608Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-07-17T08:11:09.2533810Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-07-17T08:11:09.2537134Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2540015Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-07-17T08:11:09.2543113Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-07-17T08:11:09.2546366Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-07-17T08:11:09.2556443Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2556582Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-07-17T08:11:09.2558561Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-07-17T08:11:09.2561602Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-07-17T08:11:09.2565112Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2568035Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-07-17T08:11:09.2571307Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-07-17T08:11:09.2574591Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-07-17T08:11:09.2577830Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-07-17T08:11:09.2580941Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-07-17T08:11:09.2584112Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-07-17T08:11:09.2587134Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-07-17T08:11:09.2590211Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-07-17T08:11:09.2593484Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2596470Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-07-17T08:11:09.2599526Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-07-17T08:11:09.2602571Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-07-17T08:11:09.2606061Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-07-17T08:11:09.2609112Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-07-17T08:11:09.2612538Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2615497Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-07-17T08:11:09.2618528Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-07-17T08:11:09.2621493Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-07-17T08:11:09.2624940Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-07-17T08:11:09.2628099Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-07-17T08:11:09.2631299Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2634192Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-07-17T08:11:09.2637386Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-07-17T08:11:09.2640463Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-07-17T08:11:09.2643575Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-07-17T08:11:09.2646835Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-07-17T08:11:09.2649934Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-07-17T08:11:09.2652947Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-07-17T08:11:09.2656083Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-07-17T08:11:09.2659179Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-07-17T08:11:09.2662259Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-07-17T08:11:09.2665244Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-07-17T08:11:09.2668397Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-07-17T08:11:09.2671430Z adding 'torch/include/ATen/ops/_print.h' 2025-07-17T08:11:09.2674586Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2677433Z adding 'torch/include/ATen/ops/_print_native.h' 2025-07-17T08:11:09.2680486Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-07-17T08:11:09.2683553Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-07-17T08:11:09.2686796Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2689744Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-07-17T08:11:09.2693060Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-07-17T08:11:09.2696165Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-07-17T08:11:09.2699459Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2702530Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-07-17T08:11:09.2705886Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-07-17T08:11:09.2709040Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-07-17T08:11:09.2712525Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-07-17T08:11:09.2716021Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2719113Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.2721933Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-07-17T08:11:09.2725134Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-07-17T08:11:09.2728268Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-07-17T08:11:09.2731456Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-07-17T08:11:09.2734606Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-07-17T08:11:09.2737603Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-07-17T08:11:09.2740656Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-07-17T08:11:09.2743773Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-07-17T08:11:09.2747013Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2749943Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-07-17T08:11:09.2753044Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-07-17T08:11:09.2756033Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-07-17T08:11:09.2759303Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2762153Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-07-17T08:11:09.2765275Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-07-17T08:11:09.2768694Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-07-17T08:11:09.2772241Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2775283Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-07-17T08:11:09.2778293Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-07-17T08:11:09.2781598Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-07-17T08:11:09.2784711Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-07-17T08:11:09.2787909Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2790798Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-07-17T08:11:09.2793917Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-07-17T08:11:09.2796991Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-07-17T08:11:09.2800199Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2803067Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-07-17T08:11:09.2807168Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-07-17T08:11:09.2810459Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-07-17T08:11:09.2814026Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2817604Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-07-17T08:11:09.2820332Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-07-17T08:11:09.2823514Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-07-17T08:11:09.2826751Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-07-17T08:11:09.2830155Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-07-17T08:11:09.2833391Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2836479Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-07-17T08:11:09.2840540Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-07-17T08:11:09.2843060Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-07-17T08:11:09.2846701Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.2849864Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-07-17T08:11:09.2888811Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-07-17T08:11:09.2889177Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-07-17T08:11:09.2889395Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-07-17T08:11:09.2889603Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-07-17T08:11:09.2889809Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-07-17T08:11:09.2890110Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-07-17T08:11:09.2890396Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-07-17T08:11:09.2890659Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-07-17T08:11:09.2890895Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-07-17T08:11:09.2891188Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-07-17T08:11:09.2891470Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-07-17T08:11:09.2894854Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-07-17T08:11:09.2897815Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-07-17T08:11:09.2901294Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-07-17T08:11:09.2904574Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-07-17T08:11:09.2907996Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-07-17T08:11:09.2912820Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-07-17T08:11:09.2914752Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-07-17T08:11:09.2917977Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-07-17T08:11:09.2921284Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-07-17T08:11:09.2924718Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-07-17T08:11:09.2928178Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-07-17T08:11:09.2931830Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-07-17T08:11:09.2935020Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-07-17T08:11:09.2938262Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-07-17T08:11:09.2941772Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-07-17T08:11:09.2944901Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-07-17T08:11:09.2948147Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-07-17T08:11:09.2951414Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-07-17T08:11:09.2954581Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-07-17T08:11:09.2957848Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-07-17T08:11:09.2960959Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-07-17T08:11:09.2963977Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-07-17T08:11:09.2967200Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-07-17T08:11:09.2971012Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-07-17T08:11:09.2973850Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-07-17T08:11:09.2977270Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-07-17T08:11:09.2980843Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-07-17T08:11:09.2984348Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2987398Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-07-17T08:11:09.2990786Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-07-17T08:11:09.2994176Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.2997167Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-07-17T08:11:09.3000526Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-07-17T08:11:09.3004166Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-07-17T08:11:09.3006977Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-07-17T08:11:09.3009891Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-07-17T08:11:09.3013272Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-07-17T08:11:09.3016501Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-07-17T08:11:09.3019794Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-07-17T08:11:09.3023101Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-07-17T08:11:09.3026187Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-07-17T08:11:09.3029470Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-07-17T08:11:09.3032822Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-07-17T08:11:09.3036214Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3039297Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-07-17T08:11:09.3042438Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-07-17T08:11:09.3045588Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-07-17T08:11:09.3048887Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-07-17T08:11:09.3052027Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-07-17T08:11:09.3055304Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3058217Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-07-17T08:11:09.3061331Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-07-17T08:11:09.3065319Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-07-17T08:11:09.3069176Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3072412Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.3075595Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.3078787Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-07-17T08:11:09.3082273Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-07-17T08:11:09.3085869Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-07-17T08:11:09.3089294Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-07-17T08:11:09.3092740Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-07-17T08:11:09.3095857Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-07-17T08:11:09.3099070Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-07-17T08:11:09.3102218Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-07-17T08:11:09.3105494Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3108399Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-07-17T08:11:09.3111689Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-07-17T08:11:09.3114866Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-07-17T08:11:09.3117931Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3120796Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-07-17T08:11:09.3123956Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-07-17T08:11:09.3127057Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-07-17T08:11:09.3130453Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3133440Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-07-17T08:11:09.3136446Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-07-17T08:11:09.3139495Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-07-17T08:11:09.3143330Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3145731Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-07-17T08:11:09.3148870Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-07-17T08:11:09.3151995Z adding 'torch/include/ATen/ops/_softmax.h' 2025-07-17T08:11:09.3155137Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-07-17T08:11:09.3158508Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.3161476Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-07-17T08:11:09.3164826Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-07-17T08:11:09.3168050Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-07-17T08:11:09.3171692Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-07-17T08:11:09.3175155Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-07-17T08:11:09.3178097Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-07-17T08:11:09.3181578Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.3184529Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-07-17T08:11:09.3187875Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-07-17T08:11:09.3191010Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-07-17T08:11:09.3194188Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-07-17T08:11:09.3198188Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-07-17T08:11:09.3200634Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-07-17T08:11:09.3203941Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-07-17T08:11:09.3207286Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3210517Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-07-17T08:11:09.3213947Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-07-17T08:11:09.3217213Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-07-17T08:11:09.3221272Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-07-17T08:11:09.3223852Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3227267Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.3230192Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-07-17T08:11:09.3233665Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-07-17T08:11:09.3236796Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-07-17T08:11:09.3240007Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-07-17T08:11:09.3244268Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-07-17T08:11:09.3246794Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3250116Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-07-17T08:11:09.3253392Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-07-17T08:11:09.3256853Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-07-17T08:11:09.3260083Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3263243Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-07-17T08:11:09.3267275Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-07-17T08:11:09.3270135Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-07-17T08:11:09.3273846Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3276850Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-07-17T08:11:09.3280917Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-07-17T08:11:09.3284691Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-07-17T08:11:09.3287298Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3290523Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-07-17T08:11:09.3293890Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-07-17T08:11:09.3297560Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-07-17T08:11:09.3301911Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3304654Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-07-17T08:11:09.3308091Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-07-17T08:11:09.3311245Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-07-17T08:11:09.3315327Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-07-17T08:11:09.3319282Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3322492Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-07-17T08:11:09.3325816Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-07-17T08:11:09.3329147Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-07-17T08:11:09.3332806Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3336352Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-07-17T08:11:09.3339129Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-07-17T08:11:09.3342620Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-07-17T08:11:09.3345946Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-07-17T08:11:09.3349672Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3363942Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-07-17T08:11:09.3364153Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-07-17T08:11:09.3364278Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-07-17T08:11:09.3364551Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3366992Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-07-17T08:11:09.3373835Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-07-17T08:11:09.3374336Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-07-17T08:11:09.3377723Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3380906Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-07-17T08:11:09.3384212Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-07-17T08:11:09.3387737Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-07-17T08:11:09.3392148Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3394300Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-07-17T08:11:09.3397868Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-07-17T08:11:09.3401155Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-07-17T08:11:09.3404286Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-07-17T08:11:09.3409018Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3410978Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-07-17T08:11:09.3414251Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-07-17T08:11:09.3418086Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3420919Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3425407Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-07-17T08:11:09.3427378Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-07-17T08:11:09.3430605Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-07-17T08:11:09.3433877Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3436775Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-07-17T08:11:09.3439983Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-07-17T08:11:09.3443007Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-07-17T08:11:09.3446275Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3449128Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-07-17T08:11:09.3452440Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-07-17T08:11:09.3456087Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-07-17T08:11:09.3458928Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-07-17T08:11:09.3461977Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-07-17T08:11:09.3465167Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-07-17T08:11:09.3468654Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-07-17T08:11:09.3471790Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-07-17T08:11:09.3474868Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-07-17T08:11:09.3478119Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-07-17T08:11:09.3481154Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-07-17T08:11:09.3484557Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-07-17T08:11:09.3487705Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-07-17T08:11:09.3491101Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-07-17T08:11:09.3494174Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-07-17T08:11:09.3497214Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-07-17T08:11:09.3500181Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-07-17T08:11:09.3503328Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-07-17T08:11:09.3506322Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-07-17T08:11:09.3509462Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-07-17T08:11:09.3512781Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-07-17T08:11:09.3516078Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-07-17T08:11:09.3519070Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-07-17T08:11:09.3522170Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-07-17T08:11:09.3525258Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-07-17T08:11:09.3528451Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-07-17T08:11:09.3531576Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-07-17T08:11:09.3534720Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-07-17T08:11:09.3537881Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-07-17T08:11:09.3541071Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-07-17T08:11:09.3543978Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-07-17T08:11:09.3547721Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-07-17T08:11:09.3550392Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-07-17T08:11:09.3553696Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-07-17T08:11:09.3556894Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3559833Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-07-17T08:11:09.3563777Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-07-17T08:11:09.3567078Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3570282Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3573289Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-07-17T08:11:09.3576623Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-07-17T08:11:09.3579821Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-07-17T08:11:09.3583085Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3586020Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-07-17T08:11:09.3589218Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-07-17T08:11:09.3592363Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-07-17T08:11:09.3595515Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-07-17T08:11:09.3598811Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3601752Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-07-17T08:11:09.3605068Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-07-17T08:11:09.3608727Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3612915Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3614930Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-07-17T08:11:09.3618858Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-07-17T08:11:09.3621718Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-07-17T08:11:09.3625184Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3628364Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-07-17T08:11:09.3631580Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-07-17T08:11:09.3634680Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-07-17T08:11:09.3637987Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-07-17T08:11:09.3641768Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-07-17T08:11:09.3644260Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-07-17T08:11:09.3647554Z adding 'torch/include/ATen/ops/_stack.h' 2025-07-17T08:11:09.3651039Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3654330Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-07-17T08:11:09.3657234Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-07-17T08:11:09.3660577Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-07-17T08:11:09.3664796Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-07-17T08:11:09.3667262Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3670643Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-07-17T08:11:09.3673590Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-07-17T08:11:09.3676949Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-07-17T08:11:09.3680161Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3683363Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-07-17T08:11:09.3686432Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-07-17T08:11:09.3689599Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-07-17T08:11:09.3694116Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-07-17T08:11:09.3696241Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-07-17T08:11:09.3699547Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-07-17T08:11:09.3702740Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-07-17T08:11:09.3706231Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3709141Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-07-17T08:11:09.3712552Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-07-17T08:11:09.3716592Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-07-17T08:11:09.3719320Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3722719Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3725427Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-07-17T08:11:09.3728867Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-07-17T08:11:09.3732133Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-07-17T08:11:09.3735644Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3739615Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-07-17T08:11:09.3742222Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3745976Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.3748414Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-07-17T08:11:09.3751775Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-07-17T08:11:09.3754896Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-07-17T08:11:09.3758696Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-07-17T08:11:09.3762784Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-07-17T08:11:09.3765262Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3768733Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-07-17T08:11:09.3771522Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-07-17T08:11:09.3774800Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-07-17T08:11:09.3778145Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3781372Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-07-17T08:11:09.3784386Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-07-17T08:11:09.3788028Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-07-17T08:11:09.3791435Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-07-17T08:11:09.3794906Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3797939Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-07-17T08:11:09.3800919Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-07-17T08:11:09.3804326Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-07-17T08:11:09.3807525Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-07-17T08:11:09.3811166Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3814346Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-07-17T08:11:09.3818074Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-07-17T08:11:09.3820894Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-07-17T08:11:09.3823942Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-07-17T08:11:09.3827463Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3830480Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-07-17T08:11:09.3833707Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-07-17T08:11:09.3837138Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-07-17T08:11:09.3840305Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-07-17T08:11:09.3843667Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3846611Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-07-17T08:11:09.3849896Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-07-17T08:11:09.3853110Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-07-17T08:11:09.3856622Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3860961Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-07-17T08:11:09.3862934Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-07-17T08:11:09.3872374Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-07-17T08:11:09.3872663Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3873190Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-07-17T08:11:09.3876384Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-07-17T08:11:09.3879807Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-07-17T08:11:09.3884444Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3886402Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-07-17T08:11:09.3890641Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-07-17T08:11:09.3893086Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-07-17T08:11:09.3896868Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3899658Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-07-17T08:11:09.3903151Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-07-17T08:11:09.3907683Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-07-17T08:11:09.3909942Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3912944Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-07-17T08:11:09.3916168Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-07-17T08:11:09.3919349Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-07-17T08:11:09.3923839Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-07-17T08:11:09.3926255Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3929311Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-07-17T08:11:09.3932669Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-07-17T08:11:09.3935988Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-07-17T08:11:09.3939217Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3942234Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-07-17T08:11:09.3945265Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-07-17T08:11:09.3949071Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-07-17T08:11:09.3951932Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-07-17T08:11:09.3955399Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-07-17T08:11:09.3958765Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.3961745Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-07-17T08:11:09.3965069Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3968123Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-07-17T08:11:09.3971268Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-07-17T08:11:09.3974601Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-07-17T08:11:09.3977724Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-07-17T08:11:09.3980957Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-07-17T08:11:09.3984227Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.3987273Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-07-17T08:11:09.3990325Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-07-17T08:11:09.3993641Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-07-17T08:11:09.3997068Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-07-17T08:11:09.4000468Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4003541Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-07-17T08:11:09.4006846Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-07-17T08:11:09.4010989Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-07-17T08:11:09.4013505Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4016537Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-07-17T08:11:09.4019670Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-07-17T08:11:09.4022805Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-07-17T08:11:09.4026613Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4029350Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-07-17T08:11:09.4032604Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-07-17T08:11:09.4035853Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-07-17T08:11:09.4039119Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-07-17T08:11:09.4042400Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4045451Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-07-17T08:11:09.4048557Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-07-17T08:11:09.4051746Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-07-17T08:11:09.4054965Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-07-17T08:11:09.4058391Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-07-17T08:11:09.4061687Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4064714Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-07-17T08:11:09.4067805Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-07-17T08:11:09.4070859Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-07-17T08:11:09.4074120Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-07-17T08:11:09.4077450Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4080476Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-07-17T08:11:09.4083550Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-07-17T08:11:09.4087380Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4089858Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-07-17T08:11:09.4093170Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-07-17T08:11:09.4096168Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-07-17T08:11:09.4099386Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-07-17T08:11:09.4102495Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-07-17T08:11:09.4105772Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4108765Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-07-17T08:11:09.4112240Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-07-17T08:11:09.4115074Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-07-17T08:11:09.4118425Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-07-17T08:11:09.4121677Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-07-17T08:11:09.4124962Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-07-17T08:11:09.4128363Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-07-17T08:11:09.4132071Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-07-17T08:11:09.4135394Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-07-17T08:11:09.4138229Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-07-17T08:11:09.4141491Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-07-17T08:11:09.4144657Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-07-17T08:11:09.4148215Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4151829Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-07-17T08:11:09.4154714Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-07-17T08:11:09.4158627Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-07-17T08:11:09.4161120Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-07-17T08:11:09.4164749Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-07-17T08:11:09.4168331Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4171809Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-07-17T08:11:09.4175748Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-07-17T08:11:09.4178515Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-07-17T08:11:09.4182185Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-07-17T08:11:09.4185296Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-07-17T08:11:09.4188827Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4193077Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4195431Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-07-17T08:11:09.4198903Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-07-17T08:11:09.4202364Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-07-17T08:11:09.4206072Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4209582Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-07-17T08:11:09.4212386Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-07-17T08:11:09.4216055Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-07-17T08:11:09.4219163Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-07-17T08:11:09.4222632Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4226275Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-07-17T08:11:09.4229186Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-07-17T08:11:09.4233151Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-07-17T08:11:09.4235457Z adding 'torch/include/ATen/ops/_unique.h' 2025-07-17T08:11:09.4238969Z adding 'torch/include/ATen/ops/_unique2.h' 2025-07-17T08:11:09.4242219Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4245425Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-07-17T08:11:09.4248632Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-07-17T08:11:09.4252042Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-07-17T08:11:09.4256192Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-07-17T08:11:09.4258693Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4262003Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-07-17T08:11:09.4265054Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-07-17T08:11:09.4268248Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-07-17T08:11:09.4271487Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-07-17T08:11:09.4274799Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-07-17T08:11:09.4279020Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4281142Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-07-17T08:11:09.4284836Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-07-17T08:11:09.4287535Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-07-17T08:11:09.4291077Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4294035Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-07-17T08:11:09.4297440Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-07-17T08:11:09.4300650Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-07-17T08:11:09.4304060Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4307974Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-07-17T08:11:09.4310954Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-07-17T08:11:09.4314321Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-07-17T08:11:09.4317723Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4321075Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-07-17T08:11:09.4325271Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-07-17T08:11:09.4327512Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-07-17T08:11:09.4331425Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4334002Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-07-17T08:11:09.4337348Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-07-17T08:11:09.4340704Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-07-17T08:11:09.4344753Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4348392Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-07-17T08:11:09.4350991Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-07-17T08:11:09.4354861Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-07-17T08:11:09.4359248Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-07-17T08:11:09.4362547Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4376203Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-07-17T08:11:09.4376461Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-07-17T08:11:09.4376764Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-07-17T08:11:09.4377078Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-07-17T08:11:09.4380246Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-07-17T08:11:09.4383918Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-07-17T08:11:09.4388543Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4390683Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4394350Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-07-17T08:11:09.4397268Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-07-17T08:11:09.4400523Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-07-17T08:11:09.4403802Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-07-17T08:11:09.4407055Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-07-17T08:11:09.4411633Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-07-17T08:11:09.4414418Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-07-17T08:11:09.4418252Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-07-17T08:11:09.4421909Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4425004Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-07-17T08:11:09.4428629Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-07-17T08:11:09.4431810Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-07-17T08:11:09.4434959Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-07-17T08:11:09.4438096Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-07-17T08:11:09.4441398Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-07-17T08:11:09.4444859Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4447964Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4451277Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-07-17T08:11:09.4454549Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-07-17T08:11:09.4458798Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-07-17T08:11:09.4461117Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-07-17T08:11:09.4464219Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-07-17T08:11:09.4467628Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-07-17T08:11:09.4471335Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-07-17T08:11:09.4475146Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-07-17T08:11:09.4478557Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4481644Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.4484925Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.4488014Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-07-17T08:11:09.4491401Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-07-17T08:11:09.4494663Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-07-17T08:11:09.4497886Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-07-17T08:11:09.4501275Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4504328Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4507340Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-07-17T08:11:09.4510558Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-07-17T08:11:09.4514648Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-07-17T08:11:09.4517083Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-07-17T08:11:09.4520361Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-07-17T08:11:09.4523752Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-07-17T08:11:09.4527406Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-07-17T08:11:09.4531295Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-07-17T08:11:09.4534981Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4538090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.4541476Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.4544496Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-07-17T08:11:09.4547654Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-07-17T08:11:09.4550745Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-07-17T08:11:09.4554060Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-07-17T08:11:09.4557473Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4560542Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4563679Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-07-17T08:11:09.4566888Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-07-17T08:11:09.4569920Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-07-17T08:11:09.4573265Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-07-17T08:11:09.4576425Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-07-17T08:11:09.4579783Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-07-17T08:11:09.4583554Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-07-17T08:11:09.4587364Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-07-17T08:11:09.4590905Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4594145Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.4597463Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.4600544Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-07-17T08:11:09.4603844Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-07-17T08:11:09.4606995Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-07-17T08:11:09.4610350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-07-17T08:11:09.4613765Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4616900Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4620039Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-07-17T08:11:09.4623322Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-07-17T08:11:09.4626369Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-07-17T08:11:09.4629649Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-07-17T08:11:09.4632658Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-07-17T08:11:09.4636026Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-07-17T08:11:09.4639182Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-07-17T08:11:09.4642359Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-17T08:11:09.4645333Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-07-17T08:11:09.4648571Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-07-17T08:11:09.4651817Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-07-17T08:11:09.4655053Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4657924Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-07-17T08:11:09.4660977Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-07-17T08:11:09.4664088Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-07-17T08:11:09.4667254Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-07-17T08:11:09.4670464Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-07-17T08:11:09.4673440Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-07-17T08:11:09.4677057Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-07-17T08:11:09.4679775Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-07-17T08:11:09.4683222Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4686189Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-07-17T08:11:09.4689613Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-07-17T08:11:09.4692937Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-07-17T08:11:09.4696531Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4700388Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-07-17T08:11:09.4702648Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-07-17T08:11:09.4706166Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-07-17T08:11:09.4709352Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4712483Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-07-17T08:11:09.4715665Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-07-17T08:11:09.4719015Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-07-17T08:11:09.4723406Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4725383Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-07-17T08:11:09.4729067Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-07-17T08:11:09.4731903Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-07-17T08:11:09.4735407Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4738440Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-07-17T08:11:09.4741910Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-07-17T08:11:09.4744899Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-07-17T08:11:09.4748448Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4752144Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-07-17T08:11:09.4754601Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-07-17T08:11:09.4757766Z adding 'torch/include/ATen/ops/_values.h' 2025-07-17T08:11:09.4760915Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-07-17T08:11:09.4764354Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4767479Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4770582Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-07-17T08:11:09.4774366Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-07-17T08:11:09.4777006Z adding 'torch/include/ATen/ops/_values_native.h' 2025-07-17T08:11:09.4780337Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-07-17T08:11:09.4783471Z adding 'torch/include/ATen/ops/_version.h' 2025-07-17T08:11:09.4786741Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4789643Z adding 'torch/include/ATen/ops/_version_native.h' 2025-07-17T08:11:09.4792922Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-07-17T08:11:09.4796036Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-07-17T08:11:09.4799405Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-07-17T08:11:09.4803139Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-07-17T08:11:09.4805804Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-07-17T08:11:09.4809711Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-07-17T08:11:09.4812280Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-07-17T08:11:09.4815493Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-07-17T08:11:09.4818676Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-07-17T08:11:09.4822393Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-07-17T08:11:09.4825509Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-07-17T08:11:09.4828738Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-07-17T08:11:09.4832718Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-07-17T08:11:09.4835049Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-07-17T08:11:09.4838542Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-07-17T08:11:09.4841394Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-07-17T08:11:09.4844616Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-07-17T08:11:09.4847882Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4851203Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-07-17T08:11:09.4855534Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4857688Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-07-17T08:11:09.4861488Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-07-17T08:11:09.4864109Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-07-17T08:11:09.4867797Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-07-17T08:11:09.4871511Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4874997Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-07-17T08:11:09.4878673Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-07-17T08:11:09.4882199Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-07-17T08:11:09.4885947Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-07-17T08:11:09.4889616Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4892464Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-07-17T08:11:09.4895714Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-07-17T08:11:09.4898733Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-07-17T08:11:09.4902171Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-07-17T08:11:09.4905201Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-07-17T08:11:09.4908639Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-07-17T08:11:09.4911845Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-07-17T08:11:09.4914985Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4918399Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-07-17T08:11:09.4921316Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-07-17T08:11:09.4924499Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-07-17T08:11:09.4927901Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4930940Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-07-17T08:11:09.4934495Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-07-17T08:11:09.4937566Z adding 'torch/include/ATen/ops/abs.h' 2025-07-17T08:11:09.4940813Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.4943824Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-07-17T08:11:09.4946995Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-07-17T08:11:09.4950035Z adding 'torch/include/ATen/ops/abs_native.h' 2025-07-17T08:11:09.4953171Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-07-17T08:11:09.4956301Z adding 'torch/include/ATen/ops/absolute.h' 2025-07-17T08:11:09.4959534Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.4962392Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-07-17T08:11:09.4965824Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-07-17T08:11:09.4969102Z adding 'torch/include/ATen/ops/acos.h' 2025-07-17T08:11:09.4972431Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.4975337Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-07-17T08:11:09.4978424Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-07-17T08:11:09.4981409Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-07-17T08:11:09.4984606Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-07-17T08:11:09.4987588Z adding 'torch/include/ATen/ops/acos_native.h' 2025-07-17T08:11:09.4990680Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-07-17T08:11:09.4993804Z adding 'torch/include/ATen/ops/acosh.h' 2025-07-17T08:11:09.4997139Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5000085Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-07-17T08:11:09.5003147Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-07-17T08:11:09.5006222Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-07-17T08:11:09.5009324Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-07-17T08:11:09.5012373Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-07-17T08:11:09.5015559Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-07-17T08:11:09.5018725Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-07-17T08:11:09.5022219Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5025583Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5028833Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-07-17T08:11:09.5032737Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-07-17T08:11:09.5035456Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-07-17T08:11:09.5038954Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5041982Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-17T08:11:09.5045364Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-17T08:11:09.5048521Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-07-17T08:11:09.5059562Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-07-17T08:11:09.5063089Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-07-17T08:11:09.5066449Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-07-17T08:11:09.5070555Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.5073764Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.5076753Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-07-17T08:11:09.5080087Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-07-17T08:11:09.5084322Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5086662Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-17T08:11:09.5090488Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-17T08:11:09.5092993Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-07-17T08:11:09.5096352Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-07-17T08:11:09.5099444Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-07-17T08:11:09.5102883Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5105917Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-07-17T08:11:09.5109342Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-07-17T08:11:09.5113324Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-07-17T08:11:09.5115732Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-07-17T08:11:09.5119358Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5122315Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.5125557Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.5128688Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-07-17T08:11:09.5132206Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-07-17T08:11:09.5135734Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-07-17T08:11:09.5138545Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-07-17T08:11:09.5142387Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5145050Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-07-17T08:11:09.5148397Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-07-17T08:11:09.5151531Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-07-17T08:11:09.5154762Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-07-17T08:11:09.5157816Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-07-17T08:11:09.5161268Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-07-17T08:11:09.5165074Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-07-17T08:11:09.5167819Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-07-17T08:11:09.5171567Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5174623Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.5177908Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.5180910Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-07-17T08:11:09.5184226Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-07-17T08:11:09.5188135Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-07-17T08:11:09.5190689Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-07-17T08:11:09.5194188Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5197184Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-07-17T08:11:09.5200480Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-07-17T08:11:09.5211872Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-07-17T08:11:09.5215521Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-07-17T08:11:09.5218608Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-07-17T08:11:09.5221941Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-07-17T08:11:09.5225286Z adding 'torch/include/ATen/ops/add.h' 2025-07-17T08:11:09.5228777Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5232222Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5235164Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-07-17T08:11:09.5238301Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-07-17T08:11:09.5241507Z adding 'torch/include/ATen/ops/add_meta.h' 2025-07-17T08:11:09.5244691Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-07-17T08:11:09.5248043Z adding 'torch/include/ATen/ops/add_native.h' 2025-07-17T08:11:09.5252017Z adding 'torch/include/ATen/ops/add_ops.h' 2025-07-17T08:11:09.5255132Z adding 'torch/include/ATen/ops/addbmm.h' 2025-07-17T08:11:09.5258549Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-07-17T08:11:09.5261810Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-07-17T08:11:09.5264942Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-07-17T08:11:09.5267933Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-07-17T08:11:09.5271370Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-07-17T08:11:09.5275087Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-07-17T08:11:09.5278269Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5281456Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-07-17T08:11:09.5284642Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-07-17T08:11:09.5287729Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-07-17T08:11:09.5290936Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-07-17T08:11:09.5294133Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-07-17T08:11:09.5298082Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-07-17T08:11:09.5300795Z adding 'torch/include/ATen/ops/addcmul.h' 2025-07-17T08:11:09.5304389Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5307235Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-07-17T08:11:09.5310486Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-07-17T08:11:09.5313530Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-07-17T08:11:09.5316874Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-07-17T08:11:09.5319950Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-07-17T08:11:09.5323550Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-07-17T08:11:09.5327007Z adding 'torch/include/ATen/ops/addmm.h' 2025-07-17T08:11:09.5330477Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5333722Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-07-17T08:11:09.5336979Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-07-17T08:11:09.5340140Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-07-17T08:11:09.5343445Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-07-17T08:11:09.5346927Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-07-17T08:11:09.5350376Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-07-17T08:11:09.5353632Z adding 'torch/include/ATen/ops/addmv.h' 2025-07-17T08:11:09.5357420Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5361357Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-07-17T08:11:09.5363754Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-07-17T08:11:09.5387841Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-07-17T08:11:09.5388011Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-07-17T08:11:09.5388139Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-07-17T08:11:09.5388256Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-07-17T08:11:09.5388358Z adding 'torch/include/ATen/ops/addr.h' 2025-07-17T08:11:09.5388586Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5388715Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-07-17T08:11:09.5391608Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-07-17T08:11:09.5394907Z adding 'torch/include/ATen/ops/addr_native.h' 2025-07-17T08:11:09.5398217Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-07-17T08:11:09.5401512Z adding 'torch/include/ATen/ops/adjoint.h' 2025-07-17T08:11:09.5404875Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5407925Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-07-17T08:11:09.5412007Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-07-17T08:11:09.5414589Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-07-17T08:11:09.5417925Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-07-17T08:11:09.5421262Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5424350Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-07-17T08:11:09.5427528Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-07-17T08:11:09.5430847Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5433778Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-07-17T08:11:09.5437006Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-07-17T08:11:09.5440216Z adding 'torch/include/ATen/ops/alias.h' 2025-07-17T08:11:09.5443480Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5446456Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-07-17T08:11:09.5449712Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5452963Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5455755Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-07-17T08:11:09.5458918Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-07-17T08:11:09.5461937Z adding 'torch/include/ATen/ops/alias_native.h' 2025-07-17T08:11:09.5465162Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-07-17T08:11:09.5468149Z adding 'torch/include/ATen/ops/align_as.h' 2025-07-17T08:11:09.5471429Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5474274Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-07-17T08:11:09.5477353Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-07-17T08:11:09.5480391Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-07-17T08:11:09.5483803Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5486720Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-07-17T08:11:09.5489729Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-07-17T08:11:09.5492788Z adding 'torch/include/ATen/ops/align_to.h' 2025-07-17T08:11:09.5496019Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5498908Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-07-17T08:11:09.5502172Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-07-17T08:11:09.5505463Z adding 'torch/include/ATen/ops/all.h' 2025-07-17T08:11:09.5508682Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5511884Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5514891Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5517937Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-07-17T08:11:09.5521196Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-07-17T08:11:09.5524279Z adding 'torch/include/ATen/ops/all_meta.h' 2025-07-17T08:11:09.5527623Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-07-17T08:11:09.5530835Z adding 'torch/include/ATen/ops/all_native.h' 2025-07-17T08:11:09.5534300Z adding 'torch/include/ATen/ops/all_ops.h' 2025-07-17T08:11:09.5537489Z adding 'torch/include/ATen/ops/allclose.h' 2025-07-17T08:11:09.5540743Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5543706Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-07-17T08:11:09.5546933Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-07-17T08:11:09.5549969Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-07-17T08:11:09.5553224Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5556058Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-07-17T08:11:09.5559217Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-07-17T08:11:09.5562348Z adding 'torch/include/ATen/ops/amax.h' 2025-07-17T08:11:09.5565760Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5568555Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-07-17T08:11:09.5571763Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-07-17T08:11:09.5574810Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-07-17T08:11:09.5577903Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-07-17T08:11:09.5580874Z adding 'torch/include/ATen/ops/amax_native.h' 2025-07-17T08:11:09.5584061Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-07-17T08:11:09.5587158Z adding 'torch/include/ATen/ops/amin.h' 2025-07-17T08:11:09.5590451Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5593675Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-07-17T08:11:09.5596789Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-07-17T08:11:09.5599794Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-07-17T08:11:09.5602980Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-07-17T08:11:09.5605973Z adding 'torch/include/ATen/ops/amin_native.h' 2025-07-17T08:11:09.5609157Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-07-17T08:11:09.5612496Z adding 'torch/include/ATen/ops/aminmax.h' 2025-07-17T08:11:09.5615850Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5618833Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-07-17T08:11:09.5622035Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-07-17T08:11:09.5625016Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-07-17T08:11:09.5628349Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-07-17T08:11:09.5632357Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-07-17T08:11:09.5634710Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-07-17T08:11:09.5638122Z adding 'torch/include/ATen/ops/and.h' 2025-07-17T08:11:09.5641332Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5644376Z adding 'torch/include/ATen/ops/and_native.h' 2025-07-17T08:11:09.5647609Z adding 'torch/include/ATen/ops/and_ops.h' 2025-07-17T08:11:09.5650999Z adding 'torch/include/ATen/ops/angle.h' 2025-07-17T08:11:09.5654716Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-07-17T08:11:09.5657331Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-07-17T08:11:09.5660638Z adding 'torch/include/ATen/ops/angle_native.h' 2025-07-17T08:11:09.5663831Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-07-17T08:11:09.5667320Z adding 'torch/include/ATen/ops/any.h' 2025-07-17T08:11:09.5671397Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5674908Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5678115Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5681274Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-07-17T08:11:09.5684515Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-07-17T08:11:09.5687562Z adding 'torch/include/ATen/ops/any_meta.h' 2025-07-17T08:11:09.5690980Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-07-17T08:11:09.5694102Z adding 'torch/include/ATen/ops/any_native.h' 2025-07-17T08:11:09.5697798Z adding 'torch/include/ATen/ops/any_ops.h' 2025-07-17T08:11:09.5701463Z adding 'torch/include/ATen/ops/arange.h' 2025-07-17T08:11:09.5704949Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5708150Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-07-17T08:11:09.5711228Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-07-17T08:11:09.5714461Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-07-17T08:11:09.5717565Z adding 'torch/include/ATen/ops/arange_native.h' 2025-07-17T08:11:09.5721432Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-07-17T08:11:09.5724634Z adding 'torch/include/ATen/ops/arccos.h' 2025-07-17T08:11:09.5727982Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5731234Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-07-17T08:11:09.5734436Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-07-17T08:11:09.5737725Z adding 'torch/include/ATen/ops/arccosh.h' 2025-07-17T08:11:09.5741221Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5744115Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-07-17T08:11:09.5747359Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-07-17T08:11:09.5750463Z adding 'torch/include/ATen/ops/arcsin.h' 2025-07-17T08:11:09.5753868Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5764217Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-07-17T08:11:09.5764972Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-07-17T08:11:09.5765301Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-07-17T08:11:09.5766504Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5769333Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-07-17T08:11:09.5772823Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-07-17T08:11:09.5776481Z adding 'torch/include/ATen/ops/arctan.h' 2025-07-17T08:11:09.5779333Z adding 'torch/include/ATen/ops/arctan2.h' 2025-07-17T08:11:09.5782696Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5785584Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-07-17T08:11:09.5788937Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-07-17T08:11:09.5792221Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5795256Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-07-17T08:11:09.5799334Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-07-17T08:11:09.5801988Z adding 'torch/include/ATen/ops/arctanh.h' 2025-07-17T08:11:09.5805526Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5808052Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-07-17T08:11:09.5811458Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-07-17T08:11:09.5814577Z adding 'torch/include/ATen/ops/argmax.h' 2025-07-17T08:11:09.5818098Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5822421Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-07-17T08:11:09.5825153Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-07-17T08:11:09.5828382Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-07-17T08:11:09.5831400Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-07-17T08:11:09.5834542Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-07-17T08:11:09.5837746Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-07-17T08:11:09.5841049Z adding 'torch/include/ATen/ops/argmin.h' 2025-07-17T08:11:09.5845354Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5847538Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-07-17T08:11:09.5851368Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-07-17T08:11:09.5853860Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-07-17T08:11:09.5857088Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-07-17T08:11:09.5860111Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-07-17T08:11:09.5863419Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-07-17T08:11:09.5866614Z adding 'torch/include/ATen/ops/argsort.h' 2025-07-17T08:11:09.5870135Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5873109Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-07-17T08:11:09.5876803Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-07-17T08:11:09.5888260Z adding 'torch/include/ATen/ops/argwhere.h' 2025-07-17T08:11:09.5888847Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.5889325Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-07-17T08:11:09.5890600Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-07-17T08:11:09.5894553Z adding 'torch/include/ATen/ops/as_strided.h' 2025-07-17T08:11:09.5897663Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5901161Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-07-17T08:11:09.5904518Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5907956Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5910845Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-07-17T08:11:09.5914295Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-07-17T08:11:09.5917483Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-07-17T08:11:09.5920697Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-07-17T08:11:09.5924052Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-07-17T08:11:09.5927000Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-07-17T08:11:09.5930282Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-07-17T08:11:09.5933866Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-07-17T08:11:09.5937327Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.5940854Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5943809Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-07-17T08:11:09.5946949Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-07-17T08:11:09.5950038Z adding 'torch/include/ATen/ops/asin.h' 2025-07-17T08:11:09.5953463Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5956290Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-07-17T08:11:09.5959279Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-07-17T08:11:09.5962203Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-07-17T08:11:09.5965330Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-07-17T08:11:09.5968244Z adding 'torch/include/ATen/ops/asin_native.h' 2025-07-17T08:11:09.5971692Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-07-17T08:11:09.5974790Z adding 'torch/include/ATen/ops/asinh.h' 2025-07-17T08:11:09.5978109Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.5980974Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-07-17T08:11:09.5984037Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-07-17T08:11:09.5987071Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-07-17T08:11:09.5990124Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-07-17T08:11:09.5993148Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-07-17T08:11:09.5996341Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-07-17T08:11:09.5999456Z adding 'torch/include/ATen/ops/atan.h' 2025-07-17T08:11:09.6002524Z adding 'torch/include/ATen/ops/atan2.h' 2025-07-17T08:11:09.6005800Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6008691Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-07-17T08:11:09.6011866Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-07-17T08:11:09.6014844Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-07-17T08:11:09.6017930Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-07-17T08:11:09.6020908Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-07-17T08:11:09.6024107Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-07-17T08:11:09.6027705Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6030621Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-07-17T08:11:09.6033774Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-07-17T08:11:09.6036680Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-07-17T08:11:09.6039762Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-07-17T08:11:09.6042779Z adding 'torch/include/ATen/ops/atan_native.h' 2025-07-17T08:11:09.6045965Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-07-17T08:11:09.6049082Z adding 'torch/include/ATen/ops/atanh.h' 2025-07-17T08:11:09.6052545Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6055445Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-07-17T08:11:09.6058601Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-07-17T08:11:09.6061486Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-07-17T08:11:09.6064547Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-07-17T08:11:09.6067653Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-07-17T08:11:09.6070853Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-07-17T08:11:09.6073954Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-07-17T08:11:09.6077230Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6080263Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-07-17T08:11:09.6083349Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-07-17T08:11:09.6086351Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-07-17T08:11:09.6089562Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6092553Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-07-17T08:11:09.6095711Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-07-17T08:11:09.6098829Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-07-17T08:11:09.6102028Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6105162Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-07-17T08:11:09.6108128Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-07-17T08:11:09.6111314Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-07-17T08:11:09.6114519Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6117569Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6120488Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-07-17T08:11:09.6123718Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-07-17T08:11:09.6127478Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-07-17T08:11:09.6130668Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-07-17T08:11:09.6134285Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6137219Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.6140568Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.6144173Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-07-17T08:11:09.6147014Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-07-17T08:11:09.6150700Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-07-17T08:11:09.6153552Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-07-17T08:11:09.6157137Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6160228Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-07-17T08:11:09.6163412Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-07-17T08:11:09.6167803Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-07-17T08:11:09.6170342Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-07-17T08:11:09.6173701Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-07-17T08:11:09.6176975Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-07-17T08:11:09.6180499Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-07-17T08:11:09.6183874Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-07-17T08:11:09.6187344Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6191034Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.6193687Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.6196872Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-07-17T08:11:09.6200072Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-07-17T08:11:09.6203395Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-07-17T08:11:09.6206784Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-07-17T08:11:09.6210243Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6214004Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-07-17T08:11:09.6216626Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-07-17T08:11:09.6219797Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-07-17T08:11:09.6223006Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-07-17T08:11:09.6226266Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-07-17T08:11:09.6229591Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-07-17T08:11:09.6233051Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-07-17T08:11:09.6237073Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6239577Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-07-17T08:11:09.6242893Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-07-17T08:11:09.6245957Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-07-17T08:11:09.6249269Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-07-17T08:11:09.6252727Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-07-17T08:11:09.6256216Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-07-17T08:11:09.6260009Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-07-17T08:11:09.6263142Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6266217Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-07-17T08:11:09.6269579Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-07-17T08:11:09.6272916Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-07-17T08:11:09.6276179Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-07-17T08:11:09.6279599Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-07-17T08:11:09.6282768Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-07-17T08:11:09.6286001Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-07-17T08:11:09.6289422Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6292559Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-07-17T08:11:09.6295739Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-07-17T08:11:09.6299993Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-07-17T08:11:09.6302340Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-07-17T08:11:09.6305903Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-07-17T08:11:09.6309092Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-07-17T08:11:09.6312621Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6315648Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-07-17T08:11:09.6318879Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-07-17T08:11:09.6323050Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-07-17T08:11:09.6325761Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6328870Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-07-17T08:11:09.6332184Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-07-17T08:11:09.6335364Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-07-17T08:11:09.6338581Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-07-17T08:11:09.6341987Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-07-17T08:11:09.6346335Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6348832Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-07-17T08:11:09.6352136Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-07-17T08:11:09.6355256Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-07-17T08:11:09.6358736Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-07-17T08:11:09.6362080Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6365326Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-07-17T08:11:09.6369255Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-07-17T08:11:09.6372406Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-07-17T08:11:09.6375645Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-07-17T08:11:09.6378729Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-07-17T08:11:09.6387907Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-07-17T08:11:09.6388439Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6389080Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-07-17T08:11:09.6392150Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-07-17T08:11:09.6395695Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-07-17T08:11:09.6400111Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-07-17T08:11:09.6402376Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6406147Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-07-17T08:11:09.6408674Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-07-17T08:11:09.6412159Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-07-17T08:11:09.6415218Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-07-17T08:11:09.6418484Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-07-17T08:11:09.6423284Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6425309Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6428268Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-07-17T08:11:09.6431377Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-07-17T08:11:09.6434456Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-07-17T08:11:09.6437609Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-07-17T08:11:09.6441674Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-07-17T08:11:09.6444748Z adding 'torch/include/ATen/ops/bilinear.h' 2025-07-17T08:11:09.6447975Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6450924Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-07-17T08:11:09.6454026Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-07-17T08:11:09.6457204Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-07-17T08:11:09.6460420Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-07-17T08:11:09.6463736Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-07-17T08:11:09.6466877Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-07-17T08:11:09.6470529Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-07-17T08:11:09.6473306Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-07-17T08:11:09.6476472Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-07-17T08:11:09.6479590Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-07-17T08:11:09.6482611Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-07-17T08:11:09.6485911Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-07-17T08:11:09.6489164Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-07-17T08:11:09.6492544Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6495465Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-07-17T08:11:09.6498686Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-07-17T08:11:09.6501955Z adding 'torch/include/ATen/ops/bincount.h' 2025-07-17T08:11:09.6505306Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6508427Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-07-17T08:11:09.6511502Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-07-17T08:11:09.6514407Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-07-17T08:11:09.6517590Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-07-17T08:11:09.6520705Z adding 'torch/include/ATen/ops/binomial.h' 2025-07-17T08:11:09.6523912Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6527066Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-07-17T08:11:09.6530257Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-07-17T08:11:09.6533583Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-07-17T08:11:09.6536624Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-07-17T08:11:09.6539931Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-07-17T08:11:09.6543248Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6546414Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6549343Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-07-17T08:11:09.6552471Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-07-17T08:11:09.6555420Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-07-17T08:11:09.6558423Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-07-17T08:11:09.6562131Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-07-17T08:11:09.6565694Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-07-17T08:11:09.6569079Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-07-17T08:11:09.6572560Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6575823Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6578729Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-07-17T08:11:09.6581741Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-07-17T08:11:09.6584735Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-07-17T08:11:09.6587838Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-07-17T08:11:09.6590855Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-07-17T08:11:09.6594608Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-07-17T08:11:09.6597879Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-07-17T08:11:09.6601227Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6604049Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-07-17T08:11:09.6607119Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-07-17T08:11:09.6610156Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-07-17T08:11:09.6613256Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-07-17T08:11:09.6616211Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-07-17T08:11:09.6619425Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-07-17T08:11:09.6622780Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-07-17T08:11:09.6626027Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6629366Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6632293Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-07-17T08:11:09.6635364Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-07-17T08:11:09.6638310Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-07-17T08:11:09.6641389Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-07-17T08:11:09.6644622Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-07-17T08:11:09.6648131Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-07-17T08:11:09.6651661Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-07-17T08:11:09.6655073Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6658295Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6661211Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-07-17T08:11:09.6664262Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-07-17T08:11:09.6667296Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-07-17T08:11:09.6670389Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-07-17T08:11:09.6673430Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-07-17T08:11:09.6676893Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-07-17T08:11:09.6680193Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-07-17T08:11:09.6683534Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6686671Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6689731Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-07-17T08:11:09.6693372Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-07-17T08:11:09.6695880Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-07-17T08:11:09.6698954Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-07-17T08:11:09.6702010Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-07-17T08:11:09.6705574Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-07-17T08:11:09.6708984Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-07-17T08:11:09.6712536Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6715484Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-07-17T08:11:09.6718759Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-07-17T08:11:09.6721846Z adding 'torch/include/ATen/ops/block_diag.h' 2025-07-17T08:11:09.6725130Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6729047Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-07-17T08:11:09.6731440Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-07-17T08:11:09.6734822Z adding 'torch/include/ATen/ops/bmm.h' 2025-07-17T08:11:09.6738053Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6741112Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-07-17T08:11:09.6744194Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-07-17T08:11:09.6747370Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-07-17T08:11:09.6750760Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-07-17T08:11:09.6754102Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-07-17T08:11:09.6757773Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-07-17T08:11:09.6760757Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-07-17T08:11:09.6764308Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6767141Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-07-17T08:11:09.6770570Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-07-17T08:11:09.6773626Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-07-17T08:11:09.6777173Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6781072Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-07-17T08:11:09.6783181Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-07-17T08:11:09.6786746Z adding 'torch/include/ATen/ops/bucketize.h' 2025-07-17T08:11:09.6789814Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6792997Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-07-17T08:11:09.6796162Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-07-17T08:11:09.6799243Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-07-17T08:11:09.6802601Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-07-17T08:11:09.6805845Z adding 'torch/include/ATen/ops/can_cast.h' 2025-07-17T08:11:09.6809830Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6812186Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-07-17T08:11:09.6815507Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-07-17T08:11:09.6818606Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-07-17T08:11:09.6821833Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6824812Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-07-17T08:11:09.6828072Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-07-17T08:11:09.6831165Z adding 'torch/include/ATen/ops/cat.h' 2025-07-17T08:11:09.6834729Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6838611Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6840873Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-07-17T08:11:09.6844333Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-07-17T08:11:09.6847591Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-07-17T08:11:09.6851057Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-07-17T08:11:09.6854214Z adding 'torch/include/ATen/ops/cat_native.h' 2025-07-17T08:11:09.6857716Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-07-17T08:11:09.6861399Z adding 'torch/include/ATen/ops/cauchy.h' 2025-07-17T08:11:09.6864379Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6867515Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-07-17T08:11:09.6870584Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-07-17T08:11:09.6880242Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-07-17T08:11:09.6880660Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-07-17T08:11:09.6880980Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-07-17T08:11:09.6883969Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-07-17T08:11:09.6887741Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6891076Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-07-17T08:11:09.6895076Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6898703Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6901959Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-07-17T08:11:09.6905457Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-07-17T08:11:09.6909396Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-07-17T08:11:09.6911618Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-07-17T08:11:09.6915371Z adding 'torch/include/ATen/ops/cdist.h' 2025-07-17T08:11:09.6918031Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6921439Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-07-17T08:11:09.6924411Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-07-17T08:11:09.6927767Z adding 'torch/include/ATen/ops/ceil.h' 2025-07-17T08:11:09.6931240Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.6934098Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-07-17T08:11:09.6938604Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-07-17T08:11:09.6940316Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-07-17T08:11:09.6943387Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-07-17T08:11:09.6946398Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-07-17T08:11:09.6949587Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-07-17T08:11:09.6952768Z adding 'torch/include/ATen/ops/celu.h' 2025-07-17T08:11:09.6956290Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6959117Z adding 'torch/include/ATen/ops/celu_native.h' 2025-07-17T08:11:09.6962338Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-07-17T08:11:09.6965486Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-07-17T08:11:09.6968709Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6971663Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-07-17T08:11:09.6974906Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-07-17T08:11:09.6977843Z adding 'torch/include/ATen/ops/chalf.h' 2025-07-17T08:11:09.6981100Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.6983902Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-07-17T08:11:09.6987137Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-07-17T08:11:09.6990420Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-07-17T08:11:09.6993744Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.6996785Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-07-17T08:11:09.6999844Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-07-17T08:11:09.7002743Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-07-17T08:11:09.7005905Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-07-17T08:11:09.7008968Z adding 'torch/include/ATen/ops/cholesky.h' 2025-07-17T08:11:09.7012265Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-07-17T08:11:09.7015362Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-07-17T08:11:09.7018438Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-07-17T08:11:09.7021593Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-07-17T08:11:09.7024654Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-07-17T08:11:09.7027590Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-07-17T08:11:09.7030870Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-07-17T08:11:09.7033790Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-07-17T08:11:09.7036984Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-07-17T08:11:09.7040179Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-07-17T08:11:09.7043409Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7046217Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-07-17T08:11:09.7049341Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-07-17T08:11:09.7052585Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-07-17T08:11:09.7055822Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7058704Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-07-17T08:11:09.7062171Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-07-17T08:11:09.7065155Z adding 'torch/include/ATen/ops/chunk.h' 2025-07-17T08:11:09.7068293Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7071119Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-07-17T08:11:09.7074201Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-07-17T08:11:09.7077408Z adding 'torch/include/ATen/ops/clamp.h' 2025-07-17T08:11:09.7080823Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7083868Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-07-17T08:11:09.7087068Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-07-17T08:11:09.7090240Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-07-17T08:11:09.7093641Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7096589Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-07-17T08:11:09.7099694Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-07-17T08:11:09.7102792Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-07-17T08:11:09.7105940Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-07-17T08:11:09.7108875Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-07-17T08:11:09.7112310Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-07-17T08:11:09.7115441Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-07-17T08:11:09.7118680Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-07-17T08:11:09.7121855Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-07-17T08:11:09.7125186Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7128101Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-07-17T08:11:09.7131300Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-07-17T08:11:09.7134295Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-07-17T08:11:09.7137529Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-07-17T08:11:09.7140504Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-07-17T08:11:09.7143809Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-07-17T08:11:09.7146959Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-07-17T08:11:09.7150397Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-07-17T08:11:09.7153770Z adding 'torch/include/ATen/ops/clip.h' 2025-07-17T08:11:09.7157726Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7160880Z adding 'torch/include/ATen/ops/clip_native.h' 2025-07-17T08:11:09.7164377Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-07-17T08:11:09.7167499Z adding 'torch/include/ATen/ops/clone.h' 2025-07-17T08:11:09.7170849Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7173787Z adding 'torch/include/ATen/ops/clone_native.h' 2025-07-17T08:11:09.7176958Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-07-17T08:11:09.7179945Z adding 'torch/include/ATen/ops/coalesce.h' 2025-07-17T08:11:09.7183213Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7186055Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-07-17T08:11:09.7189241Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-07-17T08:11:09.7193666Z adding 'torch/include/ATen/ops/col2im.h' 2025-07-17T08:11:09.7196100Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-07-17T08:11:09.7199515Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-07-17T08:11:09.7202570Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-07-17T08:11:09.7206069Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-07-17T08:11:09.7209143Z adding 'torch/include/ATen/ops/col_indices.h' 2025-07-17T08:11:09.7212760Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7216755Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-07-17T08:11:09.7219099Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7222739Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7225180Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-07-17T08:11:09.7228475Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-07-17T08:11:09.7231579Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-07-17T08:11:09.7234868Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-07-17T08:11:09.7237802Z adding 'torch/include/ATen/ops/column_stack.h' 2025-07-17T08:11:09.7241255Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7244110Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-07-17T08:11:09.7247388Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-07-17T08:11:09.7251261Z adding 'torch/include/ATen/ops/combinations.h' 2025-07-17T08:11:09.7253904Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7257074Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-07-17T08:11:09.7260066Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-07-17T08:11:09.7263297Z adding 'torch/include/ATen/ops/complex.h' 2025-07-17T08:11:09.7266477Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7272725Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-07-17T08:11:09.7276029Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-07-17T08:11:09.7279963Z adding 'torch/include/ATen/ops/complex_native.h' 2025-07-17T08:11:09.7282498Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-07-17T08:11:09.7285844Z adding 'torch/include/ATen/ops/concat.h' 2025-07-17T08:11:09.7289466Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7292262Z adding 'torch/include/ATen/ops/concat_native.h' 2025-07-17T08:11:09.7295549Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-07-17T08:11:09.7299658Z adding 'torch/include/ATen/ops/concatenate.h' 2025-07-17T08:11:09.7303141Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7306145Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-07-17T08:11:09.7309565Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-07-17T08:11:09.7312616Z adding 'torch/include/ATen/ops/conj.h' 2025-07-17T08:11:09.7315972Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7318813Z adding 'torch/include/ATen/ops/conj_native.h' 2025-07-17T08:11:09.7322081Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-07-17T08:11:09.7325951Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-07-17T08:11:09.7328501Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7331910Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7334741Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-07-17T08:11:09.7337941Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-07-17T08:11:09.7340915Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-07-17T08:11:09.7344310Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-07-17T08:11:09.7347743Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-07-17T08:11:09.7351180Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7354893Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-07-17T08:11:09.7357431Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-07-17T08:11:09.7360894Z adding 'torch/include/ATen/ops/contiguous.h' 2025-07-17T08:11:09.7364123Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7367008Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-07-17T08:11:09.7370185Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-07-17T08:11:09.7373769Z adding 'torch/include/ATen/ops/conv1d.h' 2025-07-17T08:11:09.7397726Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7397877Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-07-17T08:11:09.7397982Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-07-17T08:11:09.7398075Z adding 'torch/include/ATen/ops/conv2d.h' 2025-07-17T08:11:09.7398306Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7398430Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-07-17T08:11:09.7398647Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-07-17T08:11:09.7403527Z adding 'torch/include/ATen/ops/conv3d.h' 2025-07-17T08:11:09.7405778Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7409705Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-07-17T08:11:09.7412309Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-07-17T08:11:09.7415984Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-07-17T08:11:09.7419568Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7422804Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-07-17T08:11:09.7425777Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-07-17T08:11:09.7429025Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-07-17T08:11:09.7432896Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-07-17T08:11:09.7435490Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-07-17T08:11:09.7438846Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7441909Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-07-17T08:11:09.7444675Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-07-17T08:11:09.7449214Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7451100Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-07-17T08:11:09.7454294Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-07-17T08:11:09.7457780Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-07-17T08:11:09.7461080Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7463882Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-07-17T08:11:09.7467034Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-07-17T08:11:09.7470346Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-07-17T08:11:09.7473725Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7476599Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-07-17T08:11:09.7480073Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-07-17T08:11:09.7483379Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-07-17T08:11:09.7486756Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7489675Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-07-17T08:11:09.7492937Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-07-17T08:11:09.7496541Z adding 'torch/include/ATen/ops/convolution.h' 2025-07-17T08:11:09.7500518Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-07-17T08:11:09.7504377Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7507757Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-07-17T08:11:09.7510831Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-07-17T08:11:09.7514211Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-07-17T08:11:09.7518178Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-07-17T08:11:09.7521917Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7524866Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-07-17T08:11:09.7528228Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-07-17T08:11:09.7531754Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7535691Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-07-17T08:11:09.7538146Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-07-17T08:11:09.7542449Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-07-17T08:11:09.7547112Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7549129Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-07-17T08:11:09.7553028Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-07-17T08:11:09.7555578Z adding 'torch/include/ATen/ops/copy.h' 2025-07-17T08:11:09.7558944Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7562074Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7565205Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-07-17T08:11:09.7568358Z adding 'torch/include/ATen/ops/copy_native.h' 2025-07-17T08:11:09.7571721Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-07-17T08:11:09.7575582Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-07-17T08:11:09.7578401Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7582021Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-07-17T08:11:09.7584946Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-07-17T08:11:09.7588236Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-07-17T08:11:09.7591034Z adding 'torch/include/ATen/ops/copysign.h' 2025-07-17T08:11:09.7594543Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7597541Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7600614Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-07-17T08:11:09.7603682Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-07-17T08:11:09.7606798Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-07-17T08:11:09.7610032Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-07-17T08:11:09.7613249Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-07-17T08:11:09.7616659Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-07-17T08:11:09.7619737Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-07-17T08:11:09.7623086Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7625882Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-07-17T08:11:09.7629098Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-07-17T08:11:09.7632138Z adding 'torch/include/ATen/ops/cos.h' 2025-07-17T08:11:09.7635636Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7639611Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-07-17T08:11:09.7641673Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-07-17T08:11:09.7645241Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-07-17T08:11:09.7647820Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-07-17T08:11:09.7651088Z adding 'torch/include/ATen/ops/cos_native.h' 2025-07-17T08:11:09.7654266Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-07-17T08:11:09.7657761Z adding 'torch/include/ATen/ops/cosh.h' 2025-07-17T08:11:09.7660983Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7664049Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-07-17T08:11:09.7667696Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-07-17T08:11:09.7670220Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-07-17T08:11:09.7674047Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-07-17T08:11:09.7676343Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-07-17T08:11:09.7679654Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-07-17T08:11:09.7682916Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-07-17T08:11:09.7686134Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7688950Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-07-17T08:11:09.7692296Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-07-17T08:11:09.7695329Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-07-17T08:11:09.7698710Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7701572Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-07-17T08:11:09.7704864Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-07-17T08:11:09.7708843Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-07-17T08:11:09.7711380Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7714584Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-07-17T08:11:09.7717480Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-07-17T08:11:09.7720612Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-07-17T08:11:09.7723879Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-07-17T08:11:09.7727116Z adding 'torch/include/ATen/ops/cov.h' 2025-07-17T08:11:09.7731088Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7734013Z adding 'torch/include/ATen/ops/cov_native.h' 2025-07-17T08:11:09.7737840Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-07-17T08:11:09.7739787Z adding 'torch/include/ATen/ops/cross.h' 2025-07-17T08:11:09.7743463Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7746261Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-07-17T08:11:09.7749728Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7752681Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-07-17T08:11:09.7756045Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-07-17T08:11:09.7758999Z adding 'torch/include/ATen/ops/cross_native.h' 2025-07-17T08:11:09.7762328Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-07-17T08:11:09.7766277Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-07-17T08:11:09.7768693Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7772098Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-07-17T08:11:09.7775078Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7778485Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.7781336Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-07-17T08:11:09.7784432Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-07-17T08:11:09.7787448Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-07-17T08:11:09.7790666Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-07-17T08:11:09.7793755Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-07-17T08:11:09.7797198Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7800733Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-07-17T08:11:09.7803485Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-07-17T08:11:09.7806897Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-07-17T08:11:09.7810087Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-07-17T08:11:09.7813593Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7816813Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-07-17T08:11:09.7819987Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-07-17T08:11:09.7824051Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-07-17T08:11:09.7826760Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7829983Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-07-17T08:11:09.7832700Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-07-17T08:11:09.7835976Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-07-17T08:11:09.7839201Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-07-17T08:11:09.7842761Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-07-17T08:11:09.7847110Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7849443Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-07-17T08:11:09.7852921Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-07-17T08:11:09.7856073Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-07-17T08:11:09.7859619Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7862684Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-07-17T08:11:09.7865907Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-07-17T08:11:09.7869986Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-07-17T08:11:09.7873122Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-07-17T08:11:09.7877492Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-07-17T08:11:09.7882036Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7883878Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-07-17T08:11:09.7887980Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-07-17T08:11:09.7890554Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-07-17T08:11:09.7893944Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-07-17T08:11:09.7897120Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-07-17T08:11:09.7900766Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-07-17T08:11:09.7909543Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-07-17T08:11:09.7910148Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7913299Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-07-17T08:11:09.7916381Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-07-17T08:11:09.7919776Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-07-17T08:11:09.7923231Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-07-17T08:11:09.7926892Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7930300Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-07-17T08:11:09.7933443Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-07-17T08:11:09.7936657Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-07-17T08:11:09.7939762Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-07-17T08:11:09.7942970Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-07-17T08:11:09.7946668Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7949681Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-07-17T08:11:09.7952527Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-07-17T08:11:09.7955715Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-07-17T08:11:09.7958961Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7961898Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-07-17T08:11:09.7964992Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-07-17T08:11:09.7968201Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-07-17T08:11:09.7971326Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-07-17T08:11:09.7974443Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7977295Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-07-17T08:11:09.7980378Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-07-17T08:11:09.7983458Z adding 'torch/include/ATen/ops/cummax.h' 2025-07-17T08:11:09.7986712Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.7989762Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.7992652Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-07-17T08:11:09.7995930Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-07-17T08:11:09.7999121Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-07-17T08:11:09.8002576Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8005447Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-07-17T08:11:09.8008596Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-07-17T08:11:09.8011902Z adding 'torch/include/ATen/ops/cummin.h' 2025-07-17T08:11:09.8015481Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8018197Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8021053Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-07-17T08:11:09.8024372Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-07-17T08:11:09.8027683Z adding 'torch/include/ATen/ops/cumprod.h' 2025-07-17T08:11:09.8030789Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-07-17T08:11:09.8034005Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8036961Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-07-17T08:11:09.8040184Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-07-17T08:11:09.8043293Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8047027Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8050163Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-07-17T08:11:09.8053337Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-07-17T08:11:09.8056306Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-07-17T08:11:09.8059532Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-07-17T08:11:09.8062463Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-07-17T08:11:09.8065828Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-07-17T08:11:09.8069049Z adding 'torch/include/ATen/ops/cumsum.h' 2025-07-17T08:11:09.8072402Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8075437Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8078384Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-07-17T08:11:09.8081505Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-07-17T08:11:09.8084471Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-07-17T08:11:09.8087456Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-07-17T08:11:09.8090552Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-07-17T08:11:09.8093998Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-07-17T08:11:09.8097327Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-07-17T08:11:09.8100582Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8103420Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-07-17T08:11:09.8106527Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-07-17T08:11:09.8109409Z adding 'torch/include/ATen/ops/data.h' 2025-07-17T08:11:09.8112554Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8115371Z adding 'torch/include/ATen/ops/data_native.h' 2025-07-17T08:11:09.8118415Z adding 'torch/include/ATen/ops/data_ops.h' 2025-07-17T08:11:09.8121546Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-07-17T08:11:09.8124734Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8127517Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-07-17T08:11:09.8130792Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-07-17T08:11:09.8133758Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-07-17T08:11:09.8136936Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8139750Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-07-17T08:11:09.8142797Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-07-17T08:11:09.8145928Z adding 'torch/include/ATen/ops/dequantize.h' 2025-07-17T08:11:09.8149195Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8152111Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-07-17T08:11:09.8155198Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-07-17T08:11:09.8158078Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-07-17T08:11:09.8161639Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-07-17T08:11:09.8164316Z adding 'torch/include/ATen/ops/det.h' 2025-07-17T08:11:09.8167539Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8170417Z adding 'torch/include/ATen/ops/det_native.h' 2025-07-17T08:11:09.8173480Z adding 'torch/include/ATen/ops/det_ops.h' 2025-07-17T08:11:09.8176505Z adding 'torch/include/ATen/ops/detach.h' 2025-07-17T08:11:09.8179636Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8182500Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-07-17T08:11:09.8185669Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8188914Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8191615Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-07-17T08:11:09.8194774Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-07-17T08:11:09.8197728Z adding 'torch/include/ATen/ops/detach_native.h' 2025-07-17T08:11:09.8200818Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-07-17T08:11:09.8203880Z adding 'torch/include/ATen/ops/diag.h' 2025-07-17T08:11:09.8207194Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8210174Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-07-17T08:11:09.8213370Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8216521Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8219314Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-07-17T08:11:09.8222479Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-07-17T08:11:09.8225586Z adding 'torch/include/ATen/ops/diag_native.h' 2025-07-17T08:11:09.8228737Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-07-17T08:11:09.8231832Z adding 'torch/include/ATen/ops/diagflat.h' 2025-07-17T08:11:09.8235045Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8237851Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-07-17T08:11:09.8240884Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-07-17T08:11:09.8243925Z adding 'torch/include/ATen/ops/diagonal.h' 2025-07-17T08:11:09.8247308Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-07-17T08:11:09.8250844Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8253799Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-07-17T08:11:09.8256979Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-07-17T08:11:09.8260143Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8263182Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8266148Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-07-17T08:11:09.8269471Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8272589Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8275301Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-07-17T08:11:09.8278409Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-07-17T08:11:09.8281379Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-07-17T08:11:09.8284527Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-07-17T08:11:09.8287649Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-07-17T08:11:09.8291024Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8294353Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8297496Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-07-17T08:11:09.8301859Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-07-17T08:11:09.8303757Z adding 'torch/include/ATen/ops/diff.h' 2025-07-17T08:11:09.8307493Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8309984Z adding 'torch/include/ATen/ops/diff_native.h' 2025-07-17T08:11:09.8313295Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-07-17T08:11:09.8316344Z adding 'torch/include/ATen/ops/digamma.h' 2025-07-17T08:11:09.8319741Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8322983Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-07-17T08:11:09.8326321Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-07-17T08:11:09.8329099Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-07-17T08:11:09.8332414Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-07-17T08:11:09.8336251Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-07-17T08:11:09.8338644Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-07-17T08:11:09.8342029Z adding 'torch/include/ATen/ops/dist.h' 2025-07-17T08:11:09.8345060Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8348137Z adding 'torch/include/ATen/ops/dist_native.h' 2025-07-17T08:11:09.8351279Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-07-17T08:11:09.8354733Z adding 'torch/include/ATen/ops/div.h' 2025-07-17T08:11:09.8359047Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8361401Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8364906Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-07-17T08:11:09.8367584Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-07-17T08:11:09.8371130Z adding 'torch/include/ATen/ops/div_meta.h' 2025-07-17T08:11:09.8374397Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-07-17T08:11:09.8377583Z adding 'torch/include/ATen/ops/div_native.h' 2025-07-17T08:11:09.8382357Z adding 'torch/include/ATen/ops/div_ops.h' 2025-07-17T08:11:09.8384831Z adding 'torch/include/ATen/ops/divide.h' 2025-07-17T08:11:09.8416531Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8416680Z adding 'torch/include/ATen/ops/divide_native.h' 2025-07-17T08:11:09.8416790Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-07-17T08:11:09.8416881Z adding 'torch/include/ATen/ops/dot.h' 2025-07-17T08:11:09.8417109Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8417232Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-07-17T08:11:09.8417359Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-07-17T08:11:09.8417464Z adding 'torch/include/ATen/ops/dot_native.h' 2025-07-17T08:11:09.8417578Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-07-17T08:11:09.8419864Z adding 'torch/include/ATen/ops/dropout.h' 2025-07-17T08:11:09.8423431Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8426337Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-07-17T08:11:09.8429509Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-07-17T08:11:09.8432577Z adding 'torch/include/ATen/ops/dsplit.h' 2025-07-17T08:11:09.8435979Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8438777Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-07-17T08:11:09.8442127Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-07-17T08:11:09.8445173Z adding 'torch/include/ATen/ops/dstack.h' 2025-07-17T08:11:09.8448532Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8451726Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-07-17T08:11:09.8454693Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-07-17T08:11:09.8457737Z adding 'torch/include/ATen/ops/einsum.h' 2025-07-17T08:11:09.8461036Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8464105Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-07-17T08:11:09.8467851Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-07-17T08:11:09.8470146Z adding 'torch/include/ATen/ops/elu.h' 2025-07-17T08:11:09.8473388Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-07-17T08:11:09.8476680Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8479594Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-07-17T08:11:09.8482661Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-07-17T08:11:09.8485636Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-07-17T08:11:09.8488744Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-07-17T08:11:09.8491800Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-07-17T08:11:09.8495097Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-07-17T08:11:09.8498903Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8501392Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-07-17T08:11:09.8504447Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-07-17T08:11:09.8507420Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-07-17T08:11:09.8510477Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-07-17T08:11:09.8513429Z adding 'torch/include/ATen/ops/elu_native.h' 2025-07-17T08:11:09.8516630Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-07-17T08:11:09.8520042Z adding 'torch/include/ATen/ops/embedding.h' 2025-07-17T08:11:09.8523322Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-07-17T08:11:09.8526635Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8529442Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-07-17T08:11:09.8532702Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-07-17T08:11:09.8535856Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-07-17T08:11:09.8539308Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8542261Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-07-17T08:11:09.8545516Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-07-17T08:11:09.8548884Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8552339Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-07-17T08:11:09.8555786Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8558761Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-07-17T08:11:09.8561826Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-07-17T08:11:09.8564944Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-07-17T08:11:09.8568157Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-07-17T08:11:09.8571209Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-07-17T08:11:09.8574433Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-07-17T08:11:09.8577583Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-07-17T08:11:09.8580874Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8583807Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-07-17T08:11:09.8586800Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-07-17T08:11:09.8589857Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-07-17T08:11:09.8592818Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-07-17T08:11:09.8596034Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-07-17T08:11:09.8599133Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-07-17T08:11:09.8602508Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8605622Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-07-17T08:11:09.8608331Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-07-17T08:11:09.8612167Z adding 'torch/include/ATen/ops/empty.h' 2025-07-17T08:11:09.8615722Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8618753Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8621803Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-07-17T08:11:09.8624886Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-07-17T08:11:09.8628103Z adding 'torch/include/ATen/ops/empty_like.h' 2025-07-17T08:11:09.8631456Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8634516Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-07-17T08:11:09.8637785Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-07-17T08:11:09.8640884Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-07-17T08:11:09.8644069Z adding 'torch/include/ATen/ops/empty_native.h' 2025-07-17T08:11:09.8647510Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-07-17T08:11:09.8651239Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-07-17T08:11:09.8654754Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8657761Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-07-17T08:11:09.8660975Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-07-17T08:11:09.8664170Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-07-17T08:11:09.8667437Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8670330Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-07-17T08:11:09.8673611Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-07-17T08:11:09.8677176Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-07-17T08:11:09.8680668Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8683656Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-07-17T08:11:09.8686684Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-07-17T08:11:09.8689783Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-07-17T08:11:09.8694314Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-07-17T08:11:09.8698464Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-07-17T08:11:09.8703006Z adding 'torch/include/ATen/ops/eq.h' 2025-07-17T08:11:09.8706893Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8710168Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-07-17T08:11:09.8713225Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-07-17T08:11:09.8716194Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-07-17T08:11:09.8719296Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-07-17T08:11:09.8722365Z adding 'torch/include/ATen/ops/eq_native.h' 2025-07-17T08:11:09.8725728Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-07-17T08:11:09.8728822Z adding 'torch/include/ATen/ops/equal.h' 2025-07-17T08:11:09.8732025Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-07-17T08:11:09.8735010Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-07-17T08:11:09.8737940Z adding 'torch/include/ATen/ops/equal_native.h' 2025-07-17T08:11:09.8740935Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-07-17T08:11:09.8743942Z adding 'torch/include/ATen/ops/erf.h' 2025-07-17T08:11:09.8747217Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8750099Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-07-17T08:11:09.8753104Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-07-17T08:11:09.8756052Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-07-17T08:11:09.8759144Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-07-17T08:11:09.8762107Z adding 'torch/include/ATen/ops/erf_native.h' 2025-07-17T08:11:09.8765165Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-07-17T08:11:09.8768229Z adding 'torch/include/ATen/ops/erfc.h' 2025-07-17T08:11:09.8771557Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8775169Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-07-17T08:11:09.8778518Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-07-17T08:11:09.8781304Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-07-17T08:11:09.8784290Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-07-17T08:11:09.8787187Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-07-17T08:11:09.8790314Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-07-17T08:11:09.8793371Z adding 'torch/include/ATen/ops/erfinv.h' 2025-07-17T08:11:09.8797350Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8799757Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-07-17T08:11:09.8802820Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-07-17T08:11:09.8805674Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-07-17T08:11:09.8808719Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-07-17T08:11:09.8811834Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-07-17T08:11:09.8815008Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-07-17T08:11:09.8818069Z adding 'torch/include/ATen/ops/exp.h' 2025-07-17T08:11:09.8821104Z adding 'torch/include/ATen/ops/exp2.h' 2025-07-17T08:11:09.8824355Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8827250Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-07-17T08:11:09.8830261Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-07-17T08:11:09.8833199Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-07-17T08:11:09.8836226Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-07-17T08:11:09.8839150Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-07-17T08:11:09.8842264Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-07-17T08:11:09.8845774Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8848624Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-07-17T08:11:09.8851681Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-07-17T08:11:09.8854660Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-07-17T08:11:09.8857694Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-07-17T08:11:09.8860626Z adding 'torch/include/ATen/ops/exp_native.h' 2025-07-17T08:11:09.8863753Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-07-17T08:11:09.8866833Z adding 'torch/include/ATen/ops/expand.h' 2025-07-17T08:11:09.8869831Z adding 'torch/include/ATen/ops/expand_as.h' 2025-07-17T08:11:09.8872988Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8875704Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-07-17T08:11:09.8878825Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-07-17T08:11:09.8882119Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8885262Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-07-17T08:11:09.8888567Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8891887Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8894663Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-07-17T08:11:09.8906206Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-07-17T08:11:09.8906344Z adding 'torch/include/ATen/ops/expand_native.h' 2025-07-17T08:11:09.8906475Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-07-17T08:11:09.8907943Z adding 'torch/include/ATen/ops/expm1.h' 2025-07-17T08:11:09.8950531Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.8950749Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-07-17T08:11:09.8950884Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-07-17T08:11:09.8950989Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-07-17T08:11:09.8951127Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-07-17T08:11:09.8951251Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-07-17T08:11:09.8951353Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-07-17T08:11:09.8951464Z adding 'torch/include/ATen/ops/exponential.h' 2025-07-17T08:11:09.8951738Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8951897Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-07-17T08:11:09.8952054Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-07-17T08:11:09.8952219Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-07-17T08:11:09.8952467Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-07-17T08:11:09.8956308Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-07-17T08:11:09.8959712Z adding 'torch/include/ATen/ops/eye.h' 2025-07-17T08:11:09.8963442Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.8966444Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-07-17T08:11:09.8970033Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-07-17T08:11:09.8974537Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-07-17T08:11:09.8976232Z adding 'torch/include/ATen/ops/eye_native.h' 2025-07-17T08:11:09.8979582Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-07-17T08:11:09.8982822Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-07-17T08:11:09.8986241Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-07-17T08:11:09.8989418Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-07-17T08:11:09.8992761Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.8995901Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-07-17T08:11:09.8998800Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-07-17T08:11:09.9002311Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9005327Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-07-17T08:11:09.9008405Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-07-17T08:11:09.9011486Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-07-17T08:11:09.9014758Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-07-17T08:11:09.9018064Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9020863Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-07-17T08:11:09.9023928Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-07-17T08:11:09.9027015Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-07-17T08:11:09.9030218Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-07-17T08:11:09.9033495Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-07-17T08:11:09.9036771Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9039783Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-07-17T08:11:09.9043384Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-07-17T08:11:09.9046270Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9049210Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-07-17T08:11:09.9052439Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-07-17T08:11:09.9055404Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-07-17T08:11:09.9058650Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-07-17T08:11:09.9061984Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9064847Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-07-17T08:11:09.9067972Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-07-17T08:11:09.9071107Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-07-17T08:11:09.9074233Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9077179Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-07-17T08:11:09.9080472Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9083304Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-07-17T08:11:09.9086430Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-07-17T08:11:09.9089489Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-07-17T08:11:09.9092706Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-07-17T08:11:09.9096103Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-07-17T08:11:09.9099422Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9102473Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-07-17T08:11:09.9105759Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9108652Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-07-17T08:11:09.9111802Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-07-17T08:11:09.9114741Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-07-17T08:11:09.9117849Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-07-17T08:11:09.9120919Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-07-17T08:11:09.9124153Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9126965Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-07-17T08:11:09.9130176Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-07-17T08:11:09.9133180Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-07-17T08:11:09.9136296Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9139243Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-07-17T08:11:09.9142297Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-07-17T08:11:09.9145328Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-07-17T08:11:09.9148553Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9151427Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-07-17T08:11:09.9154638Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-07-17T08:11:09.9157620Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-07-17T08:11:09.9160921Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9163708Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-07-17T08:11:09.9166763Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-07-17T08:11:09.9169806Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-07-17T08:11:09.9173132Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9176112Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-07-17T08:11:09.9179167Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-07-17T08:11:09.9182378Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-07-17T08:11:09.9185842Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-07-17T08:11:09.9189893Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9192349Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-07-17T08:11:09.9195518Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-07-17T08:11:09.9198807Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9201711Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-07-17T08:11:09.9204890Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-07-17T08:11:09.9208067Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-07-17T08:11:09.9211484Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9214394Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-07-17T08:11:09.9217606Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-07-17T08:11:09.9220972Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-07-17T08:11:09.9224439Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9227307Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-07-17T08:11:09.9230469Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-07-17T08:11:09.9233530Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-07-17T08:11:09.9236743Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9239602Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-07-17T08:11:09.9242643Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-07-17T08:11:09.9246063Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-07-17T08:11:09.9249515Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-07-17T08:11:09.9252991Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9255870Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-07-17T08:11:09.9259054Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-07-17T08:11:09.9262385Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9265286Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-07-17T08:11:09.9268551Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-07-17T08:11:09.9271928Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-07-17T08:11:09.9275384Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9278272Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-07-17T08:11:09.9281496Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-07-17T08:11:09.9285149Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-07-17T08:11:09.9288648Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-07-17T08:11:09.9292429Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9295438Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-07-17T08:11:09.9298506Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-07-17T08:11:09.9301853Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9304750Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-07-17T08:11:09.9307926Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-07-17T08:11:09.9311501Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-07-17T08:11:09.9314856Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9317691Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-07-17T08:11:09.9320905Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-07-17T08:11:09.9323999Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-07-17T08:11:09.9327249Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9330171Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-07-17T08:11:09.9333323Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-07-17T08:11:09.9336672Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-07-17T08:11:09.9340196Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-07-17T08:11:09.9343599Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9346498Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-07-17T08:11:09.9349753Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-07-17T08:11:09.9353098Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9356002Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-07-17T08:11:09.9359185Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-07-17T08:11:09.9362716Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-07-17T08:11:09.9366081Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9368940Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-07-17T08:11:09.9372277Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-07-17T08:11:09.9375708Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-07-17T08:11:09.9379238Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-07-17T08:11:09.9382650Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9385548Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-07-17T08:11:09.9388776Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-07-17T08:11:09.9395392Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9395530Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-07-17T08:11:09.9398811Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-07-17T08:11:09.9439198Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-07-17T08:11:09.9439696Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9439834Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-07-17T08:11:09.9439955Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-07-17T08:11:09.9440073Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-07-17T08:11:09.9440177Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-07-17T08:11:09.9440425Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9440554Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-07-17T08:11:09.9440684Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-07-17T08:11:09.9441045Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9441168Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-07-17T08:11:09.9442538Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-07-17T08:11:09.9445870Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-07-17T08:11:09.9449198Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9452345Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-07-17T08:11:09.9455536Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-07-17T08:11:09.9459150Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-07-17T08:11:09.9463038Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9466074Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-07-17T08:11:09.9469408Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-07-17T08:11:09.9472500Z adding 'torch/include/ATen/ops/fill.h' 2025-07-17T08:11:09.9476006Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9478943Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-07-17T08:11:09.9481942Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-07-17T08:11:09.9484855Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-07-17T08:11:09.9488061Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9491207Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-07-17T08:11:09.9494316Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-07-17T08:11:09.9497387Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-07-17T08:11:09.9500388Z adding 'torch/include/ATen/ops/fill_native.h' 2025-07-17T08:11:09.9503770Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-07-17T08:11:09.9507191Z adding 'torch/include/ATen/ops/fix.h' 2025-07-17T08:11:09.9510915Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9513864Z adding 'torch/include/ATen/ops/fix_native.h' 2025-07-17T08:11:09.9517053Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-07-17T08:11:09.9520389Z adding 'torch/include/ATen/ops/flatten.h' 2025-07-17T08:11:09.9523735Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9526602Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-07-17T08:11:09.9529839Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9532772Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-07-17T08:11:09.9535848Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-07-17T08:11:09.9538802Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-07-17T08:11:09.9542139Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-07-17T08:11:09.9545306Z adding 'torch/include/ATen/ops/flip.h' 2025-07-17T08:11:09.9548623Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9551786Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-07-17T08:11:09.9554550Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-07-17T08:11:09.9557437Z adding 'torch/include/ATen/ops/flip_native.h' 2025-07-17T08:11:09.9560564Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-07-17T08:11:09.9563596Z adding 'torch/include/ATen/ops/fliplr.h' 2025-07-17T08:11:09.9566779Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9569602Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-07-17T08:11:09.9572847Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-07-17T08:11:09.9575741Z adding 'torch/include/ATen/ops/flipud.h' 2025-07-17T08:11:09.9579302Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9582131Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-07-17T08:11:09.9585158Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-07-17T08:11:09.9588358Z adding 'torch/include/ATen/ops/float_power.h' 2025-07-17T08:11:09.9591721Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9594642Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-07-17T08:11:09.9598105Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-07-17T08:11:09.9601295Z adding 'torch/include/ATen/ops/floor.h' 2025-07-17T08:11:09.9604549Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9607408Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-07-17T08:11:09.9610527Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-07-17T08:11:09.9613613Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-07-17T08:11:09.9616928Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9620014Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-07-17T08:11:09.9623003Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-07-17T08:11:09.9626094Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-07-17T08:11:09.9630419Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-07-17T08:11:09.9637474Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-07-17T08:11:09.9640620Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-07-17T08:11:09.9643706Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-07-17T08:11:09.9646728Z adding 'torch/include/ATen/ops/floor_native.h' 2025-07-17T08:11:09.9649889Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-07-17T08:11:09.9653090Z adding 'torch/include/ATen/ops/fmax.h' 2025-07-17T08:11:09.9656345Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9659248Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-07-17T08:11:09.9662286Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-07-17T08:11:09.9665273Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-07-17T08:11:09.9668321Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-07-17T08:11:09.9671292Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-07-17T08:11:09.9674386Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-07-17T08:11:09.9677672Z adding 'torch/include/ATen/ops/fmin.h' 2025-07-17T08:11:09.9680958Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9683869Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-07-17T08:11:09.9686893Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-07-17T08:11:09.9689951Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-07-17T08:11:09.9693105Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-07-17T08:11:09.9696200Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-07-17T08:11:09.9699344Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-07-17T08:11:09.9702651Z adding 'torch/include/ATen/ops/fmod.h' 2025-07-17T08:11:09.9705980Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9709219Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9712306Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-07-17T08:11:09.9715354Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-07-17T08:11:09.9718332Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-07-17T08:11:09.9730572Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-07-17T08:11:09.9730826Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-07-17T08:11:09.9730937Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-07-17T08:11:09.9731543Z adding 'torch/include/ATen/ops/frac.h' 2025-07-17T08:11:09.9735031Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9738008Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-07-17T08:11:09.9741182Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-07-17T08:11:09.9744146Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-07-17T08:11:09.9747347Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-07-17T08:11:09.9750347Z adding 'torch/include/ATen/ops/frac_native.h' 2025-07-17T08:11:09.9753688Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-07-17T08:11:09.9756911Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-07-17T08:11:09.9760355Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-07-17T08:11:09.9763836Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9766780Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.9770067Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.9773140Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-07-17T08:11:09.9776474Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-07-17T08:11:09.9779486Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-07-17T08:11:09.9782768Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-07-17T08:11:09.9786152Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9789192Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-07-17T08:11:09.9792363Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-07-17T08:11:09.9795413Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-07-17T08:11:09.9798689Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-07-17T08:11:09.9801680Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-07-17T08:11:09.9805085Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-07-17T08:11:09.9808285Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-07-17T08:11:09.9811748Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-07-17T08:11:09.9815065Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-07-17T08:11:09.9818222Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-07-17T08:11:09.9821404Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-07-17T08:11:09.9824637Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-07-17T08:11:09.9828111Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9831119Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-07-17T08:11:09.9834390Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-07-17T08:11:09.9838513Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-07-17T08:11:09.9841902Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-07-17T08:11:09.9845124Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-07-17T08:11:09.9848375Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-07-17T08:11:09.9851681Z adding 'torch/include/ATen/ops/frexp.h' 2025-07-17T08:11:09.9855018Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9858039Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-07-17T08:11:09.9861217Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-07-17T08:11:09.9864525Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-07-17T08:11:09.9867851Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-07-17T08:11:09.9870994Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-07-17T08:11:09.9874402Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9877277Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-07-17T08:11:09.9880565Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-07-17T08:11:09.9884319Z adding 'torch/include/ATen/ops/from_blob.h' 2025-07-17T08:11:09.9887631Z adding 'torch/include/ATen/ops/from_file.h' 2025-07-17T08:11:09.9891210Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9894202Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-07-17T08:11:09.9897664Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-07-17T08:11:09.9901367Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-07-17T08:11:09.9905444Z adding 'torch/include/ATen/ops/full.h' 2025-07-17T08:11:09.9909211Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9912577Z adding 'torch/include/ATen/ops/full_like.h' 2025-07-17T08:11:09.9915972Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:09.9919054Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-07-17T08:11:09.9922395Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-07-17T08:11:09.9925702Z adding 'torch/include/ATen/ops/full_native.h' 2025-07-17T08:11:09.9929118Z adding 'torch/include/ATen/ops/full_ops.h' 2025-07-17T08:11:09.9932754Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-07-17T08:11:09.9936066Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9938973Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-07-17T08:11:09.9942333Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-07-17T08:11:09.9945453Z adding 'torch/include/ATen/ops/gather.h' 2025-07-17T08:11:09.9948498Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-07-17T08:11:09.9951795Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9954645Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-07-17T08:11:09.9957876Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-07-17T08:11:09.9961172Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9964215Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:09.9967146Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-07-17T08:11:09.9970266Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-07-17T08:11:09.9973224Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-07-17T08:11:09.9976300Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-07-17T08:11:09.9979304Z adding 'torch/include/ATen/ops/gather_native.h' 2025-07-17T08:11:09.9982551Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-07-17T08:11:09.9985631Z adding 'torch/include/ATen/ops/gcd.h' 2025-07-17T08:11:09.9989067Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:09.9991919Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-07-17T08:11:09.9994980Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-07-17T08:11:09.9997849Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-07-17T08:11:10.0000907Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-07-17T08:11:10.0003828Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-07-17T08:11:10.0006975Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-07-17T08:11:10.0010190Z adding 'torch/include/ATen/ops/ge.h' 2025-07-17T08:11:10.0013872Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0016805Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-07-17T08:11:10.0019896Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-07-17T08:11:10.0022861Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-07-17T08:11:10.0026011Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-07-17T08:11:10.0029085Z adding 'torch/include/ATen/ops/ge_native.h' 2025-07-17T08:11:10.0032414Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-07-17T08:11:10.0035569Z adding 'torch/include/ATen/ops/gelu.h' 2025-07-17T08:11:10.0038719Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-07-17T08:11:10.0042004Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0045020Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0048184Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0051374Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-07-17T08:11:10.0054508Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-07-17T08:11:10.0057526Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-07-17T08:11:10.0060635Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-07-17T08:11:10.0063906Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0066813Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-07-17T08:11:10.0069896Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-07-17T08:11:10.0072881Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-07-17T08:11:10.0076010Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-07-17T08:11:10.0078961Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-07-17T08:11:10.0082162Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-07-17T08:11:10.0085353Z adding 'torch/include/ATen/ops/geometric.h' 2025-07-17T08:11:10.0088550Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0091600Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-07-17T08:11:10.0094650Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-07-17T08:11:10.0097653Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-07-17T08:11:10.0100745Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-07-17T08:11:10.0103897Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-07-17T08:11:10.0106946Z adding 'torch/include/ATen/ops/geqrf.h' 2025-07-17T08:11:10.0110034Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-07-17T08:11:10.0113066Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-07-17T08:11:10.0115975Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-07-17T08:11:10.0119113Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-07-17T08:11:10.0122204Z adding 'torch/include/ATen/ops/ger.h' 2025-07-17T08:11:10.0125414Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0128224Z adding 'torch/include/ATen/ops/ger_native.h' 2025-07-17T08:11:10.0131467Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-07-17T08:11:10.0134557Z adding 'torch/include/ATen/ops/glu.h' 2025-07-17T08:11:10.0137690Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-07-17T08:11:10.0140844Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0143874Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0146968Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-07-17T08:11:10.0150254Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0153220Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-07-17T08:11:10.0156255Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-07-17T08:11:10.0159226Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-07-17T08:11:10.0162419Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-07-17T08:11:10.0165427Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-07-17T08:11:10.0168573Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-07-17T08:11:10.0171963Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0174881Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-07-17T08:11:10.0189763Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-07-17T08:11:10.0192832Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-07-17T08:11:10.0196065Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0199012Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-07-17T08:11:10.0202025Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-07-17T08:11:10.0205016Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-07-17T08:11:10.0208404Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-07-17T08:11:10.0211535Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-07-17T08:11:10.0214762Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-07-17T08:11:10.0217793Z adding 'torch/include/ATen/ops/glu_native.h' 2025-07-17T08:11:10.0221024Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-07-17T08:11:10.0224387Z adding 'torch/include/ATen/ops/gradient.h' 2025-07-17T08:11:10.0227763Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0230837Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-07-17T08:11:10.0234458Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-07-17T08:11:10.0237913Z adding 'torch/include/ATen/ops/greater.h' 2025-07-17T08:11:10.0241359Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0244352Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-07-17T08:11:10.0247804Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0250774Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-07-17T08:11:10.0254981Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-07-17T08:11:10.0258870Z adding 'torch/include/ATen/ops/greater_native.h' 2025-07-17T08:11:10.0262363Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-07-17T08:11:10.0265688Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-07-17T08:11:10.0268901Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-07-17T08:11:10.0272317Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-07-17T08:11:10.0275764Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0278778Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0281972Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0285007Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-07-17T08:11:10.0288409Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-07-17T08:11:10.0291787Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0294916Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-07-17T08:11:10.0298008Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-07-17T08:11:10.0301103Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-07-17T08:11:10.0304408Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-07-17T08:11:10.0307623Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-07-17T08:11:10.0311011Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-07-17T08:11:10.0314411Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0317490Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0320583Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0323849Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-07-17T08:11:10.0327268Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-07-17T08:11:10.0330722Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0333997Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-07-17T08:11:10.0337079Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-07-17T08:11:10.0340186Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-07-17T08:11:10.0343436Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-07-17T08:11:10.0346785Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0349632Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-07-17T08:11:10.0352922Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-07-17T08:11:10.0356149Z adding 'torch/include/ATen/ops/group_norm.h' 2025-07-17T08:11:10.0359406Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0362437Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-07-17T08:11:10.0365565Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-07-17T08:11:10.0368798Z adding 'torch/include/ATen/ops/gru.h' 2025-07-17T08:11:10.0372005Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-07-17T08:11:10.0375353Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0378263Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-07-17T08:11:10.0381556Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-07-17T08:11:10.0384905Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0387759Z adding 'torch/include/ATen/ops/gru_native.h' 2025-07-17T08:11:10.0391124Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-07-17T08:11:10.0394284Z adding 'torch/include/ATen/ops/gt.h' 2025-07-17T08:11:10.0397999Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0401297Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-07-17T08:11:10.0404919Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-07-17T08:11:10.0408224Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-07-17T08:11:10.0411941Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-07-17T08:11:10.0415389Z adding 'torch/include/ATen/ops/gt_native.h' 2025-07-17T08:11:10.0419038Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-07-17T08:11:10.0422814Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-07-17T08:11:10.0426530Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0429712Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-07-17T08:11:10.0433346Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-07-17T08:11:10.0436993Z adding 'torch/include/ATen/ops/hann_window.h' 2025-07-17T08:11:10.0440441Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0443545Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-07-17T08:11:10.0447099Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-07-17T08:11:10.0450361Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-07-17T08:11:10.0453747Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-07-17T08:11:10.0457160Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0460114Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0463196Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0466153Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-07-17T08:11:10.0469429Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-07-17T08:11:10.0472495Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-07-17T08:11:10.0475639Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-07-17T08:11:10.0478945Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0481820Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-07-17T08:11:10.0484871Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-07-17T08:11:10.0487800Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-07-17T08:11:10.0490989Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-07-17T08:11:10.0493922Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-07-17T08:11:10.0497152Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-07-17T08:11:10.0500422Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-07-17T08:11:10.0503551Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-07-17T08:11:10.0506908Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0509827Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0512869Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0515829Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-07-17T08:11:10.0518914Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-07-17T08:11:10.0521887Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-07-17T08:11:10.0525051Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-07-17T08:11:10.0528410Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0531410Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-07-17T08:11:10.0534428Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-07-17T08:11:10.0537353Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-07-17T08:11:10.0540421Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-07-17T08:11:10.0543392Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-07-17T08:11:10.0546550Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-07-17T08:11:10.0549659Z adding 'torch/include/ATen/ops/hardswish.h' 2025-07-17T08:11:10.0552752Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-07-17T08:11:10.0556260Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0559260Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0562313Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0565253Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-07-17T08:11:10.0568369Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-07-17T08:11:10.0571588Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-07-17T08:11:10.0574648Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-07-17T08:11:10.0577661Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-07-17T08:11:10.0580677Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-07-17T08:11:10.0583737Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-07-17T08:11:10.0586834Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-07-17T08:11:10.0590010Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-07-17T08:11:10.0593205Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0596305Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0599317Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-07-17T08:11:10.0602447Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-07-17T08:11:10.0605527Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-07-17T08:11:10.0608603Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-07-17T08:11:10.0611745Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-07-17T08:11:10.0614727Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-07-17T08:11:10.0617957Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-07-17T08:11:10.0621040Z adding 'torch/include/ATen/ops/heaviside.h' 2025-07-17T08:11:10.0624346Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0627249Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-07-17T08:11:10.0630252Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-07-17T08:11:10.0633187Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-07-17T08:11:10.0636242Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-07-17T08:11:10.0649125Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-07-17T08:11:10.0652446Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-07-17T08:11:10.0663436Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-07-17T08:11:10.0663753Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0664676Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-07-17T08:11:10.0668087Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-07-17T08:11:10.0671042Z adding 'torch/include/ATen/ops/histc.h' 2025-07-17T08:11:10.0674190Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-07-17T08:11:10.0677350Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-07-17T08:11:10.0680303Z adding 'torch/include/ATen/ops/histc_native.h' 2025-07-17T08:11:10.0683584Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-07-17T08:11:10.0687084Z adding 'torch/include/ATen/ops/histogram.h' 2025-07-17T08:11:10.0690248Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-07-17T08:11:10.0693404Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-07-17T08:11:10.0696779Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-07-17T08:11:10.0700006Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-07-17T08:11:10.0703391Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0706332Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-07-17T08:11:10.0709646Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-07-17T08:11:10.0712740Z adding 'torch/include/ATen/ops/hsplit.h' 2025-07-17T08:11:10.0715957Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0718765Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-07-17T08:11:10.0721890Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-07-17T08:11:10.0725013Z adding 'torch/include/ATen/ops/hspmm.h' 2025-07-17T08:11:10.0727995Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-07-17T08:11:10.0731284Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-07-17T08:11:10.0734347Z adding 'torch/include/ATen/ops/hstack.h' 2025-07-17T08:11:10.0737547Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0740410Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-07-17T08:11:10.0743546Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-07-17T08:11:10.0746633Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-07-17T08:11:10.0749744Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-07-17T08:11:10.0753023Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0755989Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-07-17T08:11:10.0759409Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-07-17T08:11:10.0762318Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-07-17T08:11:10.0765447Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-07-17T08:11:10.0768442Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-07-17T08:11:10.0771574Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-07-17T08:11:10.0774512Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-07-17T08:11:10.0777673Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-07-17T08:11:10.0780942Z adding 'torch/include/ATen/ops/hypot.h' 2025-07-17T08:11:10.0784229Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0787265Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-07-17T08:11:10.0790197Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-07-17T08:11:10.0793050Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-07-17T08:11:10.0796072Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-07-17T08:11:10.0799001Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-07-17T08:11:10.0802161Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-07-17T08:11:10.0805252Z adding 'torch/include/ATen/ops/i0.h' 2025-07-17T08:11:10.0808471Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0811447Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-07-17T08:11:10.0814453Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-07-17T08:11:10.0817398Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-07-17T08:11:10.0820407Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-07-17T08:11:10.0823340Z adding 'torch/include/ATen/ops/i0_native.h' 2025-07-17T08:11:10.0826457Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-07-17T08:11:10.0829555Z adding 'torch/include/ATen/ops/igamma.h' 2025-07-17T08:11:10.0832952Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0835849Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-07-17T08:11:10.0838833Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-07-17T08:11:10.0841739Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-07-17T08:11:10.0844732Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-07-17T08:11:10.0847640Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-07-17T08:11:10.0850904Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-07-17T08:11:10.0854094Z adding 'torch/include/ATen/ops/igammac.h' 2025-07-17T08:11:10.0858442Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0860466Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-07-17T08:11:10.0863541Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-07-17T08:11:10.0866604Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-07-17T08:11:10.0870007Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-07-17T08:11:10.0872740Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-07-17T08:11:10.0876081Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-07-17T08:11:10.0879309Z adding 'torch/include/ATen/ops/im2col.h' 2025-07-17T08:11:10.0882657Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-07-17T08:11:10.0885634Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-07-17T08:11:10.0888773Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-07-17T08:11:10.0892901Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-07-17T08:11:10.0895201Z adding 'torch/include/ATen/ops/imag.h' 2025-07-17T08:11:10.0898815Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0901335Z adding 'torch/include/ATen/ops/imag_native.h' 2025-07-17T08:11:10.0904525Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-07-17T08:11:10.0907622Z adding 'torch/include/ATen/ops/index.h' 2025-07-17T08:11:10.0942818Z adding 'torch/include/ATen/ops/index_add.h' 2025-07-17T08:11:10.0943380Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0944741Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0945258Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-07-17T08:11:10.0945653Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-07-17T08:11:10.0946029Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-07-17T08:11:10.0946394Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-07-17T08:11:10.0946752Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-07-17T08:11:10.0947098Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-07-17T08:11:10.0949098Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0949638Z adding 'torch/include/ATen/ops/index_copy.h' 2025-07-17T08:11:10.0950153Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.0952639Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0955793Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-07-17T08:11:10.0958884Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-07-17T08:11:10.0962163Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-07-17T08:11:10.0965270Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-07-17T08:11:10.0968485Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-07-17T08:11:10.0971926Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-07-17T08:11:10.0975198Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-07-17T08:11:10.0978579Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-07-17T08:11:10.0981876Z adding 'torch/include/ATen/ops/index_fill.h' 2025-07-17T08:11:10.0985109Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.0988214Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.0991234Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-07-17T08:11:10.0994439Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-07-17T08:11:10.1004174Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-07-17T08:11:10.1007268Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-07-17T08:11:10.1011158Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-07-17T08:11:10.1014583Z adding 'torch/include/ATen/ops/index_meta.h' 2025-07-17T08:11:10.1017735Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-07-17T08:11:10.1020744Z adding 'torch/include/ATen/ops/index_native.h' 2025-07-17T08:11:10.1024066Z adding 'torch/include/ATen/ops/index_ops.h' 2025-07-17T08:11:10.1027420Z adding 'torch/include/ATen/ops/index_put.h' 2025-07-17T08:11:10.1030593Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1033471Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-07-17T08:11:10.1036734Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-07-17T08:11:10.1039936Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-07-17T08:11:10.1043286Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1046317Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-07-17T08:11:10.1049439Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-07-17T08:11:10.1052559Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-07-17T08:11:10.1056117Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-07-17T08:11:10.1059185Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-07-17T08:11:10.1062491Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-07-17T08:11:10.1065711Z adding 'torch/include/ATen/ops/index_select.h' 2025-07-17T08:11:10.1068897Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-07-17T08:11:10.1072162Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1075044Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-07-17T08:11:10.1078105Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-07-17T08:11:10.1081524Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1084531Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-07-17T08:11:10.1087676Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-07-17T08:11:10.1090807Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-07-17T08:11:10.1094113Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-07-17T08:11:10.1097083Z adding 'torch/include/ATen/ops/indices.h' 2025-07-17T08:11:10.1100254Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1103129Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-07-17T08:11:10.1106338Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1109576Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1112360Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-07-17T08:11:10.1115306Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-07-17T08:11:10.1118234Z adding 'torch/include/ATen/ops/indices_native.h' 2025-07-17T08:11:10.1121304Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-07-17T08:11:10.1124413Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-07-17T08:11:10.1127663Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1130607Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-07-17T08:11:10.1134024Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-07-17T08:11:10.1136756Z adding 'torch/include/ATen/ops/inner.h' 2025-07-17T08:11:10.1139962Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1142705Z adding 'torch/include/ATen/ops/inner_native.h' 2025-07-17T08:11:10.1145869Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-07-17T08:11:10.1148899Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-07-17T08:11:10.1152120Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1154976Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-07-17T08:11:10.1158152Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-07-17T08:11:10.1161226Z adding 'torch/include/ATen/ops/int_repr.h' 2025-07-17T08:11:10.1164416Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1167268Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-07-17T08:11:10.1170568Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-07-17T08:11:10.1173648Z adding 'torch/include/ATen/ops/inverse.h' 2025-07-17T08:11:10.1176848Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1179690Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-07-17T08:11:10.1182809Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-07-17T08:11:10.1185785Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-07-17T08:11:10.1188974Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1191841Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-07-17T08:11:10.1194871Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-07-17T08:11:10.1197809Z adding 'torch/include/ATen/ops/is_complex.h' 2025-07-17T08:11:10.1201135Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1203916Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-07-17T08:11:10.1206883Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-07-17T08:11:10.1209847Z adding 'torch/include/ATen/ops/is_conj.h' 2025-07-17T08:11:10.1219261Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1220393Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-07-17T08:11:10.1220748Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-07-17T08:11:10.1223012Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-07-17T08:11:10.1263303Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1263854Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-07-17T08:11:10.1264228Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-07-17T08:11:10.1264592Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-07-17T08:11:10.1265083Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1265614Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-07-17T08:11:10.1266012Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-07-17T08:11:10.1266363Z adding 'torch/include/ATen/ops/is_inference.h' 2025-07-17T08:11:10.1266836Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1267423Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-07-17T08:11:10.1269218Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-07-17T08:11:10.1269543Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-07-17T08:11:10.1269984Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1270448Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-07-17T08:11:10.1273166Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-07-17T08:11:10.1276330Z adding 'torch/include/ATen/ops/is_neg.h' 2025-07-17T08:11:10.1279627Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1282634Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-07-17T08:11:10.1285526Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-07-17T08:11:10.1288695Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-07-17T08:11:10.1292049Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1294784Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-07-17T08:11:10.1298543Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-07-17T08:11:10.1300914Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-07-17T08:11:10.1304102Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1306964Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-07-17T08:11:10.1310052Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-07-17T08:11:10.1314037Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-07-17T08:11:10.1316436Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1319283Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-07-17T08:11:10.1322392Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-07-17T08:11:10.1325325Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-07-17T08:11:10.1328539Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-07-17T08:11:10.1331622Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-07-17T08:11:10.1335202Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-07-17T08:11:10.1337720Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-07-17T08:11:10.1340952Z adding 'torch/include/ATen/ops/is_signed.h' 2025-07-17T08:11:10.1344007Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1346800Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-07-17T08:11:10.1349937Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-07-17T08:11:10.1352881Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-07-17T08:11:10.1355986Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1358783Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-07-17T08:11:10.1361788Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-07-17T08:11:10.1364758Z adding 'torch/include/ATen/ops/isclose.h' 2025-07-17T08:11:10.1368252Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1371264Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-07-17T08:11:10.1374521Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-07-17T08:11:10.1377472Z adding 'torch/include/ATen/ops/isfinite.h' 2025-07-17T08:11:10.1380544Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1383423Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-07-17T08:11:10.1386481Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-07-17T08:11:10.1389718Z adding 'torch/include/ATen/ops/isin.h' 2025-07-17T08:11:10.1393081Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1396166Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-07-17T08:11:10.1399568Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-07-17T08:11:10.1402503Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-07-17T08:11:10.1405640Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-07-17T08:11:10.1408684Z adding 'torch/include/ATen/ops/isin_native.h' 2025-07-17T08:11:10.1412242Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-07-17T08:11:10.1415391Z adding 'torch/include/ATen/ops/isinf.h' 2025-07-17T08:11:10.1418632Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1421504Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-07-17T08:11:10.1424603Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-07-17T08:11:10.1427615Z adding 'torch/include/ATen/ops/isnan.h' 2025-07-17T08:11:10.1430809Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1433774Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-07-17T08:11:10.1436776Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-07-17T08:11:10.1439780Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-07-17T08:11:10.1442806Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-07-17T08:11:10.1446020Z adding 'torch/include/ATen/ops/isneginf.h' 2025-07-17T08:11:10.1449176Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1452072Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-07-17T08:11:10.1455099Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-07-17T08:11:10.1458034Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-07-17T08:11:10.1461092Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-07-17T08:11:10.1464082Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-07-17T08:11:10.1467215Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-07-17T08:11:10.1470326Z adding 'torch/include/ATen/ops/isposinf.h' 2025-07-17T08:11:10.1473574Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1476334Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-07-17T08:11:10.1479308Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-07-17T08:11:10.1482202Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-07-17T08:11:10.1485523Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-07-17T08:11:10.1488588Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-07-17T08:11:10.1491942Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-07-17T08:11:10.1494965Z adding 'torch/include/ATen/ops/isreal.h' 2025-07-17T08:11:10.1501263Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1501747Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-07-17T08:11:10.1504522Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-07-17T08:11:10.1545141Z adding 'torch/include/ATen/ops/istft.h' 2025-07-17T08:11:10.1545612Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1546082Z adding 'torch/include/ATen/ops/istft_native.h' 2025-07-17T08:11:10.1546508Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-07-17T08:11:10.1546812Z adding 'torch/include/ATen/ops/item.h' 2025-07-17T08:11:10.1547233Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1547677Z adding 'torch/include/ATen/ops/item_native.h' 2025-07-17T08:11:10.1547984Z adding 'torch/include/ATen/ops/item_ops.h' 2025-07-17T08:11:10.1548291Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-07-17T08:11:10.1548771Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1549281Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-07-17T08:11:10.1550677Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-07-17T08:11:10.1551020Z adding 'torch/include/ATen/ops/kl_div.h' 2025-07-17T08:11:10.1553604Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1556647Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-07-17T08:11:10.1559731Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-07-17T08:11:10.1562939Z adding 'torch/include/ATen/ops/kron.h' 2025-07-17T08:11:10.1566132Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1569303Z adding 'torch/include/ATen/ops/kron_native.h' 2025-07-17T08:11:10.1572555Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-07-17T08:11:10.1576136Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-07-17T08:11:10.1579763Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1582924Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1585975Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-07-17T08:11:10.1589097Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-07-17T08:11:10.1592194Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-07-17T08:11:10.1595656Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-07-17T08:11:10.1598723Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-07-17T08:11:10.1601868Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1604662Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-07-17T08:11:10.1607733Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-07-17T08:11:10.1611060Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-07-17T08:11:10.1614501Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1617367Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-07-17T08:11:10.1620428Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-07-17T08:11:10.1623473Z adding 'torch/include/ATen/ops/lcm.h' 2025-07-17T08:11:10.1626898Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1629773Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-07-17T08:11:10.1632816Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-07-17T08:11:10.1635783Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-07-17T08:11:10.1645642Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-07-17T08:11:10.1648631Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-07-17T08:11:10.1651925Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-07-17T08:11:10.1654999Z adding 'torch/include/ATen/ops/ldexp.h' 2025-07-17T08:11:10.1658210Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1661169Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-07-17T08:11:10.1664286Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-07-17T08:11:10.1667372Z adding 'torch/include/ATen/ops/le.h' 2025-07-17T08:11:10.1670680Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1673676Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-07-17T08:11:10.1676769Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-07-17T08:11:10.1679770Z adding 'torch/include/ATen/ops/le_meta.h' 2025-07-17T08:11:10.1683136Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-07-17T08:11:10.1686192Z adding 'torch/include/ATen/ops/le_native.h' 2025-07-17T08:11:10.1689431Z adding 'torch/include/ATen/ops/le_ops.h' 2025-07-17T08:11:10.1692784Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-07-17T08:11:10.1695970Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-07-17T08:11:10.1699338Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1702247Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-07-17T08:11:10.1705380Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-07-17T08:11:10.1708337Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-07-17T08:11:10.1711334Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-07-17T08:11:10.1714275Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-07-17T08:11:10.1717464Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-07-17T08:11:10.1720748Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1723653Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-07-17T08:11:10.1726694Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-07-17T08:11:10.1729731Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-07-17T08:11:10.1733715Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-07-17T08:11:10.1736781Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-07-17T08:11:10.1740116Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-07-17T08:11:10.1743305Z adding 'torch/include/ATen/ops/lerp.h' 2025-07-17T08:11:10.1746634Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1749885Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-07-17T08:11:10.1752875Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-07-17T08:11:10.1755692Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-07-17T08:11:10.1758835Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-07-17T08:11:10.1761790Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-07-17T08:11:10.1765196Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-07-17T08:11:10.1768423Z adding 'torch/include/ATen/ops/less.h' 2025-07-17T08:11:10.1771929Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1774961Z adding 'torch/include/ATen/ops/less_equal.h' 2025-07-17T08:11:10.1778171Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1782308Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-07-17T08:11:10.1784621Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-07-17T08:11:10.1788099Z adding 'torch/include/ATen/ops/less_native.h' 2025-07-17T08:11:10.1791219Z adding 'torch/include/ATen/ops/less_ops.h' 2025-07-17T08:11:10.1794567Z adding 'torch/include/ATen/ops/lgamma.h' 2025-07-17T08:11:10.1797977Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1800846Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-07-17T08:11:10.1803846Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-07-17T08:11:10.1806938Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-07-17T08:11:10.1810977Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-07-17T08:11:10.1813178Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-07-17T08:11:10.1816846Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-07-17T08:11:10.1819647Z adding 'torch/include/ATen/ops/lift.h' 2025-07-17T08:11:10.1823010Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1825774Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-07-17T08:11:10.1829084Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1831998Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-07-17T08:11:10.1835366Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.1838517Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1841575Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-07-17T08:11:10.1845806Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-07-17T08:11:10.1847773Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-07-17T08:11:10.1851601Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-07-17T08:11:10.1853960Z adding 'torch/include/ATen/ops/lift_native.h' 2025-07-17T08:11:10.1857389Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-07-17T08:11:10.1860290Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-07-17T08:11:10.1863673Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1866748Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-07-17T08:11:10.1870277Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1873088Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-07-17T08:11:10.1876312Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-07-17T08:11:10.1880234Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-07-17T08:11:10.1882535Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-07-17T08:11:10.1886090Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-07-17T08:11:10.1888793Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-07-17T08:11:10.1892589Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-07-17T08:11:10.1895783Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-07-17T08:11:10.1899092Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-07-17T08:11:10.1933129Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1933739Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-07-17T08:11:10.1934122Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-07-17T08:11:10.1934459Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-07-17T08:11:10.1935003Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.1935591Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-07-17T08:11:10.1936023Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-07-17T08:11:10.1936410Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-07-17T08:11:10.1936838Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-07-17T08:11:10.1937269Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-07-17T08:11:10.1937677Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-07-17T08:11:10.1939871Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-07-17T08:11:10.1943062Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1946046Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-07-17T08:11:10.1949125Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-07-17T08:11:10.1952390Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-07-17T08:11:10.1956993Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1958665Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-07-17T08:11:10.1961998Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-07-17T08:11:10.1964887Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-07-17T08:11:10.1968297Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-07-17T08:11:10.1971274Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-07-17T08:11:10.1974200Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-07-17T08:11:10.1977340Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-07-17T08:11:10.1980434Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-07-17T08:11:10.1984490Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1986877Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-07-17T08:11:10.1990055Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-07-17T08:11:10.1993089Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-07-17T08:11:10.1996323Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.1999236Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-07-17T08:11:10.2002243Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-07-17T08:11:10.2005151Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-07-17T08:11:10.2008365Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-07-17T08:11:10.2011493Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-07-17T08:11:10.2014826Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2017706Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-07-17T08:11:10.2020757Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-07-17T08:11:10.2023876Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-07-17T08:11:10.2026994Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-07-17T08:11:10.2030010Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-07-17T08:11:10.2033053Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-07-17T08:11:10.2036141Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-07-17T08:11:10.2039010Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-07-17T08:11:10.2042218Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2045147Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-07-17T08:11:10.2048916Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2051460Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-07-17T08:11:10.2054505Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-07-17T08:11:10.2057471Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-07-17T08:11:10.2061069Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-07-17T08:11:10.2063563Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-07-17T08:11:10.2066716Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-07-17T08:11:10.2069692Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-07-17T08:11:10.2073018Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-07-17T08:11:10.2076064Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-07-17T08:11:10.2079326Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2082346Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-07-17T08:11:10.2085631Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2088536Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-07-17T08:11:10.2091719Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-07-17T08:11:10.2094672Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-07-17T08:11:10.2097933Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-07-17T08:11:10.2100895Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-07-17T08:11:10.2104248Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-07-17T08:11:10.2107195Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-07-17T08:11:10.2110247Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-07-17T08:11:10.2113303Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-07-17T08:11:10.2116634Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2119548Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-07-17T08:11:10.2122579Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-07-17T08:11:10.2125499Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-07-17T08:11:10.2128582Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-07-17T08:11:10.2131657Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-07-17T08:11:10.2134816Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-07-17T08:11:10.2138011Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-07-17T08:11:10.2141266Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2144242Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-07-17T08:11:10.2147339Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-07-17T08:11:10.2150437Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-07-17T08:11:10.2153633Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-07-17T08:11:10.2156670Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-07-17T08:11:10.2159965Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2162861Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-07-17T08:11:10.2165887Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-07-17T08:11:10.2168934Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-07-17T08:11:10.2172502Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2175583Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-07-17T08:11:10.2178918Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2181944Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-07-17T08:11:10.2185524Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-07-17T08:11:10.2188126Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-07-17T08:11:10.2191398Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-07-17T08:11:10.2194346Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-07-17T08:11:10.2197690Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-07-17T08:11:10.2201687Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-07-17T08:11:10.2204041Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-07-17T08:11:10.2207522Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-07-17T08:11:10.2210339Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-07-17T08:11:10.2213442Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-07-17T08:11:10.2216695Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-07-17T08:11:10.2220042Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-07-17T08:11:10.2223525Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2226560Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-07-17T08:11:10.2230514Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-07-17T08:11:10.2232646Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-07-17T08:11:10.2236363Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-07-17T08:11:10.2238822Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-07-17T08:11:10.2242342Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-07-17T08:11:10.2245469Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-07-17T08:11:10.2248770Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2251702Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-07-17T08:11:10.2255030Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-07-17T08:11:10.2259115Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-07-17T08:11:10.2261547Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2264687Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-07-17T08:11:10.2267753Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-07-17T08:11:10.2270942Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-07-17T08:11:10.2273762Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-07-17T08:11:10.2277152Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-07-17T08:11:10.2280567Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2283956Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-07-17T08:11:10.2287550Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-07-17T08:11:10.2290983Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-07-17T08:11:10.2294146Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2296958Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-07-17T08:11:10.2300222Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-07-17T08:11:10.2303626Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-07-17T08:11:10.2307312Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2311023Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-07-17T08:11:10.2314053Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-07-17T08:11:10.2317401Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-07-17T08:11:10.2320670Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2323660Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-07-17T08:11:10.2328356Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-07-17T08:11:10.2330636Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-07-17T08:11:10.2334406Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2336907Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-07-17T08:11:10.2340384Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-07-17T08:11:10.2343856Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-07-17T08:11:10.2347409Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2351536Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2353780Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2357337Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-07-17T08:11:10.2360548Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-07-17T08:11:10.2364003Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-07-17T08:11:10.2367218Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2370334Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-07-17T08:11:10.2374423Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-07-17T08:11:10.2376560Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-07-17T08:11:10.2379847Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-07-17T08:11:10.2382834Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-07-17T08:11:10.2386064Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-07-17T08:11:10.2389150Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-07-17T08:11:10.2392537Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2395370Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-07-17T08:11:10.2398727Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-07-17T08:11:10.2401871Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-07-17T08:11:10.2405272Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2420994Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-07-17T08:11:10.2421332Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2421481Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-07-17T08:11:10.2421613Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-07-17T08:11:10.2422172Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-07-17T08:11:10.2425479Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-07-17T08:11:10.2428878Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-07-17T08:11:10.2433210Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-07-17T08:11:10.2435225Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-07-17T08:11:10.2439237Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-07-17T08:11:10.2441591Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-07-17T08:11:10.2445222Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-07-17T08:11:10.2448170Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2451246Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-07-17T08:11:10.2454411Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-07-17T08:11:10.2457716Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-07-17T08:11:10.2460946Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2464436Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-07-17T08:11:10.2467725Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-07-17T08:11:10.2478356Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-07-17T08:11:10.2481675Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2484833Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-07-17T08:11:10.2487607Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-07-17T08:11:10.2490781Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-07-17T08:11:10.2494056Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2496927Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-07-17T08:11:10.2500068Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-07-17T08:11:10.2503518Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-07-17T08:11:10.2506984Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2509900Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-07-17T08:11:10.2512931Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-07-17T08:11:10.2516073Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-07-17T08:11:10.2519410Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2522274Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-07-17T08:11:10.2525652Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-07-17T08:11:10.2528585Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-07-17T08:11:10.2532049Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2535082Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-07-17T08:11:10.2538198Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-07-17T08:11:10.2541151Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-07-17T08:11:10.2544314Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-07-17T08:11:10.2547202Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-07-17T08:11:10.2550498Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-07-17T08:11:10.2553566Z adding 'torch/include/ATen/ops/linear.h' 2025-07-17T08:11:10.2556739Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-07-17T08:11:10.2560263Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2563116Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-07-17T08:11:10.2566581Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-07-17T08:11:10.2569687Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2572900Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2575772Z adding 'torch/include/ATen/ops/linear_native.h' 2025-07-17T08:11:10.2579087Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-07-17T08:11:10.2582489Z adding 'torch/include/ATen/ops/linspace.h' 2025-07-17T08:11:10.2586167Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2589068Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-07-17T08:11:10.2592344Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-07-17T08:11:10.2595183Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-07-17T08:11:10.2598286Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-07-17T08:11:10.2601976Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-07-17T08:11:10.2605072Z adding 'torch/include/ATen/ops/log.h' 2025-07-17T08:11:10.2608100Z adding 'torch/include/ATen/ops/log10.h' 2025-07-17T08:11:10.2611631Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2614363Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-07-17T08:11:10.2617433Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-07-17T08:11:10.2620345Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-07-17T08:11:10.2623522Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-07-17T08:11:10.2626413Z adding 'torch/include/ATen/ops/log10_native.h' 2025-07-17T08:11:10.2629574Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-07-17T08:11:10.2632526Z adding 'torch/include/ATen/ops/log1p.h' 2025-07-17T08:11:10.2635788Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2638801Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-07-17T08:11:10.2641864Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-07-17T08:11:10.2644706Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-07-17T08:11:10.2647861Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-07-17T08:11:10.2651009Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-07-17T08:11:10.2653991Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-07-17T08:11:10.2657105Z adding 'torch/include/ATen/ops/log2.h' 2025-07-17T08:11:10.2660205Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2663062Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-07-17T08:11:10.2666196Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-07-17T08:11:10.2669020Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-07-17T08:11:10.2672350Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-07-17T08:11:10.2675458Z adding 'torch/include/ATen/ops/log2_native.h' 2025-07-17T08:11:10.2678530Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-07-17T08:11:10.2681807Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2684692Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-07-17T08:11:10.2687690Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-07-17T08:11:10.2690875Z adding 'torch/include/ATen/ops/log_meta.h' 2025-07-17T08:11:10.2694983Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-07-17T08:11:10.2698860Z adding 'torch/include/ATen/ops/log_native.h' 2025-07-17T08:11:10.2703057Z adding 'torch/include/ATen/ops/log_normal.h' 2025-07-17T08:11:10.2707573Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2711614Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-07-17T08:11:10.2716000Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-07-17T08:11:10.2720217Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-07-17T08:11:10.2724768Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-07-17T08:11:10.2729278Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-07-17T08:11:10.2733826Z adding 'torch/include/ATen/ops/log_ops.h' 2025-07-17T08:11:10.2738108Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-07-17T08:11:10.2742616Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-07-17T08:11:10.2747002Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-07-17T08:11:10.2751162Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-07-17T08:11:10.2755215Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-07-17T08:11:10.2759552Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-07-17T08:11:10.2763934Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2768049Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-07-17T08:11:10.2772596Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-07-17T08:11:10.2776936Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-07-17T08:11:10.2781131Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-07-17T08:11:10.2785655Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-07-17T08:11:10.2789368Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-07-17T08:11:10.2792447Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-07-17T08:11:10.2795584Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-07-17T08:11:10.2798956Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2802035Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2804865Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-07-17T08:11:10.2808108Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-07-17T08:11:10.2811318Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-07-17T08:11:10.2814348Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-07-17T08:11:10.2817637Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2820509Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-07-17T08:11:10.2823742Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-07-17T08:11:10.2826638Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-07-17T08:11:10.2829709Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-07-17T08:11:10.2832621Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-07-17T08:11:10.2835719Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-07-17T08:11:10.2838999Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2841880Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-07-17T08:11:10.2844896Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-07-17T08:11:10.2847832Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-07-17T08:11:10.2851027Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-07-17T08:11:10.2853973Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-07-17T08:11:10.2857129Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-07-17T08:11:10.2860251Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-07-17T08:11:10.2863460Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2866496Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2869347Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-07-17T08:11:10.2872586Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-07-17T08:11:10.2875642Z adding 'torch/include/ATen/ops/logdet.h' 2025-07-17T08:11:10.2878783Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.2881581Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-07-17T08:11:10.2884616Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-07-17T08:11:10.2887648Z adding 'torch/include/ATen/ops/logical_and.h' 2025-07-17T08:11:10.2890920Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2893850Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-07-17T08:11:10.2896859Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-07-17T08:11:10.2899793Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-07-17T08:11:10.2902963Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-07-17T08:11:10.2906013Z adding 'torch/include/ATen/ops/logical_not.h' 2025-07-17T08:11:10.2909223Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2912111Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-07-17T08:11:10.2915111Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-07-17T08:11:10.2918010Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-07-17T08:11:10.2921157Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-07-17T08:11:10.2927526Z adding 'torch/include/ATen/ops/logical_or.h' 2025-07-17T08:11:10.2928052Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2931125Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-07-17T08:11:10.2971520Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-07-17T08:11:10.2971911Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-07-17T08:11:10.2972054Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-07-17T08:11:10.2972281Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-07-17T08:11:10.2972613Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.2972783Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-07-17T08:11:10.2972936Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-07-17T08:11:10.2973074Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-07-17T08:11:10.2973191Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-07-17T08:11:10.2973287Z adding 'torch/include/ATen/ops/logit.h' 2025-07-17T08:11:10.2973405Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-07-17T08:11:10.2973753Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.2976087Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-07-17T08:11:10.2979121Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-07-17T08:11:10.2982080Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-07-17T08:11:10.2985471Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-07-17T08:11:10.2989621Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-07-17T08:11:10.2991643Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-07-17T08:11:10.2995642Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-07-17T08:11:10.2997956Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-07-17T08:11:10.3000969Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-07-17T08:11:10.3003905Z adding 'torch/include/ATen/ops/logit_native.h' 2025-07-17T08:11:10.3007287Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-07-17T08:11:10.3011013Z adding 'torch/include/ATen/ops/logspace.h' 2025-07-17T08:11:10.3014608Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3017619Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-07-17T08:11:10.3020674Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-07-17T08:11:10.3023985Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-07-17T08:11:10.3027044Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-07-17T08:11:10.3030740Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-07-17T08:11:10.3034072Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-07-17T08:11:10.3037298Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3040396Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3043372Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3046257Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-07-17T08:11:10.3049524Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-07-17T08:11:10.3053227Z adding 'torch/include/ATen/ops/lshift.h' 2025-07-17T08:11:10.3056331Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3059186Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-07-17T08:11:10.3062179Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-07-17T08:11:10.3065197Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-07-17T08:11:10.3068731Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-07-17T08:11:10.3071710Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-07-17T08:11:10.3074905Z adding 'torch/include/ATen/ops/lstm.h' 2025-07-17T08:11:10.3077989Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-07-17T08:11:10.3081211Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3084204Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-07-17T08:11:10.3087321Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-07-17T08:11:10.3090648Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3094204Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-07-17T08:11:10.3097756Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3100736Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-07-17T08:11:10.3104090Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-07-17T08:11:10.3107172Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-07-17T08:11:10.3110394Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-07-17T08:11:10.3113577Z adding 'torch/include/ATen/ops/lt.h' 2025-07-17T08:11:10.3116882Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3119812Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-07-17T08:11:10.3122860Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-07-17T08:11:10.3125834Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-07-17T08:11:10.3128926Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-07-17T08:11:10.3132043Z adding 'torch/include/ATen/ops/lt_native.h' 2025-07-17T08:11:10.3135383Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-07-17T08:11:10.3138556Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-07-17T08:11:10.3141801Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3144652Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-07-17T08:11:10.3147794Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-07-17T08:11:10.3150947Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-07-17T08:11:10.3154252Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3157194Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-07-17T08:11:10.3160235Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-07-17T08:11:10.3163190Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-07-17T08:11:10.3166289Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-07-17T08:11:10.3169217Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-07-17T08:11:10.3172565Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-07-17T08:11:10.3175506Z adding 'torch/include/ATen/ops/mH.h' 2025-07-17T08:11:10.3178630Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3181448Z adding 'torch/include/ATen/ops/mH_native.h' 2025-07-17T08:11:10.3184473Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-07-17T08:11:10.3187372Z adding 'torch/include/ATen/ops/mT.h' 2025-07-17T08:11:10.3190517Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3193368Z adding 'torch/include/ATen/ops/mT_native.h' 2025-07-17T08:11:10.3196400Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-07-17T08:11:10.3199469Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-07-17T08:11:10.3202701Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3205517Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-07-17T08:11:10.3208596Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-07-17T08:11:10.3211843Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-07-17T08:11:10.3215290Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3218972Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-07-17T08:11:10.3222104Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-07-17T08:11:10.3225820Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-07-17T08:11:10.3228565Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-07-17T08:11:10.3232175Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-07-17T08:11:10.3235333Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-07-17T08:11:10.3238649Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-07-17T08:11:10.3242965Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3245092Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-07-17T08:11:10.3248777Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-07-17T08:11:10.3251637Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3254722Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-07-17T08:11:10.3257775Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-07-17T08:11:10.3260962Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-07-17T08:11:10.3263866Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-07-17T08:11:10.3267264Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-07-17T08:11:10.3270373Z adding 'torch/include/ATen/ops/masked_select.h' 2025-07-17T08:11:10.3273574Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-07-17T08:11:10.3277598Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3279878Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-07-17T08:11:10.3283247Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-07-17T08:11:10.3286132Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-07-17T08:11:10.3289338Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-07-17T08:11:10.3292436Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-07-17T08:11:10.3295749Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-07-17T08:11:10.3298859Z adding 'torch/include/ATen/ops/matmul.h' 2025-07-17T08:11:10.3302171Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-07-17T08:11:10.3306206Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3308517Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-07-17T08:11:10.3311885Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-07-17T08:11:10.3315133Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3318204Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-07-17T08:11:10.3321313Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-07-17T08:11:10.3324398Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-07-17T08:11:10.3327544Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3330615Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-07-17T08:11:10.3333698Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-07-17T08:11:10.3336841Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-07-17T08:11:10.3340698Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-07-17T08:11:10.3343237Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3346517Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-07-17T08:11:10.3349296Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-07-17T08:11:10.3352611Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3355396Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-07-17T08:11:10.3358575Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-07-17T08:11:10.3361610Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-07-17T08:11:10.3364976Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3367857Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-07-17T08:11:10.3371256Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-07-17T08:11:10.3375122Z adding 'torch/include/ATen/ops/max.h' 2025-07-17T08:11:10.3378138Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3381315Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3384403Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-07-17T08:11:10.3387679Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-07-17T08:11:10.3390834Z adding 'torch/include/ATen/ops/max_meta.h' 2025-07-17T08:11:10.3394115Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-07-17T08:11:10.3398020Z adding 'torch/include/ATen/ops/max_native.h' 2025-07-17T08:11:10.3400815Z adding 'torch/include/ATen/ops/max_ops.h' 2025-07-17T08:11:10.3404168Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-07-17T08:11:10.3407397Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3410488Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-07-17T08:11:10.3413640Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-07-17T08:11:10.3442674Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-07-17T08:11:10.3443004Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3443190Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-07-17T08:11:10.3443355Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-07-17T08:11:10.3443472Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-07-17T08:11:10.3443625Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-07-17T08:11:10.3443908Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3444080Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-07-17T08:11:10.3453595Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-07-17T08:11:10.3453897Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3454030Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-07-17T08:11:10.3457249Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-07-17T08:11:10.3460659Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-07-17T08:11:10.3463929Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-07-17T08:11:10.3467505Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3471929Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-07-17T08:11:10.3473788Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-07-17T08:11:10.3476810Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-07-17T08:11:10.3479926Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-07-17T08:11:10.3483152Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-07-17T08:11:10.3486429Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-07-17T08:11:10.3490421Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3493525Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-07-17T08:11:10.3496663Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-07-17T08:11:10.3499874Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-07-17T08:11:10.3503013Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-07-17T08:11:10.3506024Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-07-17T08:11:10.3509272Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-07-17T08:11:10.3512337Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-07-17T08:11:10.3515535Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3518620Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-07-17T08:11:10.3521732Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-07-17T08:11:10.3524947Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-07-17T08:11:10.3528189Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-07-17T08:11:10.3540531Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-07-17T08:11:10.3541117Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-07-17T08:11:10.3541407Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-07-17T08:11:10.3541610Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-07-17T08:11:10.3544083Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-07-17T08:11:10.3547159Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-07-17T08:11:10.3550177Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-07-17T08:11:10.3553425Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-07-17T08:11:10.3556729Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-07-17T08:11:10.3559986Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-07-17T08:11:10.3563080Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-07-17T08:11:10.3566035Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-07-17T08:11:10.3569179Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-07-17T08:11:10.3572874Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-07-17T08:11:10.3576142Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-07-17T08:11:10.3579294Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-07-17T08:11:10.3582278Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-07-17T08:11:10.3585478Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-07-17T08:11:10.3588669Z adding 'torch/include/ATen/ops/maximum.h' 2025-07-17T08:11:10.3591998Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3594825Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-07-17T08:11:10.3597844Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-07-17T08:11:10.3600760Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-07-17T08:11:10.3603818Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-07-17T08:11:10.3606756Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-07-17T08:11:10.3609866Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-07-17T08:11:10.3613226Z adding 'torch/include/ATen/ops/mean.h' 2025-07-17T08:11:10.3616544Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3619673Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3622673Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3625653Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-07-17T08:11:10.3628738Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-07-17T08:11:10.3631702Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-07-17T08:11:10.3634744Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-07-17T08:11:10.3637886Z adding 'torch/include/ATen/ops/mean_native.h' 2025-07-17T08:11:10.3641210Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-07-17T08:11:10.3644522Z adding 'torch/include/ATen/ops/median.h' 2025-07-17T08:11:10.3647830Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3651007Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3654015Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-07-17T08:11:10.3657300Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-07-17T08:11:10.3660369Z adding 'torch/include/ATen/ops/median_native.h' 2025-07-17T08:11:10.3663794Z adding 'torch/include/ATen/ops/median_ops.h' 2025-07-17T08:11:10.3666998Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-07-17T08:11:10.3670249Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3673070Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-07-17T08:11:10.3676180Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-07-17T08:11:10.3679579Z adding 'torch/include/ATen/ops/min.h' 2025-07-17T08:11:10.3682918Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3686037Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3689086Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-07-17T08:11:10.3692393Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-07-17T08:11:10.3695543Z adding 'torch/include/ATen/ops/min_meta.h' 2025-07-17T08:11:10.3698792Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-07-17T08:11:10.3701881Z adding 'torch/include/ATen/ops/min_native.h' 2025-07-17T08:11:10.3705557Z adding 'torch/include/ATen/ops/min_ops.h' 2025-07-17T08:11:10.3708761Z adding 'torch/include/ATen/ops/minimum.h' 2025-07-17T08:11:10.3712208Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3715194Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-07-17T08:11:10.3718349Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-07-17T08:11:10.3721436Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-07-17T08:11:10.3724558Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-07-17T08:11:10.3727675Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-07-17T08:11:10.3730860Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-07-17T08:11:10.3734230Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-07-17T08:11:10.3737635Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-07-17T08:11:10.3741165Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3744350Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-07-17T08:11:10.3747467Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-07-17T08:11:10.3750820Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-07-17T08:11:10.3754153Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3757352Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-07-17T08:11:10.3760349Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-07-17T08:11:10.3763839Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-07-17T08:11:10.3767620Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-07-17T08:11:10.3771146Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-07-17T08:11:10.3774554Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-07-17T08:11:10.3777634Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-07-17T08:11:10.3780897Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-07-17T08:11:10.3784354Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3787437Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-07-17T08:11:10.3790605Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-07-17T08:11:10.3793974Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-07-17T08:11:10.3797310Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-07-17T08:11:10.3800544Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-07-17T08:11:10.3803606Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-07-17T08:11:10.3806881Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-07-17T08:11:10.3810647Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-07-17T08:11:10.3814353Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3817424Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-07-17T08:11:10.3820605Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-07-17T08:11:10.3824038Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-07-17T08:11:10.3827579Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-07-17T08:11:10.3831341Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3834377Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-07-17T08:11:10.3837552Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-07-17T08:11:10.3840921Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-07-17T08:11:10.3844285Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-07-17T08:11:10.3848260Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-07-17T08:11:10.3851948Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3855183Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-07-17T08:11:10.3858392Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-07-17T08:11:10.3862001Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-07-17T08:11:10.3865585Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3868653Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-07-17T08:11:10.3871906Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-07-17T08:11:10.3875466Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-07-17T08:11:10.3878613Z adding 'torch/include/ATen/ops/mish.h' 2025-07-17T08:11:10.3881756Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-07-17T08:11:10.3885006Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.3888086Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-07-17T08:11:10.3891258Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-07-17T08:11:10.3894364Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-07-17T08:11:10.3897454Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-07-17T08:11:10.3900856Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.3903851Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-07-17T08:11:10.3906900Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-07-17T08:11:10.3909954Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-07-17T08:11:10.3913032Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-07-17T08:11:10.3916142Z adding 'torch/include/ATen/ops/mish_native.h' 2025-07-17T08:11:10.3919844Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-07-17T08:11:10.3923449Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-07-17T08:11:10.3926983Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-07-17T08:11:10.3930653Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3933558Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-07-17T08:11:10.3936881Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-07-17T08:11:10.3939944Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-07-17T08:11:10.3943250Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-07-17T08:11:10.3946846Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-07-17T08:11:10.3950384Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3953611Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-07-17T08:11:10.3956863Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-07-17T08:11:10.3960253Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-07-17T08:11:10.3964352Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-07-17T08:11:10.3967820Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3970991Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-07-17T08:11:10.3974259Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3977064Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-07-17T08:11:10.3980395Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-07-17T08:11:10.3983407Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-07-17T08:11:10.3986652Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-07-17T08:11:10.3989883Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-07-17T08:11:10.3993132Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.3995996Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-07-17T08:11:10.3999215Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-07-17T08:11:10.4002359Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4005187Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-07-17T08:11:10.4008354Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-07-17T08:11:10.4011886Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-07-17T08:11:10.4015192Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-07-17T08:11:10.4018520Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4021426Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-07-17T08:11:10.4024667Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-07-17T08:11:10.4027911Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4030789Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-07-17T08:11:10.4034008Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-07-17T08:11:10.4037234Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-07-17T08:11:10.4040437Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-07-17T08:11:10.4043726Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4046618Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-07-17T08:11:10.4049835Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-07-17T08:11:10.4053250Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4056183Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-07-17T08:11:10.4059407Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-07-17T08:11:10.4063036Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-07-17T08:11:10.4066676Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4069634Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-07-17T08:11:10.4072968Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-07-17T08:11:10.4076633Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-07-17T08:11:10.4080148Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4083088Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-07-17T08:11:10.4086305Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-07-17T08:11:10.4089581Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-07-17T08:11:10.4093314Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-07-17T08:11:10.4096850Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4099971Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4103136Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-07-17T08:11:10.4107116Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-07-17T08:11:10.4110500Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4113552Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-07-17T08:11:10.4116598Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-07-17T08:11:10.4120101Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-07-17T08:11:10.4123396Z adding 'torch/include/ATen/ops/mm.h' 2025-07-17T08:11:10.4126673Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4129535Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-07-17T08:11:10.4132798Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-07-17T08:11:10.4135791Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-07-17T08:11:10.4139005Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-07-17T08:11:10.4142141Z adding 'torch/include/ATen/ops/mm_native.h' 2025-07-17T08:11:10.4145280Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-07-17T08:11:10.4148485Z adding 'torch/include/ATen/ops/mode.h' 2025-07-17T08:11:10.4151735Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4154798Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4157785Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-07-17T08:11:10.4160844Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-07-17T08:11:10.4163849Z adding 'torch/include/ATen/ops/mode_native.h' 2025-07-17T08:11:10.4167153Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-07-17T08:11:10.4170363Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-07-17T08:11:10.4173630Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4176490Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-07-17T08:11:10.4179659Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-07-17T08:11:10.4182714Z adding 'torch/include/ATen/ops/movedim.h' 2025-07-17T08:11:10.4186019Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4188832Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-07-17T08:11:10.4191978Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-07-17T08:11:10.4195638Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-07-17T08:11:10.4199192Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4202105Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-07-17T08:11:10.4205739Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-07-17T08:11:10.4209531Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-07-17T08:11:10.4213256Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4216211Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-07-17T08:11:10.4219555Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-07-17T08:11:10.4222628Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-07-17T08:11:10.4225790Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-07-17T08:11:10.4229015Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4232196Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4235162Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-07-17T08:11:10.4238319Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-07-17T08:11:10.4241596Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4244457Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-07-17T08:11:10.4247572Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-07-17T08:11:10.4250699Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-07-17T08:11:10.4253795Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-07-17T08:11:10.4256687Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-07-17T08:11:10.4259800Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-07-17T08:11:10.4262816Z adding 'torch/include/ATen/ops/msort.h' 2025-07-17T08:11:10.4266419Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4269271Z adding 'torch/include/ATen/ops/msort_native.h' 2025-07-17T08:11:10.4272394Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-07-17T08:11:10.4275539Z adding 'torch/include/ATen/ops/mul.h' 2025-07-17T08:11:10.4278784Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4281901Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4284763Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-07-17T08:11:10.4287787Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-07-17T08:11:10.4290837Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-07-17T08:11:10.4293891Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-07-17T08:11:10.4297064Z adding 'torch/include/ATen/ops/mul_native.h' 2025-07-17T08:11:10.4300465Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-07-17T08:11:10.4304059Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-07-17T08:11:10.4307310Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-07-17T08:11:10.4310526Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4313622Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4316617Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-07-17T08:11:10.4319844Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-07-17T08:11:10.4323036Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-07-17T08:11:10.4326178Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-07-17T08:11:10.4329230Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-07-17T08:11:10.4332718Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-07-17T08:11:10.4336000Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-07-17T08:11:10.4339172Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-07-17T08:11:10.4342485Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4345602Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4348781Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-07-17T08:11:10.4352015Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-07-17T08:11:10.4355615Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4358731Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-07-17T08:11:10.4361813Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-07-17T08:11:10.4365094Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-07-17T08:11:10.4368061Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-07-17T08:11:10.4371533Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-07-17T08:11:10.4374579Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-07-17T08:11:10.4377920Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-07-17T08:11:10.4381782Z adding 'torch/include/ATen/ops/multinomial.h' 2025-07-17T08:11:10.4384730Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-07-17T08:11:10.4388037Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-07-17T08:11:10.4391163Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-07-17T08:11:10.4394460Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-07-17T08:11:10.4397618Z adding 'torch/include/ATen/ops/multiply.h' 2025-07-17T08:11:10.4400955Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4404692Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-07-17T08:11:10.4407192Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-07-17T08:11:10.4410521Z adding 'torch/include/ATen/ops/mv.h' 2025-07-17T08:11:10.4413718Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4416774Z adding 'torch/include/ATen/ops/mv_native.h' 2025-07-17T08:11:10.4419916Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-07-17T08:11:10.4453147Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-07-17T08:11:10.4453521Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4453674Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-07-17T08:11:10.4453827Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-07-17T08:11:10.4453952Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-07-17T08:11:10.4454068Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-07-17T08:11:10.4454178Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-07-17T08:11:10.4454419Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4454566Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-07-17T08:11:10.4454845Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-07-17T08:11:10.4458054Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-07-17T08:11:10.4461554Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-07-17T08:11:10.4465229Z adding 'torch/include/ATen/ops/nanmean.h' 2025-07-17T08:11:10.4468085Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4471267Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-07-17T08:11:10.4474407Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-07-17T08:11:10.4477912Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-07-17T08:11:10.4481210Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4484297Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4488507Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-07-17T08:11:10.4490586Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-07-17T08:11:10.4493692Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-07-17T08:11:10.4497095Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-07-17T08:11:10.4500409Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-07-17T08:11:10.4504691Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4506864Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-07-17T08:11:10.4510179Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-07-17T08:11:10.4513359Z adding 'torch/include/ATen/ops/nansum.h' 2025-07-17T08:11:10.4516553Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-07-17T08:11:10.4519635Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-07-17T08:11:10.4522595Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-07-17T08:11:10.4525744Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-07-17T08:11:10.4528924Z adding 'torch/include/ATen/ops/narrow.h' 2025-07-17T08:11:10.4532314Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4535614Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-07-17T08:11:10.4539063Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4542057Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-07-17T08:11:10.4545061Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-07-17T08:11:10.4548277Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-07-17T08:11:10.4551241Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-07-17T08:11:10.4554410Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-07-17T08:11:10.4557598Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-07-17T08:11:10.4560944Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-07-17T08:11:10.4564312Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4567599Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4570801Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4573902Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-07-17T08:11:10.4577403Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-07-17T08:11:10.4580938Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-07-17T08:11:10.4584136Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-07-17T08:11:10.4587240Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-07-17T08:11:10.4590583Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-07-17T08:11:10.4593736Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-07-17T08:11:10.4597007Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4599937Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-07-17T08:11:10.4602870Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-07-17T08:11:10.4605929Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-07-17T08:11:10.4609039Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-07-17T08:11:10.4612282Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-07-17T08:11:10.4615529Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4618445Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4621406Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4624350Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-07-17T08:11:10.4627558Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-07-17T08:11:10.4630814Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4633781Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-07-17T08:11:10.4636809Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-07-17T08:11:10.4639904Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-07-17T08:11:10.4643092Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-07-17T08:11:10.4646616Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-07-17T08:11:10.4650526Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-07-17T08:11:10.4654130Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4657184Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4660271Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4663281Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-07-17T08:11:10.4666615Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-07-17T08:11:10.4670040Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4673113Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-07-17T08:11:10.4676157Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-07-17T08:11:10.4679165Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-07-17T08:11:10.4682478Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-07-17T08:11:10.4686537Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-07-17T08:11:10.4689905Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-07-17T08:11:10.4693536Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4696561Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4699667Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4703662Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-07-17T08:11:10.4707130Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-07-17T08:11:10.4710494Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4713550Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-07-17T08:11:10.4716573Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-07-17T08:11:10.4719597Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-07-17T08:11:10.4722869Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-07-17T08:11:10.4726054Z adding 'torch/include/ATen/ops/native_norm.h' 2025-07-17T08:11:10.4729363Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4732888Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-07-17T08:11:10.4736005Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-07-17T08:11:10.4739210Z adding 'torch/include/ATen/ops/ne.h' 2025-07-17T08:11:10.4742493Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4745602Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-07-17T08:11:10.4749270Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-07-17T08:11:10.4751890Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-07-17T08:11:10.4755626Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-07-17T08:11:10.4758225Z adding 'torch/include/ATen/ops/ne_native.h' 2025-07-17T08:11:10.4761709Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-07-17T08:11:10.4764842Z adding 'torch/include/ATen/ops/neg.h' 2025-07-17T08:11:10.4768272Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4771248Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-07-17T08:11:10.4774456Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-07-17T08:11:10.4778385Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-07-17T08:11:10.4780672Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-07-17T08:11:10.4784267Z adding 'torch/include/ATen/ops/neg_native.h' 2025-07-17T08:11:10.4787011Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-07-17T08:11:10.4790228Z adding 'torch/include/ATen/ops/negative.h' 2025-07-17T08:11:10.4793438Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4796379Z adding 'torch/include/ATen/ops/negative_native.h' 2025-07-17T08:11:10.4799528Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-07-17T08:11:10.4802857Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-07-17T08:11:10.4806079Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4809102Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-07-17T08:11:10.4813200Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-07-17T08:11:10.4815806Z adding 'torch/include/ATen/ops/new_empty.h' 2025-07-17T08:11:10.4819407Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4822343Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-07-17T08:11:10.4825718Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-07-17T08:11:10.4830142Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-07-17T08:11:10.4832726Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4836432Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4839028Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-07-17T08:11:10.4842344Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-07-17T08:11:10.4845824Z adding 'torch/include/ATen/ops/new_full.h' 2025-07-17T08:11:10.4849461Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4853290Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-07-17T08:11:10.4855929Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-07-17T08:11:10.4859700Z adding 'torch/include/ATen/ops/new_ones.h' 2025-07-17T08:11:10.4863129Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4866221Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-07-17T08:11:10.4870435Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-07-17T08:11:10.4873021Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-07-17T08:11:10.4876595Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.4879480Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-07-17T08:11:10.4882819Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-07-17T08:11:10.4885972Z adding 'torch/include/ATen/ops/nextafter.h' 2025-07-17T08:11:10.4889481Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4893413Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-07-17T08:11:10.4895738Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-07-17T08:11:10.4899162Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-07-17T08:11:10.4901840Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-07-17T08:11:10.4904936Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-07-17T08:11:10.4908090Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-07-17T08:11:10.4911633Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-07-17T08:11:10.4915718Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-07-17T08:11:10.4918914Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-07-17T08:11:10.4943618Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4943848Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4944015Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-07-17T08:11:10.4944161Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-07-17T08:11:10.4944416Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4944544Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-07-17T08:11:10.4946007Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-07-17T08:11:10.4949645Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-07-17T08:11:10.4952598Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-07-17T08:11:10.4956060Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-07-17T08:11:10.4959161Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-07-17T08:11:10.4962582Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-07-17T08:11:10.4967496Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-07-17T08:11:10.4969905Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.4973048Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-07-17T08:11:10.4976244Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-07-17T08:11:10.4979514Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-07-17T08:11:10.4982707Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-07-17T08:11:10.4985802Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-07-17T08:11:10.4989329Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-07-17T08:11:10.4992755Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.4996300Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-07-17T08:11:10.4999689Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5002683Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-07-17T08:11:10.5005887Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-07-17T08:11:10.5008939Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-07-17T08:11:10.5012205Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-07-17T08:11:10.5015244Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-07-17T08:11:10.5018511Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-07-17T08:11:10.5021578Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-07-17T08:11:10.5025527Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-07-17T08:11:10.5028199Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5031075Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-07-17T08:11:10.5034225Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-07-17T08:11:10.5037491Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-07-17T08:11:10.5040550Z adding 'torch/include/ATen/ops/nonzero.h' 2025-07-17T08:11:10.5043627Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-07-17T08:11:10.5046670Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-07-17T08:11:10.5049586Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-07-17T08:11:10.5052712Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-07-17T08:11:10.5055952Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5058798Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-07-17T08:11:10.5061836Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-07-17T08:11:10.5064968Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-07-17T08:11:10.5068241Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-07-17T08:11:10.5071469Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-07-17T08:11:10.5074555Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-07-17T08:11:10.5077608Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-07-17T08:11:10.5081027Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-07-17T08:11:10.5084411Z adding 'torch/include/ATen/ops/norm.h' 2025-07-17T08:11:10.5087873Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5091144Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5094422Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5097476Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-07-17T08:11:10.5100786Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-07-17T08:11:10.5104543Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-07-17T08:11:10.5107457Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5110414Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-07-17T08:11:10.5113526Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-07-17T08:11:10.5116669Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-07-17T08:11:10.5119775Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-07-17T08:11:10.5123104Z adding 'torch/include/ATen/ops/norm_native.h' 2025-07-17T08:11:10.5127453Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-07-17T08:11:10.5131545Z adding 'torch/include/ATen/ops/normal.h' 2025-07-17T08:11:10.5135484Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5138972Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-07-17T08:11:10.5142017Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-07-17T08:11:10.5145277Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-07-17T08:11:10.5148564Z adding 'torch/include/ATen/ops/normal_native.h' 2025-07-17T08:11:10.5152575Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-07-17T08:11:10.5156149Z adding 'torch/include/ATen/ops/not_equal.h' 2025-07-17T08:11:10.5159392Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5162451Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-07-17T08:11:10.5165834Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-07-17T08:11:10.5169300Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-07-17T08:11:10.5173430Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5175803Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-07-17T08:11:10.5179233Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-07-17T08:11:10.5182221Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-07-17T08:11:10.5185549Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5188361Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-07-17T08:11:10.5191615Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-07-17T08:11:10.5194680Z adding 'torch/include/ATen/ops/one_hot.h' 2025-07-17T08:11:10.5198012Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5201885Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-07-17T08:11:10.5204151Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-07-17T08:11:10.5207830Z adding 'torch/include/ATen/ops/ones.h' 2025-07-17T08:11:10.5211433Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5214735Z adding 'torch/include/ATen/ops/ones_like.h' 2025-07-17T08:11:10.5219014Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5221139Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-07-17T08:11:10.5224878Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-07-17T08:11:10.5227547Z adding 'torch/include/ATen/ops/ones_native.h' 2025-07-17T08:11:10.5231061Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-07-17T08:11:10.5234111Z adding 'torch/include/ATen/ops/or.h' 2025-07-17T08:11:10.5237450Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5240272Z adding 'torch/include/ATen/ops/or_native.h' 2025-07-17T08:11:10.5243690Z adding 'torch/include/ATen/ops/or_ops.h' 2025-07-17T08:11:10.5247693Z adding 'torch/include/ATen/ops/orgqr.h' 2025-07-17T08:11:10.5250265Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5253518Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-07-17T08:11:10.5256516Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-07-17T08:11:10.5259747Z adding 'torch/include/ATen/ops/ormqr.h' 2025-07-17T08:11:10.5262889Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-07-17T08:11:10.5266123Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-07-17T08:11:10.5269429Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-07-17T08:11:10.5272791Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-07-17T08:11:10.5276592Z adding 'torch/include/ATen/ops/outer.h' 2025-07-17T08:11:10.5279191Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5282393Z adding 'torch/include/ATen/ops/outer_native.h' 2025-07-17T08:11:10.5285347Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-07-17T08:11:10.5288407Z adding 'torch/include/ATen/ops/output_nr.h' 2025-07-17T08:11:10.5291656Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5294687Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-07-17T08:11:10.5297768Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-07-17T08:11:10.5301058Z adding 'torch/include/ATen/ops/pad.h' 2025-07-17T08:11:10.5305331Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5307397Z adding 'torch/include/ATen/ops/pad_native.h' 2025-07-17T08:11:10.5310999Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-07-17T08:11:10.5313681Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-07-17T08:11:10.5317068Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5320273Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-07-17T08:11:10.5323580Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-07-17T08:11:10.5326610Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-07-17T08:11:10.5330088Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5333932Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-07-17T08:11:10.5336321Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-07-17T08:11:10.5339661Z adding 'torch/include/ATen/ops/pdist.h' 2025-07-17T08:11:10.5342565Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5345536Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-07-17T08:11:10.5348582Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-07-17T08:11:10.5351713Z adding 'torch/include/ATen/ops/permute.h' 2025-07-17T08:11:10.5354895Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5357957Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-07-17T08:11:10.5361155Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5364500Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5368270Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-07-17T08:11:10.5370697Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-07-17T08:11:10.5374067Z adding 'torch/include/ATen/ops/permute_native.h' 2025-07-17T08:11:10.5376958Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-07-17T08:11:10.5380102Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-07-17T08:11:10.5383330Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5386285Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-07-17T08:11:10.5389367Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-07-17T08:11:10.5392519Z adding 'torch/include/ATen/ops/pinverse.h' 2025-07-17T08:11:10.5395688Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5398659Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-07-17T08:11:10.5402699Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-07-17T08:11:10.5404965Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-07-17T08:11:10.5408181Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5411746Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5414876Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-07-17T08:11:10.5417775Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-07-17T08:11:10.5420914Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-07-17T08:11:10.5423975Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-07-17T08:11:10.5427209Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5430572Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5433443Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-07-17T08:11:10.5436389Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-07-17T08:11:10.5439519Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-07-17T08:11:10.5442551Z adding 'torch/include/ATen/ops/poisson.h' 2025-07-17T08:11:10.5445779Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5449441Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-07-17T08:11:10.5452686Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-07-17T08:11:10.5455597Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-07-17T08:11:10.5458618Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-07-17T08:11:10.5462086Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5464923Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-07-17T08:11:10.5468031Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-07-17T08:11:10.5471439Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-07-17T08:11:10.5474486Z adding 'torch/include/ATen/ops/polar.h' 2025-07-17T08:11:10.5477687Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5480614Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-07-17T08:11:10.5483702Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-07-17T08:11:10.5486622Z adding 'torch/include/ATen/ops/polar_native.h' 2025-07-17T08:11:10.5489710Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-07-17T08:11:10.5492896Z adding 'torch/include/ATen/ops/polygamma.h' 2025-07-17T08:11:10.5496084Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5499198Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5502099Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-07-17T08:11:10.5505156Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-07-17T08:11:10.5508055Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-07-17T08:11:10.5511081Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-07-17T08:11:10.5514024Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-07-17T08:11:10.5517337Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-07-17T08:11:10.5520415Z adding 'torch/include/ATen/ops/positive.h' 2025-07-17T08:11:10.5523592Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5526359Z adding 'torch/include/ATen/ops/positive_native.h' 2025-07-17T08:11:10.5529441Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-07-17T08:11:10.5532767Z adding 'torch/include/ATen/ops/pow.h' 2025-07-17T08:11:10.5536102Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5539017Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-07-17T08:11:10.5542137Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-07-17T08:11:10.5545167Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-07-17T08:11:10.5548285Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-07-17T08:11:10.5551335Z adding 'torch/include/ATen/ops/pow_native.h' 2025-07-17T08:11:10.5554783Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-07-17T08:11:10.5557902Z adding 'torch/include/ATen/ops/prelu.h' 2025-07-17T08:11:10.5561047Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5563857Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-07-17T08:11:10.5566908Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-07-17T08:11:10.5570206Z adding 'torch/include/ATen/ops/prod.h' 2025-07-17T08:11:10.5573516Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5576627Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.5579640Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5582593Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-07-17T08:11:10.5585644Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-07-17T08:11:10.5588800Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-07-17T08:11:10.5591858Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-07-17T08:11:10.5594936Z adding 'torch/include/ATen/ops/prod_native.h' 2025-07-17T08:11:10.5598252Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-07-17T08:11:10.5601442Z adding 'torch/include/ATen/ops/promote_types.h' 2025-07-17T08:11:10.5604557Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5607351Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-07-17T08:11:10.5610466Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-07-17T08:11:10.5613512Z adding 'torch/include/ATen/ops/put.h' 2025-07-17T08:11:10.5616714Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5619969Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-07-17T08:11:10.5622879Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-07-17T08:11:10.5625882Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-07-17T08:11:10.5628843Z adding 'torch/include/ATen/ops/put_native.h' 2025-07-17T08:11:10.5632103Z adding 'torch/include/ATen/ops/put_ops.h' 2025-07-17T08:11:10.5635144Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-07-17T08:11:10.5638108Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-07-17T08:11:10.5641073Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-07-17T08:11:10.5644066Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-07-17T08:11:10.5647257Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5650117Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-07-17T08:11:10.5653294Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-07-17T08:11:10.5656376Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-07-17T08:11:10.5659612Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5662413Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-07-17T08:11:10.5665509Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-07-17T08:11:10.5668452Z adding 'torch/include/ATen/ops/q_scale.h' 2025-07-17T08:11:10.5671337Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-07-17T08:11:10.5674349Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-07-17T08:11:10.5677353Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-07-17T08:11:10.5680271Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-07-17T08:11:10.5683321Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-07-17T08:11:10.5686333Z adding 'torch/include/ATen/ops/qr.h' 2025-07-17T08:11:10.5689505Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5692458Z adding 'torch/include/ATen/ops/qr_native.h' 2025-07-17T08:11:10.5695603Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-07-17T08:11:10.5698555Z adding 'torch/include/ATen/ops/qscheme.h' 2025-07-17T08:11:10.5701461Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-07-17T08:11:10.5704553Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-07-17T08:11:10.5707760Z adding 'torch/include/ATen/ops/quantile.h' 2025-07-17T08:11:10.5711094Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5714010Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-07-17T08:11:10.5717298Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-07-17T08:11:10.5720703Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-07-17T08:11:10.5723959Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5727215Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-07-17T08:11:10.5730435Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-07-17T08:11:10.5733436Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-07-17T08:11:10.5736633Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-07-17T08:11:10.5739982Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-07-17T08:11:10.5743453Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5746427Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-07-17T08:11:10.5749460Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-07-17T08:11:10.5752563Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-07-17T08:11:10.5755819Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5758769Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-07-17T08:11:10.5761807Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-07-17T08:11:10.5764835Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-07-17T08:11:10.5767938Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-07-17T08:11:10.5771132Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-07-17T08:11:10.5774630Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-07-17T08:11:10.5777953Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-07-17T08:11:10.5781259Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5784153Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-07-17T08:11:10.5787403Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-07-17T08:11:10.5790535Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-07-17T08:11:10.5793870Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5796778Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-07-17T08:11:10.5799995Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-07-17T08:11:10.5803149Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-07-17T08:11:10.5806411Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5809355Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-07-17T08:11:10.5812692Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-07-17T08:11:10.5815875Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-07-17T08:11:10.5820308Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5822578Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-07-17T08:11:10.5825534Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-07-17T08:11:10.5828651Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-07-17T08:11:10.5832072Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5834832Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-07-17T08:11:10.5838028Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-07-17T08:11:10.5841226Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-07-17T08:11:10.5844481Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5847338Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-07-17T08:11:10.5850644Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-07-17T08:11:10.5853915Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-07-17T08:11:10.5857177Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5860060Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-07-17T08:11:10.5863247Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-07-17T08:11:10.5866359Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-07-17T08:11:10.5869620Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5872499Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-07-17T08:11:10.5875803Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-07-17T08:11:10.5878785Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-07-17T08:11:10.5881919Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5884812Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-07-17T08:11:10.5887977Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-07-17T08:11:10.5892773Z adding 'torch/include/ATen/ops/rand.h' 2025-07-17T08:11:10.5896882Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5900109Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5903244Z adding 'torch/include/ATen/ops/rand_like.h' 2025-07-17T08:11:10.5906558Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5909472Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-07-17T08:11:10.5912703Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-07-17T08:11:10.5915804Z adding 'torch/include/ATen/ops/rand_native.h' 2025-07-17T08:11:10.5919450Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-07-17T08:11:10.5924525Z adding 'torch/include/ATen/ops/randint.h' 2025-07-17T08:11:10.5928884Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5933399Z adding 'torch/include/ATen/ops/randint_like.h' 2025-07-17T08:11:10.5937808Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5980439Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-07-17T08:11:10.5980854Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-07-17T08:11:10.5981193Z adding 'torch/include/ATen/ops/randint_native.h' 2025-07-17T08:11:10.5981532Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-07-17T08:11:10.5981831Z adding 'torch/include/ATen/ops/randn.h' 2025-07-17T08:11:10.5982264Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5983455Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.5983910Z adding 'torch/include/ATen/ops/randn_like.h' 2025-07-17T08:11:10.5984363Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.5985033Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T08:11:10.5987060Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-07-17T08:11:10.5987410Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-07-17T08:11:10.5987749Z adding 'torch/include/ATen/ops/randn_native.h' 2025-07-17T08:11:10.5991021Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-07-17T08:11:10.5994603Z adding 'torch/include/ATen/ops/random.h' 2025-07-17T08:11:10.5999010Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6001222Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-07-17T08:11:10.6004930Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-07-17T08:11:10.6007489Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-07-17T08:11:10.6010650Z adding 'torch/include/ATen/ops/random_native.h' 2025-07-17T08:11:10.6014198Z adding 'torch/include/ATen/ops/random_ops.h' 2025-07-17T08:11:10.6018364Z adding 'torch/include/ATen/ops/randperm.h' 2025-07-17T08:11:10.6021953Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6025005Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-07-17T08:11:10.6028090Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-07-17T08:11:10.6032077Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-07-17T08:11:10.6034639Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-07-17T08:11:10.6037999Z adding 'torch/include/ATen/ops/range.h' 2025-07-17T08:11:10.6041334Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6044376Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-07-17T08:11:10.6047400Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-07-17T08:11:10.6050412Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-07-17T08:11:10.6053693Z adding 'torch/include/ATen/ops/range_native.h' 2025-07-17T08:11:10.6057076Z adding 'torch/include/ATen/ops/range_ops.h' 2025-07-17T08:11:10.6060142Z adding 'torch/include/ATen/ops/ravel.h' 2025-07-17T08:11:10.6063475Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6066288Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-07-17T08:11:10.6069343Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-07-17T08:11:10.6072293Z adding 'torch/include/ATen/ops/real.h' 2025-07-17T08:11:10.6075446Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6078256Z adding 'torch/include/ATen/ops/real_native.h' 2025-07-17T08:11:10.6081591Z adding 'torch/include/ATen/ops/real_ops.h' 2025-07-17T08:11:10.6084726Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-07-17T08:11:10.6088328Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6091083Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-07-17T08:11:10.6094124Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-07-17T08:11:10.6097008Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-07-17T08:11:10.6100038Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-07-17T08:11:10.6103222Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-07-17T08:11:10.6112003Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-07-17T08:11:10.6112379Z adding 'torch/include/ATen/ops/record_stream.h' 2025-07-17T08:11:10.6114952Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-07-17T08:11:10.6117961Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-07-17T08:11:10.6121009Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-07-17T08:11:10.6123980Z adding 'torch/include/ATen/ops/refine_names.h' 2025-07-17T08:11:10.6127094Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6129922Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-07-17T08:11:10.6133088Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-07-17T08:11:10.6136390Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-07-17T08:11:10.6139864Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-07-17T08:11:10.6143328Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6146287Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.6149412Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.6152392Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-07-17T08:11:10.6155500Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-07-17T08:11:10.6158524Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-07-17T08:11:10.6161693Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-07-17T08:11:10.6165030Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6167973Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-07-17T08:11:10.6171175Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-07-17T08:11:10.6174150Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-07-17T08:11:10.6177234Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-07-17T08:11:10.6180250Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-07-17T08:11:10.6183455Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-07-17T08:11:10.6187456Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-07-17T08:11:10.6191082Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-07-17T08:11:10.6194346Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.6197415Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.6200401Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-07-17T08:11:10.6203556Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-07-17T08:11:10.6206914Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-07-17T08:11:10.6210097Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-07-17T08:11:10.6213189Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-07-17T08:11:10.6216335Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-07-17T08:11:10.6219619Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-07-17T08:11:10.6223074Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-07-17T08:11:10.6226497Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6229451Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.6232577Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.6235512Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-07-17T08:11:10.6238648Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-07-17T08:11:10.6241621Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-07-17T08:11:10.6245311Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-07-17T08:11:10.6248224Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6251229Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-07-17T08:11:10.6254322Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-07-17T08:11:10.6257343Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-07-17T08:11:10.6260455Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-07-17T08:11:10.6263429Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-07-17T08:11:10.6266569Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-07-17T08:11:10.6269586Z adding 'torch/include/ATen/ops/relu.h' 2025-07-17T08:11:10.6272593Z adding 'torch/include/ATen/ops/relu6.h' 2025-07-17T08:11:10.6275766Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6278542Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-07-17T08:11:10.6281610Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-07-17T08:11:10.6284778Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6287687Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-07-17T08:11:10.6290748Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-07-17T08:11:10.6293768Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-07-17T08:11:10.6296789Z adding 'torch/include/ATen/ops/relu_native.h' 2025-07-17T08:11:10.6299949Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-07-17T08:11:10.6303236Z adding 'torch/include/ATen/ops/remainder.h' 2025-07-17T08:11:10.6306517Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6309652Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6312548Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-07-17T08:11:10.6315640Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-07-17T08:11:10.6318600Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-07-17T08:11:10.6321622Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-07-17T08:11:10.6324618Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-07-17T08:11:10.6328059Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-07-17T08:11:10.6331273Z adding 'torch/include/ATen/ops/rename.h' 2025-07-17T08:11:10.6334444Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6337175Z adding 'torch/include/ATen/ops/rename_native.h' 2025-07-17T08:11:10.6340276Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-07-17T08:11:10.6343341Z adding 'torch/include/ATen/ops/renorm.h' 2025-07-17T08:11:10.6346908Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6349818Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-07-17T08:11:10.6353071Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-07-17T08:11:10.6356020Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-07-17T08:11:10.6359208Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-07-17T08:11:10.6362169Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-07-17T08:11:10.6365552Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-07-17T08:11:10.6369360Z adding 'torch/include/ATen/ops/repeat.h' 2025-07-17T08:11:10.6372357Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6376003Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-07-17T08:11:10.6379450Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6382755Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6386633Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-07-17T08:11:10.6388885Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-07-17T08:11:10.6392417Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-07-17T08:11:10.6395345Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-07-17T08:11:10.6398536Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-07-17T08:11:10.6401670Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-07-17T08:11:10.6405173Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-07-17T08:11:10.6409641Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-07-17T08:11:10.6412281Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6415500Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.6418554Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.6421682Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-07-17T08:11:10.6424803Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-07-17T08:11:10.6427947Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-07-17T08:11:10.6431091Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-07-17T08:11:10.6434620Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6461145Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-07-17T08:11:10.6461754Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-07-17T08:11:10.6462198Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-07-17T08:11:10.6462623Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-07-17T08:11:10.6463066Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-07-17T08:11:10.6463463Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-07-17T08:11:10.6463828Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-07-17T08:11:10.6464228Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-07-17T08:11:10.6471102Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.6471679Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.6473381Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-07-17T08:11:10.6477177Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-07-17T08:11:10.6480116Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6483132Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-07-17T08:11:10.6486224Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-07-17T08:11:10.6489346Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-07-17T08:11:10.6492601Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-07-17T08:11:10.6495773Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-07-17T08:11:10.6498925Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-07-17T08:11:10.6502186Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-07-17T08:11:10.6506281Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-07-17T08:11:10.6509100Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-07-17T08:11:10.6512310Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-07-17T08:11:10.6515259Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-07-17T08:11:10.6518436Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-07-17T08:11:10.6522525Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6524801Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-07-17T08:11:10.6527916Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-07-17T08:11:10.6530995Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-07-17T08:11:10.6534126Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-07-17T08:11:10.6537129Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-07-17T08:11:10.6540270Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-07-17T08:11:10.6543243Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-07-17T08:11:10.6546369Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6549171Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-07-17T08:11:10.6553134Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-07-17T08:11:10.6555456Z adding 'torch/include/ATen/ops/reshape.h' 2025-07-17T08:11:10.6558397Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-07-17T08:11:10.6561581Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6564685Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T08:11:10.6567469Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-07-17T08:11:10.6570611Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-07-17T08:11:10.6573818Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6576901Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T08:11:10.6579645Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-07-17T08:11:10.6582782Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-07-17T08:11:10.6586134Z adding 'torch/include/ATen/ops/resize.h' 2025-07-17T08:11:10.6589438Z adding 'torch/include/ATen/ops/resize_as.h' 2025-07-17T08:11:10.6593748Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6595742Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-07-17T08:11:10.6598996Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-07-17T08:11:10.6602114Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-07-17T08:11:10.6605372Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6608292Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-07-17T08:11:10.6611513Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-07-17T08:11:10.6614796Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-07-17T08:11:10.6618072Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6620998Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-07-17T08:11:10.6624024Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-07-17T08:11:10.6627048Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-07-17T08:11:10.6630055Z adding 'torch/include/ATen/ops/resize_native.h' 2025-07-17T08:11:10.6633321Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-07-17T08:11:10.6636384Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-07-17T08:11:10.6639533Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6642336Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-07-17T08:11:10.6645377Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-07-17T08:11:10.6648358Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-07-17T08:11:10.6651623Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6654417Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-07-17T08:11:10.6657437Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-07-17T08:11:10.6660545Z adding 'torch/include/ATen/ops/result_type.h' 2025-07-17T08:11:10.6663809Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6666652Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-07-17T08:11:10.6669896Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-07-17T08:11:10.6672881Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-07-17T08:11:10.6676044Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6678846Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-07-17T08:11:10.6681841Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-07-17T08:11:10.6684927Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-07-17T08:11:10.6687919Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6690849Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-07-17T08:11:10.6693856Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-07-17T08:11:10.6697119Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-07-17T08:11:10.6700335Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6703186Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-07-17T08:11:10.6706301Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-07-17T08:11:10.6709398Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-07-17T08:11:10.6712472Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-07-17T08:11:10.6715658Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6718500Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-07-17T08:11:10.6721574Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-07-17T08:11:10.6724748Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6727589Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-07-17T08:11:10.6730917Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-07-17T08:11:10.6734026Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-07-17T08:11:10.6737114Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-07-17T08:11:10.6740283Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6743130Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-07-17T08:11:10.6746203Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-07-17T08:11:10.6749414Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6752248Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-07-17T08:11:10.6755462Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-07-17T08:11:10.6758809Z adding 'torch/include/ATen/ops/roll.h' 2025-07-17T08:11:10.6762414Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6765256Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-07-17T08:11:10.6768316Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-07-17T08:11:10.6771350Z adding 'torch/include/ATen/ops/roll_native.h' 2025-07-17T08:11:10.6774497Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-07-17T08:11:10.6777577Z adding 'torch/include/ATen/ops/rot90.h' 2025-07-17T08:11:10.6780786Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6783603Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-07-17T08:11:10.6786701Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-07-17T08:11:10.6789809Z adding 'torch/include/ATen/ops/round.h' 2025-07-17T08:11:10.6793099Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6796004Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-07-17T08:11:10.6799068Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-07-17T08:11:10.6801986Z adding 'torch/include/ATen/ops/round_meta.h' 2025-07-17T08:11:10.6805032Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-07-17T08:11:10.6808045Z adding 'torch/include/ATen/ops/round_native.h' 2025-07-17T08:11:10.6811542Z adding 'torch/include/ATen/ops/round_ops.h' 2025-07-17T08:11:10.6814591Z adding 'torch/include/ATen/ops/row_indices.h' 2025-07-17T08:11:10.6817713Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6820567Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-07-17T08:11:10.6823731Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6826827Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6829585Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-07-17T08:11:10.6832689Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-07-17T08:11:10.6835628Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-07-17T08:11:10.6838628Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-07-17T08:11:10.6841635Z adding 'torch/include/ATen/ops/row_stack.h' 2025-07-17T08:11:10.6844834Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6847636Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-07-17T08:11:10.6851516Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-07-17T08:11:10.6854081Z adding 'torch/include/ATen/ops/rrelu.h' 2025-07-17T08:11:10.6857612Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.6860583Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-07-17T08:11:10.6863810Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-07-17T08:11:10.6867142Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-07-17T08:11:10.6870367Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-07-17T08:11:10.6873666Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6876535Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-07-17T08:11:10.6879727Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-07-17T08:11:10.6882983Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6885966Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-07-17T08:11:10.6889066Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-07-17T08:11:10.6892265Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-07-17T08:11:10.6895320Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-07-17T08:11:10.6898723Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-07-17T08:11:10.6901963Z adding 'torch/include/ATen/ops/rshift.h' 2025-07-17T08:11:10.6905578Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6908785Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-07-17T08:11:10.6911866Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-07-17T08:11:10.6915134Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-07-17T08:11:10.6918131Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-07-17T08:11:10.6921451Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-07-17T08:11:10.6924583Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-07-17T08:11:10.6927868Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.6930866Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-07-17T08:11:10.6933920Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-07-17T08:11:10.6936865Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-07-17T08:11:10.6939881Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-07-17T08:11:10.6942795Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-07-17T08:11:10.6945910Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-07-17T08:11:10.6949070Z adding 'torch/include/ATen/ops/rsub.h' 2025-07-17T08:11:10.6957368Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.6957846Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-07-17T08:11:10.6958936Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-07-17T08:11:10.7001059Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-07-17T08:11:10.7001412Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-07-17T08:11:10.7001737Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-07-17T08:11:10.7002223Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7002732Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-07-17T08:11:10.7003096Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-07-17T08:11:10.7004823Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-07-17T08:11:10.7006748Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7007394Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-07-17T08:11:10.7007888Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-07-17T08:11:10.7008292Z adding 'torch/include/ATen/ops/scatter.h' 2025-07-17T08:11:10.7008594Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-07-17T08:11:10.7009134Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7009819Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7010780Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-07-17T08:11:10.7014113Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-07-17T08:11:10.7016929Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-07-17T08:11:10.7020195Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-07-17T08:11:10.7023118Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-07-17T08:11:10.7026618Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-07-17T08:11:10.7030065Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7033095Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7036361Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-07-17T08:11:10.7039566Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-07-17T08:11:10.7042622Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-07-17T08:11:10.7045833Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-07-17T08:11:10.7048907Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-07-17T08:11:10.7053139Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-07-17T08:11:10.7057375Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-07-17T08:11:10.7060182Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7063389Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-07-17T08:11:10.7066477Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-07-17T08:11:10.7069484Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-07-17T08:11:10.7072627Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-07-17T08:11:10.7075648Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-07-17T08:11:10.7079011Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-07-17T08:11:10.7083006Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-07-17T08:11:10.7085779Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-07-17T08:11:10.7088970Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-07-17T08:11:10.7092247Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-07-17T08:11:10.7095705Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-07-17T08:11:10.7099191Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-07-17T08:11:10.7102531Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7105539Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-07-17T08:11:10.7108591Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-07-17T08:11:10.7111647Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-07-17T08:11:10.7114981Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-07-17T08:11:10.7118158Z adding 'torch/include/ATen/ops/select.h' 2025-07-17T08:11:10.7121535Z adding 'torch/include/ATen/ops/select_backward.h' 2025-07-17T08:11:10.7125150Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7128347Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7131281Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-07-17T08:11:10.7134468Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-07-17T08:11:10.7137684Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7140991Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7144175Z adding 'torch/include/ATen/ops/select_copy.h' 2025-07-17T08:11:10.7147517Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7150685Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7153526Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-07-17T08:11:10.7156650Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-07-17T08:11:10.7159699Z adding 'torch/include/ATen/ops/select_native.h' 2025-07-17T08:11:10.7162880Z adding 'torch/include/ATen/ops/select_ops.h' 2025-07-17T08:11:10.7166172Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-07-17T08:11:10.7169566Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7172841Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7175681Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-07-17T08:11:10.7178833Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-07-17T08:11:10.7181821Z adding 'torch/include/ATen/ops/selu.h' 2025-07-17T08:11:10.7185027Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7187857Z adding 'torch/include/ATen/ops/selu_native.h' 2025-07-17T08:11:10.7190971Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-07-17T08:11:10.7194667Z adding 'torch/include/ATen/ops/set.h' 2025-07-17T08:11:10.7198236Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7201410Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7204345Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-07-17T08:11:10.7207364Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-07-17T08:11:10.7210358Z adding 'torch/include/ATen/ops/set_data.h' 2025-07-17T08:11:10.7213548Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7216419Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-07-17T08:11:10.7219487Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-07-17T08:11:10.7222572Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-07-17T08:11:10.7225688Z adding 'torch/include/ATen/ops/set_native.h' 2025-07-17T08:11:10.7229769Z adding 'torch/include/ATen/ops/set_ops.h' 2025-07-17T08:11:10.7233072Z adding 'torch/include/ATen/ops/sgn.h' 2025-07-17T08:11:10.7236363Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7240385Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-07-17T08:11:10.7242374Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-07-17T08:11:10.7246097Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-07-17T08:11:10.7248521Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-07-17T08:11:10.7251896Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-07-17T08:11:10.7254901Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-07-17T08:11:10.7258123Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-07-17T08:11:10.7261256Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-07-17T08:11:10.7264712Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7267598Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-07-17T08:11:10.7270811Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-07-17T08:11:10.7274800Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-07-17T08:11:10.7277087Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-07-17T08:11:10.7280239Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-07-17T08:11:10.7283347Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-07-17T08:11:10.7286833Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7289573Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-07-17T08:11:10.7292820Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-07-17T08:11:10.7295748Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-07-17T08:11:10.7298935Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-07-17T08:11:10.7301917Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-07-17T08:11:10.7305217Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-07-17T08:11:10.7308254Z adding 'torch/include/ATen/ops/sign.h' 2025-07-17T08:11:10.7311706Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7315241Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-07-17T08:11:10.7317745Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-07-17T08:11:10.7321029Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-07-17T08:11:10.7323870Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-07-17T08:11:10.7326926Z adding 'torch/include/ATen/ops/sign_native.h' 2025-07-17T08:11:10.7330097Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-07-17T08:11:10.7333363Z adding 'torch/include/ATen/ops/signbit.h' 2025-07-17T08:11:10.7336641Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7339699Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-07-17T08:11:10.7343278Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-07-17T08:11:10.7345832Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-07-17T08:11:10.7349645Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-07-17T08:11:10.7352024Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-07-17T08:11:10.7355479Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-07-17T08:11:10.7358290Z adding 'torch/include/ATen/ops/silu.h' 2025-07-17T08:11:10.7361537Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-07-17T08:11:10.7364856Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7367970Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7371027Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-07-17T08:11:10.7374252Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-07-17T08:11:10.7388514Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-07-17T08:11:10.7390215Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-07-17T08:11:10.7390636Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-07-17T08:11:10.7391024Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-07-17T08:11:10.7391549Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7392961Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-07-17T08:11:10.7395989Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-07-17T08:11:10.7398988Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-07-17T08:11:10.7402138Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-07-17T08:11:10.7405091Z adding 'torch/include/ATen/ops/silu_native.h' 2025-07-17T08:11:10.7408363Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-07-17T08:11:10.7411532Z adding 'torch/include/ATen/ops/sin.h' 2025-07-17T08:11:10.7415077Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7418747Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-07-17T08:11:10.7421236Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-07-17T08:11:10.7424107Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-07-17T08:11:10.7427164Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-07-17T08:11:10.7430261Z adding 'torch/include/ATen/ops/sin_native.h' 2025-07-17T08:11:10.7433394Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-07-17T08:11:10.7436599Z adding 'torch/include/ATen/ops/sinc.h' 2025-07-17T08:11:10.7439869Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7442902Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-07-17T08:11:10.7445956Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-07-17T08:11:10.7449240Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-07-17T08:11:10.7464283Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-07-17T08:11:10.7464427Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-07-17T08:11:10.7464540Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-07-17T08:11:10.7464637Z adding 'torch/include/ATen/ops/sinh.h' 2025-07-17T08:11:10.7466560Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7470276Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-07-17T08:11:10.7472659Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-07-17T08:11:10.7476291Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-07-17T08:11:10.7478834Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-07-17T08:11:10.7482324Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-07-17T08:11:10.7485187Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-07-17T08:11:10.7488409Z adding 'torch/include/ATen/ops/size.h' 2025-07-17T08:11:10.7491705Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7494566Z adding 'torch/include/ATen/ops/size_native.h' 2025-07-17T08:11:10.7497688Z adding 'torch/include/ATen/ops/size_ops.h' 2025-07-17T08:11:10.7501132Z adding 'torch/include/ATen/ops/slice.h' 2025-07-17T08:11:10.7504602Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-07-17T08:11:10.7508116Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7511278Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-07-17T08:11:10.7515545Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-07-17T08:11:10.7517992Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7521325Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-07-17T08:11:10.7524730Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7527886Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7530803Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-07-17T08:11:10.7534019Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-07-17T08:11:10.7537234Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-07-17T08:11:10.7540531Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7543410Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-07-17T08:11:10.7546692Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-07-17T08:11:10.7549641Z adding 'torch/include/ATen/ops/slice_native.h' 2025-07-17T08:11:10.7552738Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-07-17T08:11:10.7556199Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-07-17T08:11:10.7559627Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7562885Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7565728Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-07-17T08:11:10.7568937Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-07-17T08:11:10.7572159Z adding 'torch/include/ATen/ops/slogdet.h' 2025-07-17T08:11:10.7575381Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7578239Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-07-17T08:11:10.7581388Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-07-17T08:11:10.7584903Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-07-17T08:11:10.7588449Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7591886Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-07-17T08:11:10.7595249Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-07-17T08:11:10.7598260Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-07-17T08:11:10.7601930Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-07-17T08:11:10.7604676Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-07-17T08:11:10.7607878Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-07-17T08:11:10.7611608Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-07-17T08:11:10.7615121Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7618165Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-07-17T08:11:10.7621254Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-07-17T08:11:10.7624242Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-07-17T08:11:10.7627757Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-07-17T08:11:10.7631424Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-07-17T08:11:10.7634993Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7638038Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-07-17T08:11:10.7641146Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-07-17T08:11:10.7644836Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-07-17T08:11:10.7648182Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-07-17T08:11:10.7652068Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-07-17T08:11:10.7655917Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7658805Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-07-17T08:11:10.7662316Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-07-17T08:11:10.7665392Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-07-17T08:11:10.7668689Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-07-17T08:11:10.7671753Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-07-17T08:11:10.7675028Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-07-17T08:11:10.7678695Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-07-17T08:11:10.7682178Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-07-17T08:11:10.7685437Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-07-17T08:11:10.7688530Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-07-17T08:11:10.7691886Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-07-17T08:11:10.7694885Z adding 'torch/include/ATen/ops/smm.h' 2025-07-17T08:11:10.7698026Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7700843Z adding 'torch/include/ATen/ops/smm_native.h' 2025-07-17T08:11:10.7704054Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-07-17T08:11:10.7707150Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-07-17T08:11:10.7710473Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-07-17T08:11:10.7713852Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7716948Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-07-17T08:11:10.7720049Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-07-17T08:11:10.7723024Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-07-17T08:11:10.7726382Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-07-17T08:11:10.7729617Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7732823Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-07-17T08:11:10.7735954Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-07-17T08:11:10.7739111Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-07-17T08:11:10.7743135Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-07-17T08:11:10.7745321Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-07-17T08:11:10.7748887Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-07-17T08:11:10.7751828Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-07-17T08:11:10.7755125Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-07-17T08:11:10.7758440Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7761501Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-07-17T08:11:10.7764641Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-07-17T08:11:10.7768256Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7771956Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-07-17T08:11:10.7774349Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-07-17T08:11:10.7777602Z adding 'torch/include/ATen/ops/softmax.h' 2025-07-17T08:11:10.7780866Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7784099Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7787000Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-07-17T08:11:10.7790446Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-07-17T08:11:10.7794612Z adding 'torch/include/ATen/ops/softplus.h' 2025-07-17T08:11:10.7796865Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-07-17T08:11:10.7800745Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7803217Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-07-17T08:11:10.7806426Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-07-17T08:11:10.7809422Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-07-17T08:11:10.7812763Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-07-17T08:11:10.7815727Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-07-17T08:11:10.7819051Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-07-17T08:11:10.7823300Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7825400Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-07-17T08:11:10.7829179Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-07-17T08:11:10.7831605Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-07-17T08:11:10.7834934Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-07-17T08:11:10.7837774Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-07-17T08:11:10.7841121Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-07-17T08:11:10.7844184Z adding 'torch/include/ATen/ops/softshrink.h' 2025-07-17T08:11:10.7847450Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-07-17T08:11:10.7851420Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7853909Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-07-17T08:11:10.7857831Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-07-17T08:11:10.7860097Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-07-17T08:11:10.7863625Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-07-17T08:11:10.7866302Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-07-17T08:11:10.7869538Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-07-17T08:11:10.7872825Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7875862Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-07-17T08:11:10.7878901Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-07-17T08:11:10.7882035Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-07-17T08:11:10.7885147Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-07-17T08:11:10.7888246Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-07-17T08:11:10.7892348Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-07-17T08:11:10.7895005Z adding 'torch/include/ATen/ops/sort.h' 2025-07-17T08:11:10.7898456Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7901605Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.7904857Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7907871Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-07-17T08:11:10.7911125Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-07-17T08:11:10.7914661Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-07-17T08:11:10.7917325Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-07-17T08:11:10.7921005Z adding 'torch/include/ATen/ops/sort_native.h' 2025-07-17T08:11:10.7924107Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-07-17T08:11:10.7927707Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-07-17T08:11:10.7931204Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7934297Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-07-17T08:11:10.7938295Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-07-17T08:11:10.7940976Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-07-17T08:11:10.7944521Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7947370Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-07-17T08:11:10.7959309Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-07-17T08:11:10.7959490Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-07-17T08:11:10.7959806Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7962253Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-07-17T08:11:10.7965731Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-07-17T08:11:10.7969154Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-07-17T08:11:10.7972894Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.7977449Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7979276Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-07-17T08:11:10.7983506Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-07-17T08:11:10.7986200Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-07-17T08:11:10.7989550Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.7994356Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-07-17T08:11:10.7996665Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-07-17T08:11:10.7999964Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-07-17T08:11:10.8003355Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8006240Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-07-17T08:11:10.8010656Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-07-17T08:11:10.8012825Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-07-17T08:11:10.8015997Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8018808Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-07-17T08:11:10.8021867Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-07-17T08:11:10.8024917Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-07-17T08:11:10.8028099Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8030978Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-07-17T08:11:10.8034059Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-07-17T08:11:10.8037147Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-07-17T08:11:10.8041640Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-07-17T08:11:10.8043778Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8046759Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-07-17T08:11:10.8049763Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-07-17T08:11:10.8053096Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-07-17T08:11:10.8056346Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8059290Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-07-17T08:11:10.8062194Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-07-17T08:11:10.8065482Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-07-17T08:11:10.8068633Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-07-17T08:11:10.8071694Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-07-17T08:11:10.8074885Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-07-17T08:11:10.8077927Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-07-17T08:11:10.8081250Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8084119Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-07-17T08:11:10.8087098Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-07-17T08:11:10.8090074Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-07-17T08:11:10.8093187Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-07-17T08:11:10.8096109Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-07-17T08:11:10.8099403Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-07-17T08:11:10.8102797Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-07-17T08:11:10.8105823Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8108677Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-07-17T08:11:10.8111669Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-07-17T08:11:10.8114773Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-07-17T08:11:10.8117830Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-07-17T08:11:10.8120769Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-07-17T08:11:10.8123923Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-07-17T08:11:10.8126927Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-07-17T08:11:10.8130247Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8133160Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-07-17T08:11:10.8136187Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-07-17T08:11:10.8139144Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-07-17T08:11:10.8142237Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-07-17T08:11:10.8145158Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-07-17T08:11:10.8148247Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-07-17T08:11:10.8151273Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-07-17T08:11:10.8154518Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8157415Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-07-17T08:11:10.8160433Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-07-17T08:11:10.8163305Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-07-17T08:11:10.8166366Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-07-17T08:11:10.8169276Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-07-17T08:11:10.8172531Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-07-17T08:11:10.8175582Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-07-17T08:11:10.8178840Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8181720Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-07-17T08:11:10.8184729Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-07-17T08:11:10.8187638Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-07-17T08:11:10.8190670Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-07-17T08:11:10.8193634Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-07-17T08:11:10.8196743Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-07-17T08:11:10.8199995Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-07-17T08:11:10.8203284Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8206495Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8209405Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-17T08:11:10.8212573Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-17T08:11:10.8215465Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-07-17T08:11:10.8218576Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-17T08:11:10.8221563Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-07-17T08:11:10.8224887Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-07-17T08:11:10.8228180Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-07-17T08:11:10.8231600Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8234756Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8237652Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-17T08:11:10.8240721Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-17T08:11:10.8243631Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-07-17T08:11:10.8246880Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-17T08:11:10.8249893Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-07-17T08:11:10.8253379Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-07-17T08:11:10.8256656Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-07-17T08:11:10.8260124Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8263292Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8266164Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-17T08:11:10.8269186Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-17T08:11:10.8272107Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-07-17T08:11:10.8275155Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-17T08:11:10.8278122Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-07-17T08:11:10.8281470Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-07-17T08:11:10.8284792Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-07-17T08:11:10.8288101Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8291344Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8294238Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-17T08:11:10.8297228Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-17T08:11:10.8300148Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-07-17T08:11:10.8303192Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-17T08:11:10.8306176Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-07-17T08:11:10.8309549Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-07-17T08:11:10.8312614Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-07-17T08:11:10.8315847Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8318677Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-07-17T08:11:10.8321770Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-07-17T08:11:10.8324773Z adding 'torch/include/ATen/ops/special_entr.h' 2025-07-17T08:11:10.8328100Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8331035Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-07-17T08:11:10.8334150Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-07-17T08:11:10.8337004Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-07-17T08:11:10.8340053Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-07-17T08:11:10.8342979Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-07-17T08:11:10.8346096Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-07-17T08:11:10.8349130Z adding 'torch/include/ATen/ops/special_erf.h' 2025-07-17T08:11:10.8352341Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8355140Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-07-17T08:11:10.8358247Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-07-17T08:11:10.8361442Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-07-17T08:11:10.8364638Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8367626Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-07-17T08:11:10.8372088Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-07-17T08:11:10.8374811Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-07-17T08:11:10.8378323Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8381131Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-07-17T08:11:10.8384598Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-07-17T08:11:10.8387565Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-07-17T08:11:10.8390814Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-07-17T08:11:10.8393722Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-07-17T08:11:10.8396983Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-07-17T08:11:10.8400963Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-07-17T08:11:10.8403410Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8406711Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-07-17T08:11:10.8409468Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-07-17T08:11:10.8412809Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-07-17T08:11:10.8416007Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8419021Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-07-17T08:11:10.8422136Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-07-17T08:11:10.8425355Z adding 'torch/include/ATen/ops/special_expit.h' 2025-07-17T08:11:10.8429529Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8431535Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-07-17T08:11:10.8435360Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-07-17T08:11:10.8437847Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-07-17T08:11:10.8441325Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8444028Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-07-17T08:11:10.8447242Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-07-17T08:11:10.8450356Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-07-17T08:11:10.8481655Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8481832Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-07-17T08:11:10.8481973Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-07-17T08:11:10.8482097Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-07-17T08:11:10.8482371Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8482529Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-07-17T08:11:10.8482755Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-07-17T08:11:10.8482924Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-07-17T08:11:10.8483192Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8484526Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-07-17T08:11:10.8487735Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-07-17T08:11:10.8491132Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-07-17T08:11:10.8494694Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8497858Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8500980Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-07-17T08:11:10.8504030Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-07-17T08:11:10.8507175Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-07-17T08:11:10.8510247Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-07-17T08:11:10.8513232Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-07-17T08:11:10.8516779Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-07-17T08:11:10.8520091Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-07-17T08:11:10.8523420Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8526569Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8529679Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-07-17T08:11:10.8533021Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-07-17T08:11:10.8535965Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-07-17T08:11:10.8539077Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-07-17T08:11:10.8542077Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-07-17T08:11:10.8545433Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-07-17T08:11:10.8548492Z adding 'torch/include/ATen/ops/special_i0.h' 2025-07-17T08:11:10.8551677Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8554506Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-07-17T08:11:10.8557608Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-07-17T08:11:10.8560610Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-07-17T08:11:10.8564154Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8568388Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-07-17T08:11:10.8572290Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-07-17T08:11:10.8575862Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-07-17T08:11:10.8578938Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-07-17T08:11:10.8581769Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-07-17T08:11:10.8584848Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-07-17T08:11:10.8587865Z adding 'torch/include/ATen/ops/special_i1.h' 2025-07-17T08:11:10.8591111Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8594015Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-07-17T08:11:10.8597047Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-07-17T08:11:10.8599983Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-07-17T08:11:10.8603677Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-07-17T08:11:10.8606057Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-07-17T08:11:10.8609208Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-07-17T08:11:10.8612270Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-07-17T08:11:10.8615591Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8618466Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-07-17T08:11:10.8621550Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-07-17T08:11:10.8624453Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-07-17T08:11:10.8627468Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-07-17T08:11:10.8630352Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-07-17T08:11:10.8633534Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-07-17T08:11:10.8636779Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-07-17T08:11:10.8640082Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8643303Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8646163Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-07-17T08:11:10.8649192Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-07-17T08:11:10.8652238Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-07-17T08:11:10.8655320Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-07-17T08:11:10.8658321Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-07-17T08:11:10.8661624Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-07-17T08:11:10.8664947Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-07-17T08:11:10.8668304Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.8671446Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8674340Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-07-17T08:11:10.8677397Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-07-17T08:11:10.8680298Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-07-17T08:11:10.8683352Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-07-17T08:11:10.8686543Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-07-17T08:11:10.8689929Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-07-17T08:11:10.8693099Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-07-17T08:11:10.8696325Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8699118Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-07-17T08:11:10.8709328Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-07-17T08:11:10.8712644Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-07-17T08:11:10.8716077Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8719104Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-07-17T08:11:10.8722496Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-07-17T08:11:10.8725204Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-07-17T08:11:10.8728307Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-07-17T08:11:10.8731393Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-07-17T08:11:10.8734550Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-07-17T08:11:10.8737608Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-07-17T08:11:10.8740892Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8743846Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-07-17T08:11:10.8746927Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-07-17T08:11:10.8749988Z adding 'torch/include/ATen/ops/special_logit.h' 2025-07-17T08:11:10.8753237Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8756105Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-07-17T08:11:10.8759286Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-07-17T08:11:10.8762639Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-07-17T08:11:10.8765906Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8768782Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-07-17T08:11:10.8772098Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-07-17T08:11:10.8775295Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-07-17T08:11:10.8778647Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8781597Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-07-17T08:11:10.8784681Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-07-17T08:11:10.8787590Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-07-17T08:11:10.8790663Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-07-17T08:11:10.8793600Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-07-17T08:11:10.8797026Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-07-17T08:11:10.8800174Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-07-17T08:11:10.8803540Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8806415Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-07-17T08:11:10.8809453Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-07-17T08:11:10.8812511Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-07-17T08:11:10.8815599Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-07-17T08:11:10.8818538Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-07-17T08:11:10.8821744Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-07-17T08:11:10.8824848Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-07-17T08:11:10.8828176Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8831104Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-07-17T08:11:10.8834140Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-07-17T08:11:10.8837081Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-07-17T08:11:10.8840174Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-07-17T08:11:10.8843160Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-07-17T08:11:10.8846275Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-07-17T08:11:10.8849366Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-07-17T08:11:10.8852814Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8855739Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-07-17T08:11:10.8858793Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-07-17T08:11:10.8861994Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-07-17T08:11:10.8864975Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-07-17T08:11:10.8868097Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-07-17T08:11:10.8871333Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-07-17T08:11:10.8874578Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-07-17T08:11:10.8877770Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8880784Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-07-17T08:11:10.8884844Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-07-17T08:11:10.8887163Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-07-17T08:11:10.8890787Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8893496Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-07-17T08:11:10.8896781Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-07-17T08:11:10.8899874Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-07-17T08:11:10.8903384Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.8906258Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-07-17T08:11:10.8909525Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-07-17T08:11:10.8913545Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-07-17T08:11:10.8915772Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-07-17T08:11:10.8919259Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-07-17T08:11:10.8921964Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-07-17T08:11:10.8925190Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-07-17T08:11:10.8928430Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8931539Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-07-17T08:11:10.8934651Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-07-17T08:11:10.8937882Z adding 'torch/include/ATen/ops/special_psi.h' 2025-07-17T08:11:10.8942120Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8944271Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-07-17T08:11:10.8947899Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-07-17T08:11:10.8950690Z adding 'torch/include/ATen/ops/special_round.h' 2025-07-17T08:11:10.8957292Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.8957435Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-07-17T08:11:10.8960593Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-07-17T08:11:10.9001045Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-07-17T08:11:10.9001489Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9001753Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-07-17T08:11:10.9002007Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-07-17T08:11:10.9002220Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-07-17T08:11:10.9002862Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-07-17T08:11:10.9003084Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-07-17T08:11:10.9003292Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-07-17T08:11:10.9003495Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-07-17T08:11:10.9003910Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9004152Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-07-17T08:11:10.9004403Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-07-17T08:11:10.9006954Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-07-17T08:11:10.9008886Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-07-17T08:11:10.9013461Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-07-17T08:11:10.9015527Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-07-17T08:11:10.9018635Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-07-17T08:11:10.9022217Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9025595Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9028557Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-17T08:11:10.9031714Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-17T08:11:10.9034699Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-07-17T08:11:10.9037996Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-17T08:11:10.9041036Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-07-17T08:11:10.9044450Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-07-17T08:11:10.9047825Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-07-17T08:11:10.9051469Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9054778Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9057730Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-17T08:11:10.9060788Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-17T08:11:10.9063769Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-07-17T08:11:10.9066878Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-17T08:11:10.9069935Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-07-17T08:11:10.9073368Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-07-17T08:11:10.9076733Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-07-17T08:11:10.9080150Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9083460Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9086412Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-17T08:11:10.9089487Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-17T08:11:10.9092574Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-07-17T08:11:10.9095776Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-17T08:11:10.9098815Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-07-17T08:11:10.9102203Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-07-17T08:11:10.9105553Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-07-17T08:11:10.9109755Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9113043Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9115961Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-17T08:11:10.9119177Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-17T08:11:10.9122174Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-07-17T08:11:10.9125201Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-17T08:11:10.9128285Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-07-17T08:11:10.9131843Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-07-17T08:11:10.9134951Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-07-17T08:11:10.9138201Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9141283Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-07-17T08:11:10.9144405Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-07-17T08:11:10.9147475Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-07-17T08:11:10.9150688Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9153520Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-07-17T08:11:10.9156681Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-07-17T08:11:10.9159803Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-07-17T08:11:10.9163145Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9166069Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-07-17T08:11:10.9169140Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-07-17T08:11:10.9172200Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-07-17T08:11:10.9175398Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-07-17T08:11:10.9178349Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-07-17T08:11:10.9181447Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-07-17T08:11:10.9184646Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-07-17T08:11:10.9188001Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9191442Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9194440Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-07-17T08:11:10.9197531Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-07-17T08:11:10.9200491Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-07-17T08:11:10.9203534Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-07-17T08:11:10.9206500Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-07-17T08:11:10.9209858Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-07-17T08:11:10.9213264Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-07-17T08:11:10.9216620Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9219588Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-07-17T08:11:10.9222981Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-07-17T08:11:10.9226256Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-07-17T08:11:10.9229561Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9232755Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9235640Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-07-17T08:11:10.9238699Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-07-17T08:11:10.9241841Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-07-17T08:11:10.9244945Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-07-17T08:11:10.9247945Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-07-17T08:11:10.9251946Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-07-17T08:11:10.9254723Z adding 'torch/include/ATen/ops/split.h' 2025-07-17T08:11:10.9258020Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9261048Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9264229Z adding 'torch/include/ATen/ops/split_copy.h' 2025-07-17T08:11:10.9267783Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9271007Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9273816Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-07-17T08:11:10.9277007Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-07-17T08:11:10.9279990Z adding 'torch/include/ATen/ops/split_native.h' 2025-07-17T08:11:10.9283130Z adding 'torch/include/ATen/ops/split_ops.h' 2025-07-17T08:11:10.9286317Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-07-17T08:11:10.9289651Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9293032Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-07-17T08:11:10.9296388Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9299570Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9302488Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-07-17T08:11:10.9305496Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-07-17T08:11:10.9308703Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-07-17T08:11:10.9311719Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-07-17T08:11:10.9314884Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-07-17T08:11:10.9317907Z adding 'torch/include/ATen/ops/sqrt.h' 2025-07-17T08:11:10.9321182Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9324090Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-07-17T08:11:10.9327180Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-07-17T08:11:10.9330144Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-07-17T08:11:10.9333313Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-07-17T08:11:10.9336381Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-07-17T08:11:10.9339576Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-07-17T08:11:10.9342843Z adding 'torch/include/ATen/ops/square.h' 2025-07-17T08:11:10.9346107Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9348951Z adding 'torch/include/ATen/ops/square_native.h' 2025-07-17T08:11:10.9352125Z adding 'torch/include/ATen/ops/square_ops.h' 2025-07-17T08:11:10.9355227Z adding 'torch/include/ATen/ops/squeeze.h' 2025-07-17T08:11:10.9358470Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9361565Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9364654Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-07-17T08:11:10.9367930Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9371206Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9374101Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-07-17T08:11:10.9377513Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-07-17T08:11:10.9380648Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-07-17T08:11:10.9384232Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-07-17T08:11:10.9387466Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-07-17T08:11:10.9390706Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9393694Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-07-17T08:11:10.9396850Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-07-17T08:11:10.9399834Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-07-17T08:11:10.9403008Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-07-17T08:11:10.9406116Z adding 'torch/include/ATen/ops/stack.h' 2025-07-17T08:11:10.9409393Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9412692Z adding 'torch/include/ATen/ops/stack_native.h' 2025-07-17T08:11:10.9415871Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-07-17T08:11:10.9419294Z adding 'torch/include/ATen/ops/std.h' 2025-07-17T08:11:10.9422734Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9425866Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-07-17T08:11:10.9428974Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-07-17T08:11:10.9432277Z adding 'torch/include/ATen/ops/std_mean.h' 2025-07-17T08:11:10.9435600Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9438676Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9441818Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-07-17T08:11:10.9444880Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-07-17T08:11:10.9447931Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-07-17T08:11:10.9451570Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-07-17T08:11:10.9454856Z adding 'torch/include/ATen/ops/std_native.h' 2025-07-17T08:11:10.9458490Z adding 'torch/include/ATen/ops/std_ops.h' 2025-07-17T08:11:10.9461891Z adding 'torch/include/ATen/ops/stft.h' 2025-07-17T08:11:10.9465292Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9468258Z adding 'torch/include/ATen/ops/stft_native.h' 2025-07-17T08:11:10.9471578Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-07-17T08:11:10.9474918Z adding 'torch/include/ATen/ops/stride.h' 2025-07-17T08:11:10.9478165Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9481023Z adding 'torch/include/ATen/ops/stride_native.h' 2025-07-17T08:11:10.9484213Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-07-17T08:11:10.9487380Z adding 'torch/include/ATen/ops/sub.h' 2025-07-17T08:11:10.9490733Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9493894Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9496831Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-07-17T08:11:10.9499919Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-07-17T08:11:10.9502901Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-07-17T08:11:10.9505997Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-07-17T08:11:10.9509036Z adding 'torch/include/ATen/ops/sub_native.h' 2025-07-17T08:11:10.9512426Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-07-17T08:11:10.9515604Z adding 'torch/include/ATen/ops/subtract.h' 2025-07-17T08:11:10.9518926Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9521808Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-07-17T08:11:10.9525161Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-07-17T08:11:10.9528532Z adding 'torch/include/ATen/ops/sum.h' 2025-07-17T08:11:10.9531991Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9535072Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9538092Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9541143Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-07-17T08:11:10.9544398Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-07-17T08:11:10.9547402Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-07-17T08:11:10.9550513Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-07-17T08:11:10.9553746Z adding 'torch/include/ATen/ops/sum_native.h' 2025-07-17T08:11:10.9557193Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-07-17T08:11:10.9560329Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-07-17T08:11:10.9563551Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9567223Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-07-17T08:11:10.9570521Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-07-17T08:11:10.9573702Z adding 'torch/include/ATen/ops/svd.h' 2025-07-17T08:11:10.9576958Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9579846Z adding 'torch/include/ATen/ops/svd_native.h' 2025-07-17T08:11:10.9583069Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-07-17T08:11:10.9586155Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-07-17T08:11:10.9589366Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9592284Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-07-17T08:11:10.9595408Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-07-17T08:11:10.9598443Z adding 'torch/include/ATen/ops/swapdims.h' 2025-07-17T08:11:10.9601636Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9604449Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-07-17T08:11:10.9607586Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-07-17T08:11:10.9610760Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-07-17T08:11:10.9614100Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9617098Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-07-17T08:11:10.9620359Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9623223Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-07-17T08:11:10.9626334Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-07-17T08:11:10.9629274Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-07-17T08:11:10.9632352Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-07-17T08:11:10.9635314Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-07-17T08:11:10.9638535Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9641482Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-07-17T08:11:10.9644602Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-07-17T08:11:10.9647621Z adding 'torch/include/ATen/ops/sym_size.h' 2025-07-17T08:11:10.9650934Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9653772Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-07-17T08:11:10.9656861Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-07-17T08:11:10.9659861Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-07-17T08:11:10.9663095Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9665991Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-07-17T08:11:10.9668994Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-07-17T08:11:10.9671983Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-07-17T08:11:10.9675184Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9677993Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-07-17T08:11:10.9681078Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-07-17T08:11:10.9684033Z adding 'torch/include/ATen/ops/t.h' 2025-07-17T08:11:10.9687229Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9690241Z adding 'torch/include/ATen/ops/t_copy.h' 2025-07-17T08:11:10.9693491Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9696671Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9699476Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-07-17T08:11:10.9702577Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-07-17T08:11:10.9705506Z adding 'torch/include/ATen/ops/t_native.h' 2025-07-17T08:11:10.9708623Z adding 'torch/include/ATen/ops/t_ops.h' 2025-07-17T08:11:10.9711677Z adding 'torch/include/ATen/ops/take.h' 2025-07-17T08:11:10.9714790Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-07-17T08:11:10.9718035Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9721169Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-07-17T08:11:10.9724684Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-07-17T08:11:10.9727827Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-07-17T08:11:10.9731015Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-07-17T08:11:10.9733961Z adding 'torch/include/ATen/ops/take_native.h' 2025-07-17T08:11:10.9737150Z adding 'torch/include/ATen/ops/take_ops.h' 2025-07-17T08:11:10.9740228Z adding 'torch/include/ATen/ops/tan.h' 2025-07-17T08:11:10.9743447Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9746318Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-07-17T08:11:10.9749388Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-07-17T08:11:10.9752323Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-07-17T08:11:10.9755363Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-07-17T08:11:10.9758392Z adding 'torch/include/ATen/ops/tan_native.h' 2025-07-17T08:11:10.9761549Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-07-17T08:11:10.9764651Z adding 'torch/include/ATen/ops/tanh.h' 2025-07-17T08:11:10.9767747Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-07-17T08:11:10.9771294Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9774231Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-07-17T08:11:10.9777516Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-07-17T08:11:10.9780510Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-07-17T08:11:10.9783817Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-07-17T08:11:10.9786805Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-07-17T08:11:10.9790100Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-07-17T08:11:10.9793471Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9796408Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-07-17T08:11:10.9799578Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-07-17T08:11:10.9802598Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-07-17T08:11:10.9805842Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-07-17T08:11:10.9809280Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-07-17T08:11:10.9812755Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-07-17T08:11:10.9816054Z adding 'torch/include/ATen/ops/tensor.h' 2025-07-17T08:11:10.9819451Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-07-17T08:11:10.9822938Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9825896Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-07-17T08:11:10.9829310Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-07-17T08:11:10.9839319Z adding 'torch/include/ATen/ops/tensordot.h' 2025-07-17T08:11:10.9842840Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9845842Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-07-17T08:11:10.9849115Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-07-17T08:11:10.9852958Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-07-17T08:11:10.9856632Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9859698Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-07-17T08:11:10.9863085Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-07-17T08:11:10.9866224Z adding 'torch/include/ATen/ops/threshold.h' 2025-07-17T08:11:10.9869584Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-07-17T08:11:10.9873034Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9876028Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-07-17T08:11:10.9879235Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-07-17T08:11:10.9882287Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-07-17T08:11:10.9885573Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-07-17T08:11:10.9888663Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-07-17T08:11:10.9892165Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-07-17T08:11:10.9895537Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:10.9898646Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-07-17T08:11:10.9901768Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-07-17T08:11:10.9904921Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-07-17T08:11:10.9908153Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-07-17T08:11:10.9911209Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-07-17T08:11:10.9914600Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-07-17T08:11:10.9917782Z adding 'torch/include/ATen/ops/tile.h' 2025-07-17T08:11:10.9921170Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9923999Z adding 'torch/include/ATen/ops/tile_native.h' 2025-07-17T08:11:10.9927213Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-07-17T08:11:10.9930408Z adding 'torch/include/ATen/ops/to.h' 2025-07-17T08:11:10.9933845Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9936939Z adding 'torch/include/ATen/ops/to_dense.h' 2025-07-17T08:11:10.9940032Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-07-17T08:11:10.9943465Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9946360Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-07-17T08:11:10.9949626Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-07-17T08:11:10.9952830Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9955844Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-07-17T08:11:10.9958909Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-07-17T08:11:10.9962513Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-07-17T08:11:10.9966129Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-07-17T08:11:10.9969759Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:10.9973140Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-07-17T08:11:10.9976287Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-07-17T08:11:10.9979618Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:10.9982624Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-07-17T08:11:10.9985753Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-07-17T08:11:10.9989322Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-07-17T08:11:10.9992685Z adding 'torch/include/ATen/ops/to_native.h' 2025-07-17T08:11:10.9996194Z adding 'torch/include/ATen/ops/to_ops.h' 2025-07-17T08:11:10.9999902Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-07-17T08:11:11.0003279Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0006198Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-07-17T08:11:11.0009602Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-07-17T08:11:11.0012722Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-07-17T08:11:11.0015635Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-07-17T08:11:11.0018822Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0033279Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-07-17T08:11:11.0033508Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-07-17T08:11:11.0033635Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-07-17T08:11:11.0033901Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0034098Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-07-17T08:11:11.0037318Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-07-17T08:11:11.0040534Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0043365Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-07-17T08:11:11.0046597Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0049531Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-07-17T08:11:11.0052748Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-07-17T08:11:11.0055838Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-07-17T08:11:11.0059101Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0061958Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-07-17T08:11:11.0065030Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-07-17T08:11:11.0068022Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-07-17T08:11:11.0071250Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-07-17T08:11:11.0074643Z adding 'torch/include/ATen/ops/topk.h' 2025-07-17T08:11:11.0078031Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0081028Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-07-17T08:11:11.0084150Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-07-17T08:11:11.0087106Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-07-17T08:11:11.0090350Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-07-17T08:11:11.0093442Z adding 'torch/include/ATen/ops/topk_native.h' 2025-07-17T08:11:11.0096699Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-07-17T08:11:11.0099738Z adding 'torch/include/ATen/ops/trace.h' 2025-07-17T08:11:11.0102870Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-07-17T08:11:11.0106105Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0108976Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-07-17T08:11:11.0112193Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-07-17T08:11:11.0115391Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0118525Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-07-17T08:11:11.0121560Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-07-17T08:11:11.0124613Z adding 'torch/include/ATen/ops/trace_native.h' 2025-07-17T08:11:11.0127742Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-07-17T08:11:11.0131127Z adding 'torch/include/ATen/ops/transpose.h' 2025-07-17T08:11:11.0134488Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0137560Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0140680Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-07-17T08:11:11.0143959Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0147334Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0150161Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-07-17T08:11:11.0153508Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-07-17T08:11:11.0156604Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-07-17T08:11:11.0160037Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-07-17T08:11:11.0163267Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-07-17T08:11:11.0166569Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0170676Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-07-17T08:11:11.0172918Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-07-17T08:11:11.0176079Z adding 'torch/include/ATen/ops/trapz.h' 2025-07-17T08:11:11.0179315Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0182336Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-07-17T08:11:11.0185495Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-07-17T08:11:11.0188880Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-07-17T08:11:11.0192369Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0195395Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-07-17T08:11:11.0198669Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-07-17T08:11:11.0201638Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-07-17T08:11:11.0204931Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-07-17T08:11:11.0208003Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-07-17T08:11:11.0211542Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-07-17T08:11:11.0214704Z adding 'torch/include/ATen/ops/tril.h' 2025-07-17T08:11:11.0218051Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0221107Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-07-17T08:11:11.0224197Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-07-17T08:11:11.0227512Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-07-17T08:11:11.0230783Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0233927Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-07-17T08:11:11.0237121Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-07-17T08:11:11.0240164Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-07-17T08:11:11.0243483Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-07-17T08:11:11.0246500Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-07-17T08:11:11.0249708Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-07-17T08:11:11.0252847Z adding 'torch/include/ATen/ops/tril_native.h' 2025-07-17T08:11:11.0256219Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-07-17T08:11:11.0259332Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-07-17T08:11:11.0262784Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0265843Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-07-17T08:11:11.0268936Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-07-17T08:11:11.0272093Z adding 'torch/include/ATen/ops/triu.h' 2025-07-17T08:11:11.0275409Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0278429Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-07-17T08:11:11.0281498Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-07-17T08:11:11.0284847Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-07-17T08:11:11.0288139Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0291440Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-07-17T08:11:11.0294623Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-07-17T08:11:11.0297938Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-07-17T08:11:11.0301286Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-07-17T08:11:11.0304361Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-07-17T08:11:11.0307508Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-07-17T08:11:11.0310514Z adding 'torch/include/ATen/ops/triu_native.h' 2025-07-17T08:11:11.0313901Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-07-17T08:11:11.0317141Z adding 'torch/include/ATen/ops/true_divide.h' 2025-07-17T08:11:11.0320765Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0323526Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-07-17T08:11:11.0326831Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-07-17T08:11:11.0330203Z adding 'torch/include/ATen/ops/trunc.h' 2025-07-17T08:11:11.0333540Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0336657Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-07-17T08:11:11.0339811Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-07-17T08:11:11.0342873Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-07-17T08:11:11.0346086Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-07-17T08:11:11.0349095Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-07-17T08:11:11.0352429Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-07-17T08:11:11.0355466Z adding 'torch/include/ATen/ops/type_as.h' 2025-07-17T08:11:11.0358800Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0361640Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-07-17T08:11:11.0364903Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-07-17T08:11:11.0367974Z adding 'torch/include/ATen/ops/unbind.h' 2025-07-17T08:11:11.0371429Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0374578Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0377597Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-07-17T08:11:11.0380943Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0384108Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0387018Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-07-17T08:11:11.0390503Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-07-17T08:11:11.0393788Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-07-17T08:11:11.0397208Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-07-17T08:11:11.0400504Z adding 'torch/include/ATen/ops/unflatten.h' 2025-07-17T08:11:11.0403942Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0406895Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-07-17T08:11:11.0410393Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0413315Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-07-17T08:11:11.0416630Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-07-17T08:11:11.0419664Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-07-17T08:11:11.0422969Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-07-17T08:11:11.0426026Z adding 'torch/include/ATen/ops/unfold.h' 2025-07-17T08:11:11.0429426Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-07-17T08:11:11.0432955Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0436036Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0439264Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0442305Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-07-17T08:11:11.0445734Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-07-17T08:11:11.0448974Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-07-17T08:11:11.0452365Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0455890Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0458610Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-07-17T08:11:11.0461947Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-07-17T08:11:11.0465108Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-07-17T08:11:11.0468226Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-07-17T08:11:11.0471166Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-07-17T08:11:11.0474095Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-07-17T08:11:11.0477399Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-07-17T08:11:11.0480535Z adding 'torch/include/ATen/ops/uniform.h' 2025-07-17T08:11:11.0483792Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0486779Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-07-17T08:11:11.0489874Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-07-17T08:11:11.0493093Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-07-17T08:11:11.0496061Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-07-17T08:11:11.0499291Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-07-17T08:11:11.0502533Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-07-17T08:11:11.0505970Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0509014Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-07-17T08:11:11.0512129Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-07-17T08:11:11.0515108Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-07-17T08:11:11.0518349Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-07-17T08:11:11.0521550Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-07-17T08:11:11.0524846Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0527915Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-07-17T08:11:11.0531313Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0534294Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-07-17T08:11:11.0537368Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-07-17T08:11:11.0540350Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-07-17T08:11:11.0543575Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-07-17T08:11:11.0546651Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-07-17T08:11:11.0549671Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-07-17T08:11:11.0552613Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-07-17T08:11:11.0555851Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-07-17T08:11:11.0558934Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-07-17T08:11:11.0562308Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0565160Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-07-17T08:11:11.0568211Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-07-17T08:11:11.0572294Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-07-17T08:11:11.0575761Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0578657Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-07-17T08:11:11.0581864Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-07-17T08:11:11.0585280Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-07-17T08:11:11.0588699Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0591603Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-07-17T08:11:11.0594835Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-07-17T08:11:11.0597895Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-07-17T08:11:11.0601067Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0603971Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-07-17T08:11:11.0607215Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0610520Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0613284Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-07-17T08:11:11.0616404Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-07-17T08:11:11.0619664Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-07-17T08:11:11.0622815Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-07-17T08:11:11.0626391Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-07-17T08:11:11.0630178Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-07-17T08:11:11.0633844Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0636874Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0640137Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0643129Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-07-17T08:11:11.0646313Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-07-17T08:11:11.0649354Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-07-17T08:11:11.0652757Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-07-17T08:11:11.0656191Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0659228Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0662331Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-07-17T08:11:11.0665666Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-07-17T08:11:11.0668711Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-07-17T08:11:11.0672058Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-07-17T08:11:11.0675273Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-07-17T08:11:11.0678594Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-07-17T08:11:11.0682585Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-07-17T08:11:11.0686600Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-07-17T08:11:11.0690277Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0693564Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0696831Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0700016Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-07-17T08:11:11.0703263Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-07-17T08:11:11.0706423Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-07-17T08:11:11.0709814Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-07-17T08:11:11.0713175Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0716504Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0719563Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0722781Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-07-17T08:11:11.0726036Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-07-17T08:11:11.0729228Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-07-17T08:11:11.0732618Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-07-17T08:11:11.0735795Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-07-17T08:11:11.0739341Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-07-17T08:11:11.0743037Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-07-17T08:11:11.0747043Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-07-17T08:11:11.0750439Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0753743Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0757181Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0760471Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-07-17T08:11:11.0763715Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-07-17T08:11:11.0766896Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-07-17T08:11:11.0770281Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-07-17T08:11:11.0773775Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0776878Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0780112Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-07-17T08:11:11.0783355Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-07-17T08:11:11.0786411Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-07-17T08:11:11.0789702Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-07-17T08:11:11.0792752Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-07-17T08:11:11.0796163Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-07-17T08:11:11.0799747Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-07-17T08:11:11.0803633Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-07-17T08:11:11.0807328Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0810448Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0813890Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0816945Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-07-17T08:11:11.0820306Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-07-17T08:11:11.0823862Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-07-17T08:11:11.0827289Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-07-17T08:11:11.0831614Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0834652Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0837754Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-07-17T08:11:11.0841013Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-07-17T08:11:11.0844035Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-07-17T08:11:11.0847442Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-07-17T08:11:11.0850531Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-07-17T08:11:11.0853976Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-07-17T08:11:11.0857863Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-07-17T08:11:11.0861672Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-07-17T08:11:11.0865395Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0868562Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0871911Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0875391Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-07-17T08:11:11.0878370Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-07-17T08:11:11.0881658Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-07-17T08:11:11.0884839Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-07-17T08:11:11.0888320Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.0891731Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0895115Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0898127Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-07-17T08:11:11.0901221Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-07-17T08:11:11.0904423Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-07-17T08:11:11.0907828Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-07-17T08:11:11.0911138Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-07-17T08:11:11.0914667Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-07-17T08:11:11.0918450Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-07-17T08:11:11.0922316Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-07-17T08:11:11.0925929Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0929130Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0932650Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0935711Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-07-17T08:11:11.0939083Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-07-17T08:11:11.0942236Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-07-17T08:11:11.0945640Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-07-17T08:11:11.0949131Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0952211Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.0955449Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-07-17T08:11:11.0958656Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-07-17T08:11:11.0961838Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-07-17T08:11:11.0965060Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-07-17T08:11:11.0968745Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-07-17T08:11:11.0971962Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-07-17T08:11:11.0976200Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-07-17T08:11:11.0980506Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-07-17T08:11:11.0984257Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.0987503Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-07-17T08:11:11.0990795Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-07-17T08:11:11.0994060Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-07-17T08:11:11.0997335Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-07-17T08:11:11.1000626Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-07-17T08:11:11.1004085Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-07-17T08:11:11.1007544Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.1010740Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1014125Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-07-17T08:11:11.1017458Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-07-17T08:11:11.1020473Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-07-17T08:11:11.1023678Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-07-17T08:11:11.1026757Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-07-17T08:11:11.1030102Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-07-17T08:11:11.1033573Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-07-17T08:11:11.1037028Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1039953Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-07-17T08:11:11.1043052Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-07-17T08:11:11.1045995Z adding 'torch/include/ATen/ops/values.h' 2025-07-17T08:11:11.1049171Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1052202Z adding 'torch/include/ATen/ops/values_copy.h' 2025-07-17T08:11:11.1055415Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1058694Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.1061489Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-07-17T08:11:11.1064707Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-07-17T08:11:11.1067932Z adding 'torch/include/ATen/ops/values_native.h' 2025-07-17T08:11:11.1071043Z adding 'torch/include/ATen/ops/values_ops.h' 2025-07-17T08:11:11.1074083Z adding 'torch/include/ATen/ops/vander.h' 2025-07-17T08:11:11.1077329Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1080289Z adding 'torch/include/ATen/ops/vander_native.h' 2025-07-17T08:11:11.1083410Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-07-17T08:11:11.1086694Z adding 'torch/include/ATen/ops/var.h' 2025-07-17T08:11:11.1090179Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1093284Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-07-17T08:11:11.1096472Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-07-17T08:11:11.1099736Z adding 'torch/include/ATen/ops/var_mean.h' 2025-07-17T08:11:11.1103019Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1106187Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1110494Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-07-17T08:11:11.1113755Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-07-17T08:11:11.1116861Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-07-17T08:11:11.1120727Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-07-17T08:11:11.1124057Z adding 'torch/include/ATen/ops/var_native.h' 2025-07-17T08:11:11.1127714Z adding 'torch/include/ATen/ops/var_ops.h' 2025-07-17T08:11:11.1131042Z adding 'torch/include/ATen/ops/vdot.h' 2025-07-17T08:11:11.1134331Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1137296Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-07-17T08:11:11.1140328Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-07-17T08:11:11.1143304Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-07-17T08:11:11.1146427Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-07-17T08:11:11.1149571Z adding 'torch/include/ATen/ops/view.h' 2025-07-17T08:11:11.1152435Z adding 'torch/include/ATen/ops/view_as.h' 2025-07-17T08:11:11.1155401Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-07-17T08:11:11.1158453Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-07-17T08:11:11.1161725Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1165086Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.1167804Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-07-17T08:11:11.1170946Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-07-17T08:11:11.1174045Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-07-17T08:11:11.1177053Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-07-17T08:11:11.1180044Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-07-17T08:11:11.1182961Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-07-17T08:11:11.1186014Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-07-17T08:11:11.1189204Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1192016Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-07-17T08:11:11.1195100Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-07-17T08:11:11.1198101Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-07-17T08:11:11.1201121Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-07-17T08:11:11.1204344Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1207480Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.1210657Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-07-17T08:11:11.1213822Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-07-17T08:11:11.1216793Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-07-17T08:11:11.1219964Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-07-17T08:11:11.1222992Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-07-17T08:11:11.1226061Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-07-17T08:11:11.1229168Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-07-17T08:11:11.1232480Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1235794Z adding 'torch/include/ATen/ops/view_copy.h' 2025-07-17T08:11:11.1239299Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1242630Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.1245541Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-07-17T08:11:11.1248952Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-07-17T08:11:11.1252228Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-07-17T08:11:11.1255447Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-07-17T08:11:11.1258658Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-07-17T08:11:11.1261727Z adding 'torch/include/ATen/ops/view_native.h' 2025-07-17T08:11:11.1264937Z adding 'torch/include/ATen/ops/view_ops.h' 2025-07-17T08:11:11.1268046Z adding 'torch/include/ATen/ops/vsplit.h' 2025-07-17T08:11:11.1271389Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1274250Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-07-17T08:11:11.1277577Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-07-17T08:11:11.1280645Z adding 'torch/include/ATen/ops/vstack.h' 2025-07-17T08:11:11.1284047Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1286922Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-07-17T08:11:11.1290345Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-07-17T08:11:11.1293800Z adding 'torch/include/ATen/ops/where.h' 2025-07-17T08:11:11.1297042Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1300151Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-07-17T08:11:11.1303250Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-07-17T08:11:11.1306538Z adding 'torch/include/ATen/ops/where_native.h' 2025-07-17T08:11:11.1310402Z adding 'torch/include/ATen/ops/where_ops.h' 2025-07-17T08:11:11.1313439Z adding 'torch/include/ATen/ops/xlogy.h' 2025-07-17T08:11:11.1316927Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1320117Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-17T08:11:11.1323905Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-07-17T08:11:11.1327082Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-07-17T08:11:11.1330424Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-07-17T08:11:11.1333646Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-07-17T08:11:11.1336657Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-07-17T08:11:11.1340302Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-07-17T08:11:11.1343520Z adding 'torch/include/ATen/ops/xor.h' 2025-07-17T08:11:11.1346906Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-07-17T08:11:11.1349921Z adding 'torch/include/ATen/ops/xor_native.h' 2025-07-17T08:11:11.1353434Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-07-17T08:11:11.1356741Z adding 'torch/include/ATen/ops/zero.h' 2025-07-17T08:11:11.1359940Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1363152Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-07-17T08:11:11.1366233Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-07-17T08:11:11.1369410Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-07-17T08:11:11.1372588Z adding 'torch/include/ATen/ops/zero_native.h' 2025-07-17T08:11:11.1375938Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-07-17T08:11:11.1379692Z adding 'torch/include/ATen/ops/zeros.h' 2025-07-17T08:11:11.1383245Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1386585Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-07-17T08:11:11.1389992Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-07-17T08:11:11.1393374Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-17T08:11:11.1396375Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-07-17T08:11:11.1399684Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-07-17T08:11:11.1402893Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-07-17T08:11:11.1406309Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-07-17T08:11:11.1413239Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-07-17T08:11:11.1418238Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-07-17T08:11:11.1422789Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-07-17T08:11:11.1425865Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-07-17T08:11:11.1428787Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-07-17T08:11:11.1431774Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-07-17T08:11:11.1435874Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-07-17T08:11:11.1439309Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-07-17T08:11:11.1443334Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-07-17T08:11:11.1447075Z adding 'torch/include/THC/THCAtomics.cuh' 2025-07-17T08:11:11.1450038Z adding 'torch/include/THC/THCDeviceUtils.cuh' 2025-07-17T08:11:11.1454971Z adding 'torch/include/asmjit/a64.h' 2025-07-17T08:11:11.1458700Z adding 'torch/include/asmjit/arm.h' 2025-07-17T08:11:11.1461885Z adding 'torch/include/asmjit/asmjit-scope-begin.h' 2025-07-17T08:11:11.1464846Z adding 'torch/include/asmjit/asmjit-scope-end.h' 2025-07-17T08:11:11.1468653Z adding 'torch/include/asmjit/asmjit.h' 2025-07-17T08:11:11.1523804Z adding 'torch/include/asmjit/core.h' 2025-07-17T08:11:11.1530368Z adding 'torch/include/asmjit/x86.h' 2025-07-17T08:11:11.1535024Z adding 'torch/include/asmjit/arm/a64assembler.h' 2025-07-17T08:11:11.1538456Z adding 'torch/include/asmjit/arm/a64builder.h' 2025-07-17T08:11:11.1543414Z adding 'torch/include/asmjit/arm/a64compiler.h' 2025-07-17T08:11:11.1556899Z adding 'torch/include/asmjit/arm/a64emitter.h' 2025-07-17T08:11:11.1585247Z adding 'torch/include/asmjit/arm/a64globals.h' 2025-07-17T08:11:11.1591580Z adding 'torch/include/asmjit/arm/a64instdb.h' 2025-07-17T08:11:11.1599035Z adding 'torch/include/asmjit/arm/a64operand.h' 2025-07-17T08:11:11.1603056Z adding 'torch/include/asmjit/arm/armglobals.h' 2025-07-17T08:11:11.1609421Z adding 'torch/include/asmjit/arm/armoperand.h' 2025-07-17T08:11:11.1615071Z adding 'torch/include/asmjit/arm/armutils.h' 2025-07-17T08:11:11.1624392Z adding 'torch/include/asmjit/core/api-config.h' 2025-07-17T08:11:11.1630238Z adding 'torch/include/asmjit/core/archcommons.h' 2025-07-17T08:11:11.1635781Z adding 'torch/include/asmjit/core/archtraits.h' 2025-07-17T08:11:11.1639892Z adding 'torch/include/asmjit/core/assembler.h' 2025-07-17T08:11:11.1657852Z adding 'torch/include/asmjit/core/builder.h' 2025-07-17T08:11:11.1662765Z adding 'torch/include/asmjit/core/codebuffer.h' 2025-07-17T08:11:11.1679468Z adding 'torch/include/asmjit/core/codeholder.h' 2025-07-17T08:11:11.1690027Z adding 'torch/include/asmjit/core/compiler.h' 2025-07-17T08:11:11.1695211Z adding 'torch/include/asmjit/core/compilerdefs.h' 2025-07-17T08:11:11.1700133Z adding 'torch/include/asmjit/core/constpool.h' 2025-07-17T08:11:11.1716430Z adding 'torch/include/asmjit/core/cpuinfo.h' 2025-07-17T08:11:11.1731447Z adding 'torch/include/asmjit/core/emitter.h' 2025-07-17T08:11:11.1738893Z adding 'torch/include/asmjit/core/environment.h' 2025-07-17T08:11:11.1744154Z adding 'torch/include/asmjit/core/errorhandler.h' 2025-07-17T08:11:11.1748952Z adding 'torch/include/asmjit/core/formatter.h' 2025-07-17T08:11:11.1771266Z adding 'torch/include/asmjit/core/func.h' 2025-07-17T08:11:11.1779728Z adding 'torch/include/asmjit/core/globals.h' 2025-07-17T08:11:11.1791395Z adding 'torch/include/asmjit/core/inst.h' 2025-07-17T08:11:11.1801536Z adding 'torch/include/asmjit/core/jitallocator.h' 2025-07-17T08:11:11.1805994Z adding 'torch/include/asmjit/core/jitruntime.h' 2025-07-17T08:11:11.1810580Z adding 'torch/include/asmjit/core/logger.h' 2025-07-17T08:11:11.1836448Z adding 'torch/include/asmjit/core/operand.h' 2025-07-17T08:11:11.1841867Z adding 'torch/include/asmjit/core/osutils.h' 2025-07-17T08:11:11.1847564Z adding 'torch/include/asmjit/core/string.h' 2025-07-17T08:11:11.1868041Z adding 'torch/include/asmjit/core/support.h' 2025-07-17T08:11:11.1873163Z adding 'torch/include/asmjit/core/target.h' 2025-07-17T08:11:11.1879799Z adding 'torch/include/asmjit/core/type.h' 2025-07-17T08:11:11.1886544Z adding 'torch/include/asmjit/core/virtmem.h' 2025-07-17T08:11:11.1895254Z adding 'torch/include/asmjit/core/zone.h' 2025-07-17T08:11:11.1900057Z adding 'torch/include/asmjit/core/zonehash.h' 2025-07-17T08:11:11.1904267Z adding 'torch/include/asmjit/core/zonelist.h' 2025-07-17T08:11:11.1908684Z adding 'torch/include/asmjit/core/zonestack.h' 2025-07-17T08:11:11.1912593Z adding 'torch/include/asmjit/core/zonestring.h' 2025-07-17T08:11:11.1918232Z adding 'torch/include/asmjit/core/zonetree.h' 2025-07-17T08:11:11.1926330Z adding 'torch/include/asmjit/core/zonevector.h' 2025-07-17T08:11:11.1939323Z adding 'torch/include/asmjit/x86/x86assembler.h' 2025-07-17T08:11:11.1946787Z adding 'torch/include/asmjit/x86/x86builder.h' 2025-07-17T08:11:11.1956905Z adding 'torch/include/asmjit/x86/x86compiler.h' 2025-07-17T08:11:11.2022184Z adding 'torch/include/asmjit/x86/x86emitter.h' 2025-07-17T08:11:11.2061026Z adding 'torch/include/asmjit/x86/x86globals.h' 2025-07-17T08:11:11.2072994Z adding 'torch/include/asmjit/x86/x86instdb.h' 2025-07-17T08:11:11.2087979Z adding 'torch/include/asmjit/x86/x86operand.h' 2025-07-17T08:11:11.2098113Z adding 'torch/include/c10/core/Allocator.h' 2025-07-17T08:11:11.2101504Z adding 'torch/include/c10/core/AutogradState.h' 2025-07-17T08:11:11.2106239Z adding 'torch/include/c10/core/Backend.h' 2025-07-17T08:11:11.2109864Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-07-17T08:11:11.2113877Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-07-17T08:11:11.2117399Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-07-17T08:11:11.2120903Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-07-17T08:11:11.2125243Z adding 'torch/include/c10/core/Contiguity.h' 2025-07-17T08:11:11.2128778Z adding 'torch/include/c10/core/CopyBytes.h' 2025-07-17T08:11:11.2131902Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-07-17T08:11:11.2135196Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-07-17T08:11:11.2139766Z adding 'torch/include/c10/core/Device.h' 2025-07-17T08:11:11.2143116Z adding 'torch/include/c10/core/DeviceArray.h' 2025-07-17T08:11:11.2147929Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-07-17T08:11:11.2152239Z adding 'torch/include/c10/core/DeviceType.h' 2025-07-17T08:11:11.2165569Z adding 'torch/include/c10/core/DispatchKey.h' 2025-07-17T08:11:11.2182661Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-07-17T08:11:11.2187828Z adding 'torch/include/c10/core/DynamicCast.h' 2025-07-17T08:11:11.2192127Z adding 'torch/include/c10/core/Event.h' 2025-07-17T08:11:11.2196246Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-07-17T08:11:11.2199676Z adding 'torch/include/c10/core/GradMode.h' 2025-07-17T08:11:11.2203605Z adding 'torch/include/c10/core/InferenceMode.h' 2025-07-17T08:11:11.2206985Z adding 'torch/include/c10/core/Layout.h' 2025-07-17T08:11:11.2212425Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-07-17T08:11:11.2215911Z adding 'torch/include/c10/core/OptionalRef.h' 2025-07-17T08:11:11.2219717Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-07-17T08:11:11.2223127Z adding 'torch/include/c10/core/QEngine.h' 2025-07-17T08:11:11.2226417Z adding 'torch/include/c10/core/QScheme.h' 2025-07-17T08:11:11.2229975Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-07-17T08:11:11.2233937Z adding 'torch/include/c10/core/SafePyObject.h' 2025-07-17T08:11:11.2240158Z adding 'torch/include/c10/core/Scalar.h' 2025-07-17T08:11:11.2249202Z adding 'torch/include/c10/core/ScalarType.h' 2025-07-17T08:11:11.2253255Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-07-17T08:11:11.2257725Z adding 'torch/include/c10/core/Storage.h' 2025-07-17T08:11:11.2263592Z adding 'torch/include/c10/core/StorageImpl.h' 2025-07-17T08:11:11.2268850Z adding 'torch/include/c10/core/Stream.h' 2025-07-17T08:11:11.2281951Z adding 'torch/include/c10/core/StreamGuard.h' 2025-07-17T08:11:11.2283331Z adding 'torch/include/c10/core/SymBool.h' 2025-07-17T08:11:11.2283660Z adding 'torch/include/c10/core/SymFloat.h' 2025-07-17T08:11:11.2288018Z adding 'torch/include/c10/core/SymInt.h' 2025-07-17T08:11:11.2292042Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-07-17T08:11:11.2296236Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-07-17T08:11:11.2300819Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-07-17T08:11:11.2343543Z adding 'torch/include/c10/core/TensorImpl.h' 2025-07-17T08:11:11.2356265Z adding 'torch/include/c10/core/TensorOptions.h' 2025-07-17T08:11:11.2360579Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-07-17T08:11:11.2363937Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-07-17T08:11:11.2366967Z adding 'torch/include/c10/core/alignment.h' 2025-07-17T08:11:11.2370845Z adding 'torch/include/c10/core/thread_pool.h' 2025-07-17T08:11:11.2375278Z adding 'torch/include/c10/core/impl/COW.h' 2025-07-17T08:11:11.2378777Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-07-17T08:11:11.2386421Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-07-17T08:11:11.2390440Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-07-17T08:11:11.2393200Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-07-17T08:11:11.2397779Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-07-17T08:11:11.2403802Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-07-17T08:11:11.2408035Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-07-17T08:11:11.2413747Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-07-17T08:11:11.2418417Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-07-17T08:11:11.2424613Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-07-17T08:11:11.2429455Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-07-17T08:11:11.2432869Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-07-17T08:11:11.2438114Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-07-17T08:11:11.2441241Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-07-17T08:11:11.2444838Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-07-17T08:11:11.2448834Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-07-17T08:11:11.2452335Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-07-17T08:11:11.2456333Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-07-17T08:11:11.2464628Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-07-17T08:11:11.2468263Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-07-17T08:11:11.2472959Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-07-17T08:11:11.2477088Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-07-17T08:11:11.2481054Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-07-17T08:11:11.2484683Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-07-17T08:11:11.2489793Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-07-17T08:11:11.2493448Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-07-17T08:11:11.2497228Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-07-17T08:11:11.2500263Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-07-17T08:11:11.2505884Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-07-17T08:11:11.2509887Z adding 'torch/include/c10/cuda/driver_api.h' 2025-07-17T08:11:11.2516964Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-07-17T08:11:11.2519912Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-07-17T08:11:11.2522819Z adding 'torch/include/c10/cuda/impl/cuda_cmake_macros.h' 2025-07-17T08:11:11.2526479Z adding 'torch/include/c10/macros/Export.h' 2025-07-17T08:11:11.2529109Z adding 'torch/include/c10/macros/Macros.h' 2025-07-17T08:11:11.2531994Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-07-17T08:11:11.2536292Z adding 'torch/include/c10/metal/atomic.h' 2025-07-17T08:11:11.2539582Z adding 'torch/include/c10/metal/common.h' 2025-07-17T08:11:11.2543525Z adding 'torch/include/c10/metal/expm1f.h' 2025-07-17T08:11:11.2549807Z adding 'torch/include/c10/metal/indexing.h' 2025-07-17T08:11:11.2554259Z adding 'torch/include/c10/metal/random.h' 2025-07-17T08:11:11.2558612Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-07-17T08:11:11.2575224Z adding 'torch/include/c10/metal/special_math.h' 2025-07-17T08:11:11.2581460Z adding 'torch/include/c10/metal/utils.h' 2025-07-17T08:11:11.2587186Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-07-17T08:11:11.2591883Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-07-17T08:11:11.2596841Z adding 'torch/include/c10/test/util/Macros.h' 2025-07-17T08:11:11.2602698Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-07-17T08:11:11.2609712Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-07-17T08:11:11.2616632Z adding 'torch/include/c10/util/AbortHandler.h' 2025-07-17T08:11:11.2620855Z adding 'torch/include/c10/util/AlignOf.h' 2025-07-17T08:11:11.2624965Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-07-17T08:11:11.2628028Z adding 'torch/include/c10/util/Array.h' 2025-07-17T08:11:11.2633374Z adding 'torch/include/c10/util/ArrayRef.h' 2025-07-17T08:11:11.2638044Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-07-17T08:11:11.2642729Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-07-17T08:11:11.2646579Z adding 'torch/include/c10/util/BFloat16.h' 2025-07-17T08:11:11.2649843Z adding 'torch/include/c10/util/Backtrace.h' 2025-07-17T08:11:11.2653781Z adding 'torch/include/c10/util/Bitset.h' 2025-07-17T08:11:11.2657293Z adding 'torch/include/c10/util/C++17.h' 2025-07-17T08:11:11.2660645Z adding 'torch/include/c10/util/CallOnce.h' 2025-07-17T08:11:11.2665623Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-07-17T08:11:11.2669245Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-07-17T08:11:11.2672858Z adding 'torch/include/c10/util/Deprecated.h' 2025-07-17T08:11:11.2675901Z adding 'torch/include/c10/util/DimVector.h' 2025-07-17T08:11:11.2679072Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-07-17T08:11:11.2682992Z adding 'torch/include/c10/util/Enumerate.h' 2025-07-17T08:11:11.2694137Z adding 'torch/include/c10/util/Exception.h' 2025-07-17T08:11:11.2698666Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-07-17T08:11:11.2702211Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-07-17T08:11:11.2705213Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-07-17T08:11:11.2710351Z adding 'torch/include/c10/util/Flags.h' 2025-07-17T08:11:11.2713931Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-07-17T08:11:11.2717852Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-07-17T08:11:11.2722984Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-07-17T08:11:11.2727292Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-07-17T08:11:11.2731533Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-07-17T08:11:11.2735690Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-07-17T08:11:11.2740106Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-07-17T08:11:11.2744390Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-07-17T08:11:11.2748544Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-07-17T08:11:11.2752273Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-07-17T08:11:11.2756041Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-07-17T08:11:11.2760280Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-07-17T08:11:11.2763847Z adding 'torch/include/c10/util/FunctionRef.h' 2025-07-17T08:11:11.2767060Z adding 'torch/include/c10/util/Gauge.h' 2025-07-17T08:11:11.2771551Z adding 'torch/include/c10/util/Half-inl.h' 2025-07-17T08:11:11.2778648Z adding 'torch/include/c10/util/Half.h' 2025-07-17T08:11:11.2782546Z adding 'torch/include/c10/util/IdWrapper.h' 2025-07-17T08:11:11.2786352Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-07-17T08:11:11.2789936Z adding 'torch/include/c10/util/Lazy.h' 2025-07-17T08:11:11.2794588Z adding 'torch/include/c10/util/LeftRight.h' 2025-07-17T08:11:11.2797890Z adding 'torch/include/c10/util/Load.h' 2025-07-17T08:11:11.2804034Z adding 'torch/include/c10/util/Logging.h' 2025-07-17T08:11:11.2807563Z adding 'torch/include/c10/util/MathConstants.h' 2025-07-17T08:11:11.2812096Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-07-17T08:11:11.2816986Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-07-17T08:11:11.2820406Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-07-17T08:11:11.2823814Z adding 'torch/include/c10/util/Optional.h' 2025-07-17T08:11:11.2827908Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-07-17T08:11:11.2830954Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-07-17T08:11:11.2836392Z adding 'torch/include/c10/util/Registry.h' 2025-07-17T08:11:11.2840147Z adding 'torch/include/c10/util/ScopeExit.h' 2025-07-17T08:11:11.2843409Z adding 'torch/include/c10/util/Semaphore.h' 2025-07-17T08:11:11.2846862Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-07-17T08:11:11.2864726Z adding 'torch/include/c10/util/SmallVector.h' 2025-07-17T08:11:11.2870616Z adding 'torch/include/c10/util/StringUtil.h' 2025-07-17T08:11:11.2874406Z adding 'torch/include/c10/util/Synchronized.h' 2025-07-17T08:11:11.2878121Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-07-17T08:11:11.2881860Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-07-17T08:11:11.2885103Z adding 'torch/include/c10/util/Type.h' 2025-07-17T08:11:11.2889096Z adding 'torch/include/c10/util/TypeCast.h' 2025-07-17T08:11:11.2893701Z adding 'torch/include/c10/util/TypeIndex.h' 2025-07-17T08:11:11.2899813Z adding 'torch/include/c10/util/TypeList.h' 2025-07-17T08:11:11.2904058Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-07-17T08:11:11.2908270Z adding 'torch/include/c10/util/TypeTraits.h' 2025-07-17T08:11:11.2911358Z adding 'torch/include/c10/util/Unicode.h' 2025-07-17T08:11:11.2915593Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-07-17T08:11:11.2918853Z adding 'torch/include/c10/util/Unroll.h' 2025-07-17T08:11:11.2922443Z adding 'torch/include/c10/util/WaitCounter.h' 2025-07-17T08:11:11.2925720Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-07-17T08:11:11.2929185Z adding 'torch/include/c10/util/accumulate.h' 2025-07-17T08:11:11.2932692Z adding 'torch/include/c10/util/bit_cast.h' 2025-07-17T08:11:11.2935844Z adding 'torch/include/c10/util/bits.h' 2025-07-17T08:11:11.2943281Z adding 'torch/include/c10/util/complex.h' 2025-07-17T08:11:11.2948636Z adding 'torch/include/c10/util/complex_math.h' 2025-07-17T08:11:11.2952136Z adding 'torch/include/c10/util/complex_utils.h' 2025-07-17T08:11:11.2955356Z adding 'torch/include/c10/util/copysign.h' 2025-07-17T08:11:11.2958446Z adding 'torch/include/c10/util/env.h' 2025-07-17T08:11:11.2961436Z adding 'torch/include/c10/util/error.h' 2025-07-17T08:11:11.2978162Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-07-17T08:11:11.3000592Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-07-17T08:11:11.3001000Z adding 'torch/include/c10/util/generic_math.h' 2025-07-17T08:11:11.3001307Z adding 'torch/include/c10/util/hash.h' 2025-07-17T08:11:11.3001694Z adding 'torch/include/c10/util/int128.h' 2025-07-17T08:11:11.3013883Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-07-17T08:11:11.3018668Z adding 'torch/include/c10/util/irange.h' 2025-07-17T08:11:11.3029188Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-07-17T08:11:11.3033872Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-07-17T08:11:11.3039078Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-07-17T08:11:11.3042059Z adding 'torch/include/c10/util/numa.h' 2025-07-17T08:11:11.3060551Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-07-17T08:11:11.3065697Z adding 'torch/include/c10/util/overflows.h' 2025-07-17T08:11:11.3068807Z adding 'torch/include/c10/util/overloaded.h' 2025-07-17T08:11:11.3071571Z adding 'torch/include/c10/util/python_stub.h' 2025-07-17T08:11:11.3074407Z adding 'torch/include/c10/util/qint32.h' 2025-07-17T08:11:11.3077499Z adding 'torch/include/c10/util/qint8.h' 2025-07-17T08:11:11.3080414Z adding 'torch/include/c10/util/quint2x4.h' 2025-07-17T08:11:11.3083342Z adding 'torch/include/c10/util/quint4x2.h' 2025-07-17T08:11:11.3086243Z adding 'torch/include/c10/util/quint8.h' 2025-07-17T08:11:11.3089680Z adding 'torch/include/c10/util/safe_numerics.h' 2025-07-17T08:11:11.3093650Z adding 'torch/include/c10/util/signal_handler.h' 2025-07-17T08:11:11.3102726Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-07-17T08:11:11.3106632Z adding 'torch/include/c10/util/ssize.h' 2025-07-17T08:11:11.3109788Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-07-17T08:11:11.3114139Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-07-17T08:11:11.3117334Z adding 'torch/include/c10/util/strides.h' 2025-07-17T08:11:11.3120231Z adding 'torch/include/c10/util/string_utils.h' 2025-07-17T08:11:11.3126769Z adding 'torch/include/c10/util/string_view.h' 2025-07-17T08:11:11.3136485Z adding 'torch/include/c10/util/strong_type.h' 2025-07-17T08:11:11.3140777Z adding 'torch/include/c10/util/tempfile.h' 2025-07-17T08:11:11.3143821Z adding 'torch/include/c10/util/thread_name.h' 2025-07-17T08:11:11.3152852Z adding 'torch/include/c10/util/typeid.h' 2025-07-17T08:11:11.3156545Z adding 'torch/include/c10/util/win32-headers.h' 2025-07-17T08:11:11.3161471Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-07-17T08:11:11.3166111Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-07-17T08:11:11.3169586Z adding 'torch/include/c10/xpu/XPUException.h' 2025-07-17T08:11:11.3172630Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-07-17T08:11:11.3175677Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-07-17T08:11:11.3180256Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-07-17T08:11:11.3185557Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-07-17T08:11:11.3189978Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-07-17T08:11:11.3194564Z adding 'torch/include/caffe2/core/common.h' 2025-07-17T08:11:11.3197982Z adding 'torch/include/caffe2/core/macros.h' 2025-07-17T08:11:11.3201190Z adding 'torch/include/caffe2/core/timer.h' 2025-07-17T08:11:11.3206658Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-07-17T08:11:11.3210832Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-07-17T08:11:11.3214402Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-07-17T08:11:11.3253929Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-07-17T08:11:11.3258858Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-07-17T08:11:11.3262005Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-07-17T08:11:11.3267497Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-07-17T08:11:11.3270727Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-07-17T08:11:11.3273780Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-07-17T08:11:11.3278298Z adding 'torch/include/caffe2/serialize/versions.h' 2025-07-17T08:11:11.3283112Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-07-17T08:11:11.3286484Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-07-17T08:11:11.3289526Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-07-17T08:11:11.3294546Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-07-17T08:11:11.3297789Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-07-17T08:11:11.3303910Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-07-17T08:11:11.3307672Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-07-17T08:11:11.3311643Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-07-17T08:11:11.3315026Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-07-17T08:11:11.3320500Z adding 'torch/include/fbgemm/ConvUtils.h' 2025-07-17T08:11:11.3333641Z adding 'torch/include/fbgemm/Fbgemm.h' 2025-07-17T08:11:11.3338213Z adding 'torch/include/fbgemm/FbgemmBuild.h' 2025-07-17T08:11:11.3341824Z adding 'torch/include/fbgemm/FbgemmConvert.h' 2025-07-17T08:11:11.3346895Z adding 'torch/include/fbgemm/FbgemmEmbedding.h' 2025-07-17T08:11:11.3350512Z adding 'torch/include/fbgemm/FbgemmFP16.h' 2025-07-17T08:11:11.3353725Z adding 'torch/include/fbgemm/FbgemmFP32.h' 2025-07-17T08:11:11.3359023Z adding 'torch/include/fbgemm/FbgemmFPCommon.h' 2025-07-17T08:11:11.3362445Z adding 'torch/include/fbgemm/FbgemmI64.h' 2025-07-17T08:11:11.3366198Z adding 'torch/include/fbgemm/FbgemmI8DepthwiseAvx2.h' 2025-07-17T08:11:11.3369566Z adding 'torch/include/fbgemm/FbgemmI8DirectconvAvx2.h' 2025-07-17T08:11:11.3373502Z adding 'torch/include/fbgemm/FbgemmI8Spmdm.h' 2025-07-17T08:11:11.3378750Z adding 'torch/include/fbgemm/FbgemmPackMatrixB.h' 2025-07-17T08:11:11.3383267Z adding 'torch/include/fbgemm/FbgemmSparse.h' 2025-07-17T08:11:11.3389095Z adding 'torch/include/fbgemm/FloatConversion.h' 2025-07-17T08:11:11.3393754Z adding 'torch/include/fbgemm/OutputProcessing-inl.h' 2025-07-17T08:11:11.3399237Z adding 'torch/include/fbgemm/PackingTraits-inl.h' 2025-07-17T08:11:11.3405172Z adding 'torch/include/fbgemm/QuantUtils.h' 2025-07-17T08:11:11.3409328Z adding 'torch/include/fbgemm/QuantUtilsAvx2.h' 2025-07-17T08:11:11.3412791Z adding 'torch/include/fbgemm/QuantUtilsAvx512.h' 2025-07-17T08:11:11.3415897Z adding 'torch/include/fbgemm/QuantUtilsNeon.h' 2025-07-17T08:11:11.3419170Z adding 'torch/include/fbgemm/SimdUtils.h' 2025-07-17T08:11:11.3422163Z adding 'torch/include/fbgemm/Types.h' 2025-07-17T08:11:11.3428554Z adding 'torch/include/fbgemm/Utils.h' 2025-07-17T08:11:11.3432429Z adding 'torch/include/fbgemm/UtilsAvx2.h' 2025-07-17T08:11:11.3435815Z adding 'torch/include/fbgemm/spmmUtils.h' 2025-07-17T08:11:11.3439122Z adding 'torch/include/fbgemm/spmmUtilsAvx2.h' 2025-07-17T08:11:11.3444778Z adding 'torch/include/fmt/args.h' 2025-07-17T08:11:11.3497030Z adding 'torch/include/fmt/base.h' 2025-07-17T08:11:11.3512124Z adding 'torch/include/fmt/chrono.h' 2025-07-17T08:11:11.3523597Z adding 'torch/include/fmt/color.h' 2025-07-17T08:11:11.3532024Z adding 'torch/include/fmt/compile.h' 2025-07-17T08:11:11.3534928Z adding 'torch/include/fmt/core.h' 2025-07-17T08:11:11.3565011Z adding 'torch/include/fmt/format-inl.h' 2025-07-17T08:11:11.3625411Z adding 'torch/include/fmt/format.h' 2025-07-17T08:11:11.3635466Z adding 'torch/include/fmt/os.h' 2025-07-17T08:11:11.3640828Z adding 'torch/include/fmt/ostream.h' 2025-07-17T08:11:11.3648597Z adding 'torch/include/fmt/printf.h' 2025-07-17T08:11:11.3658686Z adding 'torch/include/fmt/ranges.h' 2025-07-17T08:11:11.3667432Z adding 'torch/include/fmt/std.h' 2025-07-17T08:11:11.3673473Z adding 'torch/include/fmt/xchar.h' 2025-07-17T08:11:11.3678006Z adding 'torch/include/fp16/bitcasts.h' 2025-07-17T08:11:11.3684610Z adding 'torch/include/fp16/fp16.h' 2025-07-17T08:11:11.3689171Z adding 'torch/include/fp16/psimd.h' 2025-07-17T08:11:11.3696274Z adding 'torch/include/google/protobuf/any.h' 2025-07-17T08:11:11.3702184Z adding 'torch/include/google/protobuf/any.pb.h' 2025-07-17T08:11:11.3715292Z adding 'torch/include/google/protobuf/api.pb.h' 2025-07-17T08:11:11.3727764Z adding 'torch/include/google/protobuf/arena.h' 2025-07-17T08:11:11.3735679Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-07-17T08:11:11.3742498Z adding 'torch/include/google/protobuf/arenastring.h' 2025-07-17T08:11:11.3775709Z adding 'torch/include/google/protobuf/descriptor.h' 2025-07-17T08:11:11.3860058Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-07-17T08:11:11.3879777Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-07-17T08:11:11.3885080Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-07-17T08:11:11.3890926Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-07-17T08:11:11.3895749Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-07-17T08:11:11.3919056Z adding 'torch/include/google/protobuf/extension_set.h' 2025-07-17T08:11:11.3926156Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-07-17T08:11:11.3931973Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-07-17T08:11:11.3936415Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-07-17T08:11:11.3940313Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-07-17T08:11:11.3946752Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-07-17T08:11:11.3953208Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-07-17T08:11:11.3958879Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-07-17T08:11:11.3962951Z adding 'torch/include/google/protobuf/has_bits.h' 2025-07-17T08:11:11.3967663Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-07-17T08:11:11.3972674Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-07-17T08:11:11.3990515Z adding 'torch/include/google/protobuf/map.h' 2025-07-17T08:11:11.3996337Z adding 'torch/include/google/protobuf/map_entry.h' 2025-07-17T08:11:11.4006262Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-07-17T08:11:11.4017920Z adding 'torch/include/google/protobuf/map_field.h' 2025-07-17T08:11:11.4024241Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-07-17T08:11:11.4029428Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-07-17T08:11:11.4038924Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-07-17T08:11:11.4062062Z adding 'torch/include/google/protobuf/message.h' 2025-07-17T08:11:11.4074491Z adding 'torch/include/google/protobuf/message_lite.h' 2025-07-17T08:11:11.4078218Z adding 'torch/include/google/protobuf/metadata.h' 2025-07-17T08:11:11.4083501Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-07-17T08:11:11.4094930Z adding 'torch/include/google/protobuf/parse_context.h' 2025-07-17T08:11:11.4099099Z adding 'torch/include/google/protobuf/port.h' 2025-07-17T08:11:11.4106924Z adding 'torch/include/google/protobuf/reflection.h' 2025-07-17T08:11:11.4111376Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-07-17T08:11:11.4145414Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-07-17T08:11:11.4154377Z adding 'torch/include/google/protobuf/service.h' 2025-07-17T08:11:11.4159949Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-07-17T08:11:11.4171071Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-07-17T08:11:11.4182939Z adding 'torch/include/google/protobuf/text_format.h' 2025-07-17T08:11:11.4194370Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-07-17T08:11:11.4210211Z adding 'torch/include/google/protobuf/type.pb.h' 2025-07-17T08:11:11.4218548Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-07-17T08:11:11.4225764Z adding 'torch/include/google/protobuf/wire_format.h' 2025-07-17T08:11:11.4247206Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-07-17T08:11:11.4259323Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-07-17T08:11:11.4266750Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-07-17T08:11:11.4276050Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-07-17T08:11:11.4283212Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-07-17T08:11:11.4294594Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-07-17T08:11:11.4299329Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-07-17T08:11:11.4314386Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-07-17T08:11:11.4320955Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-07-17T08:11:11.4325504Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-07-17T08:11:11.4329478Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-07-17T08:11:11.4334217Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-07-17T08:11:11.4337983Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-07-17T08:11:11.4344646Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-07-17T08:11:11.4348611Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-07-17T08:11:11.4353319Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-07-17T08:11:11.4359341Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-07-17T08:11:11.4364176Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-07-17T08:11:11.4369526Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-07-17T08:11:11.4374212Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-07-17T08:11:11.4402250Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-07-17T08:11:11.4408398Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-07-17T08:11:11.4412944Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-07-17T08:11:11.4420258Z adding 'torch/include/google/protobuf/io/printer.h' 2025-07-17T08:11:11.4424220Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-07-17T08:11:11.4432306Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-07-17T08:11:11.4438486Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-07-17T08:11:11.4445147Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-07-17T08:11:11.4452742Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-07-17T08:11:11.4459960Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-07-17T08:11:11.4465714Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-07-17T08:11:11.4470518Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-07-17T08:11:11.4475475Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-07-17T08:11:11.4480074Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-07-17T08:11:11.4484104Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-07-17T08:11:11.4489227Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-07-17T08:11:11.4493999Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-07-17T08:11:11.4504128Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-07-17T08:11:11.4509138Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-07-17T08:11:11.4512745Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-07-17T08:11:11.4516836Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-07-17T08:11:11.4522643Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-07-17T08:11:11.4526890Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-07-17T08:11:11.4530932Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-07-17T08:11:11.4538809Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-07-17T08:11:11.4553115Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-07-17T08:11:11.4558335Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-07-17T08:11:11.4563595Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-07-17T08:11:11.4569086Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-07-17T08:11:11.4575118Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-07-17T08:11:11.4580047Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-07-17T08:11:11.4599671Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-07-17T08:11:11.4629336Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-07-17T08:11:11.4629541Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-07-17T08:11:11.4629732Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-07-17T08:11:11.4629852Z adding 'torch/include/kineto/AbstractConfig.h' 2025-07-17T08:11:11.4630024Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-07-17T08:11:11.4630166Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-07-17T08:11:11.4631054Z adding 'torch/include/kineto/ActivityType.h' 2025-07-17T08:11:11.4635017Z adding 'torch/include/kineto/ClientInterface.h' 2025-07-17T08:11:11.4640974Z adding 'torch/include/kineto/Config.h' 2025-07-17T08:11:11.4645898Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-07-17T08:11:11.4649664Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-07-17T08:11:11.4653340Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-07-17T08:11:11.4656761Z adding 'torch/include/kineto/ITraceActivity.h' 2025-07-17T08:11:11.4659892Z adding 'torch/include/kineto/LoggingAPI.h' 2025-07-17T08:11:11.4663704Z adding 'torch/include/kineto/ThreadUtil.h' 2025-07-17T08:11:11.4666158Z adding 'torch/include/kineto/TraceSpan.h' 2025-07-17T08:11:11.4670019Z adding 'torch/include/kineto/libkineto.h' 2025-07-17T08:11:11.4673451Z adding 'torch/include/kineto/output_base.h' 2025-07-17T08:11:11.4676652Z adding 'torch/include/kineto/time_since_epoch.h' 2025-07-17T08:11:11.4686708Z adding 'torch/include/legacy/ittnotify.h' 2025-07-17T08:11:11.4692446Z adding 'torch/include/mimalloc-2.2/mimalloc-new-delete.h' 2025-07-17T08:11:11.4695762Z adding 'torch/include/mimalloc-2.2/mimalloc-override.h' 2025-07-17T08:11:11.4699785Z adding 'torch/include/mimalloc-2.2/mimalloc-stats.h' 2025-07-17T08:11:11.4711764Z adding 'torch/include/mimalloc-2.2/mimalloc.h' 2025-07-17T08:11:11.4750754Z adding 'torch/include/oneapi/dnnl/dnnl.h' 2025-07-17T08:11:11.4863028Z adding 'torch/include/oneapi/dnnl/dnnl.hpp' 2025-07-17T08:11:11.4883990Z adding 'torch/include/oneapi/dnnl/dnnl_common.h' 2025-07-17T08:11:11.4891046Z adding 'torch/include/oneapi/dnnl/dnnl_common.hpp' 2025-07-17T08:11:11.4896252Z adding 'torch/include/oneapi/dnnl/dnnl_common_types.h' 2025-07-17T08:11:11.4900549Z adding 'torch/include/oneapi/dnnl/dnnl_config.h' 2025-07-17T08:11:11.4904033Z adding 'torch/include/oneapi/dnnl/dnnl_debug.h' 2025-07-17T08:11:11.4914577Z adding 'torch/include/oneapi/dnnl/dnnl_graph.h' 2025-07-17T08:11:11.4936731Z adding 'torch/include/oneapi/dnnl/dnnl_graph.hpp' 2025-07-17T08:11:11.4942342Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.h' 2025-07-17T08:11:11.4946553Z adding 'torch/include/oneapi/dnnl/dnnl_graph_ocl.hpp' 2025-07-17T08:11:11.4950299Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.h' 2025-07-17T08:11:11.4954265Z adding 'torch/include/oneapi/dnnl/dnnl_graph_sycl.hpp' 2025-07-17T08:11:11.4960756Z adding 'torch/include/oneapi/dnnl/dnnl_graph_types.h' 2025-07-17T08:11:11.4966250Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.h' 2025-07-17T08:11:11.4973407Z adding 'torch/include/oneapi/dnnl/dnnl_ocl.hpp' 2025-07-17T08:11:11.4977140Z adding 'torch/include/oneapi/dnnl/dnnl_ocl_types.h' 2025-07-17T08:11:11.4981543Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.h' 2025-07-17T08:11:11.4987573Z adding 'torch/include/oneapi/dnnl/dnnl_sycl.hpp' 2025-07-17T08:11:11.4991135Z adding 'torch/include/oneapi/dnnl/dnnl_sycl_types.h' 2025-07-17T08:11:11.4994809Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.h' 2025-07-17T08:11:11.4998653Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool.hpp' 2025-07-17T08:11:11.5002252Z adding 'torch/include/oneapi/dnnl/dnnl_threadpool_iface.hpp' 2025-07-17T08:11:11.5030072Z adding 'torch/include/oneapi/dnnl/dnnl_types.h' 2025-07-17T08:11:11.5037464Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.h' 2025-07-17T08:11:11.5043925Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel.hpp' 2025-07-17T08:11:11.5047869Z adding 'torch/include/oneapi/dnnl/dnnl_ukernel_types.h' 2025-07-17T08:11:11.5051141Z adding 'torch/include/oneapi/dnnl/dnnl_version.h' 2025-07-17T08:11:11.5054353Z adding 'torch/include/oneapi/dnnl/dnnl_version_hash.h' 2025-07-17T08:11:11.5063850Z adding 'torch/include/pybind11/attr.h' 2025-07-17T08:11:11.5073546Z adding 'torch/include/pybind11/buffer_info.h' 2025-07-17T08:11:11.5117444Z adding 'torch/include/pybind11/cast.h' 2025-07-17T08:11:11.5117562Z adding 'torch/include/pybind11/chrono.h' 2025-07-17T08:11:11.5117664Z adding 'torch/include/pybind11/common.h' 2025-07-17T08:11:11.5117773Z adding 'torch/include/pybind11/complex.h' 2025-07-17T08:11:11.5117877Z adding 'torch/include/pybind11/eigen.h' 2025-07-17T08:11:11.5119152Z adding 'torch/include/pybind11/embed.h' 2025-07-17T08:11:11.5123530Z adding 'torch/include/pybind11/eval.h' 2025-07-17T08:11:11.5127846Z adding 'torch/include/pybind11/functional.h' 2025-07-17T08:11:11.5132723Z adding 'torch/include/pybind11/gil.h' 2025-07-17T08:11:11.5136915Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-07-17T08:11:11.5142098Z adding 'torch/include/pybind11/iostream.h' 2025-07-17T08:11:11.5169299Z adding 'torch/include/pybind11/numpy.h' 2025-07-17T08:11:11.5175925Z adding 'torch/include/pybind11/operators.h' 2025-07-17T08:11:11.5179561Z adding 'torch/include/pybind11/options.h' 2025-07-17T08:11:11.5221603Z adding 'torch/include/pybind11/pybind11.h' 2025-07-17T08:11:11.5255083Z adding 'torch/include/pybind11/pytypes.h' 2025-07-17T08:11:11.5263482Z adding 'torch/include/pybind11/stl.h' 2025-07-17T08:11:11.5273154Z adding 'torch/include/pybind11/stl_bind.h' 2025-07-17T08:11:11.5277316Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-07-17T08:11:11.5281359Z adding 'torch/include/pybind11/typing.h' 2025-07-17T08:11:11.5293408Z adding 'torch/include/pybind11/detail/class.h' 2025-07-17T08:11:11.5312738Z adding 'torch/include/pybind11/detail/common.h' 2025-07-17T08:11:11.5317531Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-07-17T08:11:11.5321636Z adding 'torch/include/pybind11/detail/descr.h' 2025-07-17T08:11:11.5325391Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-07-17T08:11:11.5332571Z adding 'torch/include/pybind11/detail/init.h' 2025-07-17T08:11:11.5344664Z adding 'torch/include/pybind11/detail/internals.h' 2025-07-17T08:11:11.5363333Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-07-17T08:11:11.5367800Z adding 'torch/include/pybind11/detail/typeid.h' 2025-07-17T08:11:11.5371380Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-07-17T08:11:11.5375436Z adding 'torch/include/pybind11/eigen/common.h' 2025-07-17T08:11:11.5386662Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-07-17T08:11:11.5393607Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-07-17T08:11:11.5398736Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-07-17T08:11:11.5407509Z adding 'torch/include/torch/custom_class.h' 2025-07-17T08:11:11.5412966Z adding 'torch/include/torch/custom_class_detail.h' 2025-07-17T08:11:11.5416050Z adding 'torch/include/torch/extension.h' 2025-07-17T08:11:11.5431772Z adding 'torch/include/torch/library.h' 2025-07-17T08:11:11.5435700Z adding 'torch/include/torch/script.h' 2025-07-17T08:11:11.5440817Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-07-17T08:11:11.5443833Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-07-17T08:11:11.5446711Z adding 'torch/include/torch/csrc/Device.h' 2025-07-17T08:11:11.5449543Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-07-17T08:11:11.5452635Z adding 'torch/include/torch/csrc/Dtype.h' 2025-07-17T08:11:11.5455738Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-07-17T08:11:11.5458686Z adding 'torch/include/torch/csrc/Event.h' 2025-07-17T08:11:11.5465413Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-07-17T08:11:11.5468675Z adding 'torch/include/torch/csrc/Export.h' 2025-07-17T08:11:11.5471795Z adding 'torch/include/torch/csrc/Generator.h' 2025-07-17T08:11:11.5474803Z adding 'torch/include/torch/csrc/Layout.h' 2025-07-17T08:11:11.5477804Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-07-17T08:11:11.5480540Z adding 'torch/include/torch/csrc/Module.h' 2025-07-17T08:11:11.5483409Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-07-17T08:11:11.5486346Z adding 'torch/include/torch/csrc/QScheme.h' 2025-07-17T08:11:11.5489276Z adding 'torch/include/torch/csrc/Size.h' 2025-07-17T08:11:11.5492570Z adding 'torch/include/torch/csrc/Storage.h' 2025-07-17T08:11:11.5495403Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-07-17T08:11:11.5498143Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-07-17T08:11:11.5501104Z adding 'torch/include/torch/csrc/Stream.h' 2025-07-17T08:11:11.5503967Z adding 'torch/include/torch/csrc/THConcat.h' 2025-07-17T08:11:11.5506929Z adding 'torch/include/torch/csrc/THP.h' 2025-07-17T08:11:11.5509896Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-07-17T08:11:11.5512654Z adding 'torch/include/torch/csrc/Types.h' 2025-07-17T08:11:11.5515768Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-07-17T08:11:11.5518571Z adding 'torch/include/torch/csrc/itt.h' 2025-07-17T08:11:11.5521395Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-07-17T08:11:11.5524165Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-07-17T08:11:11.5527098Z adding 'torch/include/torch/csrc/python_headers.h' 2025-07-17T08:11:11.5530063Z adding 'torch/include/torch/csrc/serialization.h' 2025-07-17T08:11:11.5534562Z adding 'torch/include/torch/csrc/utils.h' 2025-07-17T08:11:11.5539948Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-07-17T08:11:11.5543089Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-07-17T08:11:11.5546250Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-07-17T08:11:11.5549173Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-07-17T08:11:11.5552037Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-07-17T08:11:11.5556329Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-07-17T08:11:11.5573284Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-07-17T08:11:11.5573530Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-07-17T08:11:11.5573700Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-07-17T08:11:11.5573850Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-07-17T08:11:11.5576819Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-07-17T08:11:11.5616559Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-07-17T08:11:11.5616745Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-07-17T08:11:11.5616917Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-07-17T08:11:11.5617115Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-07-17T08:11:11.5617280Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-07-17T08:11:11.5617458Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-07-17T08:11:11.5617625Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-07-17T08:11:11.5617796Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-07-17T08:11:11.5619804Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-07-17T08:11:11.5623389Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-07-17T08:11:11.5628568Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-07-17T08:11:11.5630585Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-07-17T08:11:11.5634389Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-07-17T08:11:11.5638133Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-07-17T08:11:11.5641747Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-07-17T08:11:11.5645102Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-07-17T08:11:11.5647994Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-07-17T08:11:11.5652202Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-07-17T08:11:11.5655943Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-07-17T08:11:11.5658333Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-07-17T08:11:11.5661556Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-07-17T08:11:11.5667540Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-07-17T08:11:11.5671794Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-07-17T08:11:11.5675321Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-07-17T08:11:11.5679900Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-07-17T08:11:11.5688709Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-07-17T08:11:11.5693179Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-07-17T08:11:11.5696575Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-07-17T08:11:11.5700111Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-07-17T08:11:11.5703833Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-07-17T08:11:11.5707052Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-07-17T08:11:11.5711496Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-07-17T08:11:11.5716218Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-07-17T08:11:11.5720442Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-07-17T08:11:11.5724797Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-07-17T08:11:11.5728123Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-07-17T08:11:11.5731864Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-07-17T08:11:11.5735325Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-07-17T08:11:11.5738506Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-07-17T08:11:11.5741577Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-07-17T08:11:11.5744983Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-07-17T08:11:11.5749124Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-07-17T08:11:11.5752367Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-07-17T08:11:11.5755631Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-07-17T08:11:11.5759036Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-07-17T08:11:11.5762549Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-07-17T08:11:11.5769339Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-07-17T08:11:11.5773259Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-07-17T08:11:11.5778039Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-07-17T08:11:11.5781105Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-07-17T08:11:11.5784893Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-07-17T08:11:11.5794154Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-07-17T08:11:11.5797909Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-07-17T08:11:11.5800883Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-07-17T08:11:11.5804536Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-07-17T08:11:11.5809133Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-07-17T08:11:11.5812355Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-07-17T08:11:11.5820988Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-07-17T08:11:11.5825156Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-07-17T08:11:11.5828981Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-07-17T08:11:11.5832609Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-07-17T08:11:11.5836410Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-07-17T08:11:11.5840737Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-07-17T08:11:11.5844327Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-07-17T08:11:11.5847706Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-07-17T08:11:11.5851770Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-07-17T08:11:11.5859335Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-07-17T08:11:11.5864896Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-07-17T08:11:11.5867581Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-07-17T08:11:11.5871046Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-07-17T08:11:11.5878246Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-07-17T08:11:11.5883927Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-07-17T08:11:11.5888155Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-07-17T08:11:11.5893571Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-07-17T08:11:11.5899603Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-07-17T08:11:11.5903809Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-07-17T08:11:11.5908406Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-07-17T08:11:11.5913029Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-07-17T08:11:11.5918540Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-07-17T08:11:11.5922850Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-07-17T08:11:11.5926713Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-07-17T08:11:11.5931265Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-07-17T08:11:11.5935054Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-07-17T08:11:11.5940137Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-07-17T08:11:11.5943587Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-07-17T08:11:11.5951612Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-07-17T08:11:11.5957294Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-07-17T08:11:11.5961229Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-07-17T08:11:11.5965324Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-07-17T08:11:11.5972042Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-07-17T08:11:11.5977963Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-07-17T08:11:11.5982733Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-07-17T08:11:11.5987000Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-07-17T08:11:11.6016906Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-07-17T08:11:11.6017544Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-07-17T08:11:11.6018104Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-07-17T08:11:11.6018664Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-07-17T08:11:11.6019327Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-07-17T08:11:11.6020022Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-07-17T08:11:11.6020957Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-07-17T08:11:11.6026104Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-07-17T08:11:11.6031566Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-07-17T08:11:11.6035576Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-07-17T08:11:11.6041082Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-07-17T08:11:11.6043993Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-07-17T08:11:11.6051915Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-07-17T08:11:11.6057752Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-07-17T08:11:11.6061516Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-07-17T08:11:11.6064974Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-07-17T08:11:11.6069809Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-07-17T08:11:11.6073595Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-07-17T08:11:11.6077367Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-07-17T08:11:11.6081883Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-07-17T08:11:11.6085868Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-07-17T08:11:11.6089485Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-07-17T08:11:11.6093334Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-07-17T08:11:11.6100003Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-07-17T08:11:11.6104534Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-07-17T08:11:11.6108856Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-07-17T08:11:11.6112356Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-07-17T08:11:11.6117600Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-07-17T08:11:11.6122247Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-07-17T08:11:11.6125891Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-07-17T08:11:11.6129249Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-07-17T08:11:11.6132759Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-07-17T08:11:11.6136598Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-07-17T08:11:11.6139974Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-07-17T08:11:11.6146734Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-07-17T08:11:11.6151757Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-07-17T08:11:11.6155555Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-07-17T08:11:11.6161560Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-07-17T08:11:11.6166361Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-07-17T08:11:11.6170020Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-07-17T08:11:11.6173988Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-07-17T08:11:11.6177612Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-07-17T08:11:11.6182282Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-07-17T08:11:11.6186036Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-07-17T08:11:11.6191707Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-07-17T08:11:11.6195697Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-07-17T08:11:11.6200294Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-07-17T08:11:11.6204042Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-07-17T08:11:11.6207268Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-07-17T08:11:11.6211335Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-07-17T08:11:11.6215200Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-07-17T08:11:11.6219273Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-07-17T08:11:11.6223022Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-07-17T08:11:11.6226233Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-07-17T08:11:11.6237582Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-07-17T08:11:11.6241374Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-07-17T08:11:11.6248064Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-07-17T08:11:11.6252216Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-07-17T08:11:11.6256780Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-07-17T08:11:11.6260424Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-07-17T08:11:11.6263585Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-07-17T08:11:11.6272841Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-07-17T08:11:11.6276691Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-07-17T08:11:11.6282320Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-07-17T08:11:11.6288084Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-07-17T08:11:11.6301638Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-07-17T08:11:11.6306713Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-07-17T08:11:11.6308879Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-07-17T08:11:11.6314393Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-07-17T08:11:11.6318562Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-07-17T08:11:11.6321893Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-07-17T08:11:11.6325610Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-07-17T08:11:11.6328425Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-07-17T08:11:11.6333627Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-07-17T08:11:11.6339516Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-07-17T08:11:11.6342774Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-07-17T08:11:11.6345945Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-07-17T08:11:11.6349049Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-07-17T08:11:11.6353024Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-07-17T08:11:11.6356124Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-07-17T08:11:11.6359149Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-07-17T08:11:11.6361988Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-07-17T08:11:11.6366289Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-07-17T08:11:11.6370345Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-07-17T08:11:11.6372927Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-07-17T08:11:11.6376133Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-07-17T08:11:11.6378629Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-07-17T08:11:11.6381842Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-07-17T08:11:11.6384593Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-07-17T08:11:11.6387602Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-07-17T08:11:11.6390317Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-07-17T08:11:11.6393409Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-07-17T08:11:11.6397065Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-07-17T08:11:11.6400865Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-07-17T08:11:11.6404774Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-07-17T08:11:11.6408335Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-07-17T08:11:11.6411819Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-07-17T08:11:11.6414671Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-07-17T08:11:11.6430671Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-07-17T08:11:11.6434811Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-07-17T08:11:11.6442514Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-07-17T08:11:11.6446533Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-07-17T08:11:11.6449861Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-07-17T08:11:11.6453100Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-07-17T08:11:11.6458012Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-07-17T08:11:11.6462025Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-07-17T08:11:11.6516677Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-07-17T08:11:11.6532060Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-07-17T08:11:11.6538292Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-07-17T08:11:11.6542245Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-07-17T08:11:11.6546916Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-07-17T08:11:11.6553651Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-07-17T08:11:11.6558756Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-07-17T08:11:11.6563063Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-07-17T08:11:11.6565782Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-07-17T08:11:11.6569011Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-07-17T08:11:11.6572091Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-07-17T08:11:11.6575739Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-07-17T08:11:11.6579352Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-07-17T08:11:11.6584544Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-07-17T08:11:11.6587701Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-07-17T08:11:11.6590543Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-07-17T08:11:11.6593662Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-07-17T08:11:11.6596507Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-07-17T08:11:11.6599258Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-07-17T08:11:11.6602327Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-07-17T08:11:11.6605161Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-07-17T08:11:11.6608187Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-07-17T08:11:11.6612299Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-07-17T08:11:11.6615344Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-07-17T08:11:11.6618239Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-07-17T08:11:11.6621032Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-07-17T08:11:11.6625775Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-07-17T08:11:11.6628692Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-07-17T08:11:11.6632006Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-07-17T08:11:11.6637382Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-07-17T08:11:11.6642054Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-07-17T08:11:11.6647801Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-07-17T08:11:11.6652269Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-07-17T08:11:11.6655713Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-07-17T08:11:11.6660841Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-07-17T08:11:11.6663119Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-07-17T08:11:11.6690636Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-07-17T08:11:11.6691444Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-07-17T08:11:11.6692180Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-07-17T08:11:11.6692990Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-07-17T08:11:11.6693693Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-07-17T08:11:11.6694421Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-07-17T08:11:11.6696241Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-07-17T08:11:11.6696922Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-07-17T08:11:11.6699622Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-07-17T08:11:11.6703429Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-07-17T08:11:11.6707750Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-07-17T08:11:11.6710920Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-07-17T08:11:11.6716469Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-07-17T08:11:11.6724942Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-07-17T08:11:11.6727810Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-07-17T08:11:11.6731602Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-07-17T08:11:11.6734656Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-07-17T08:11:11.6738064Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-07-17T08:11:11.6744692Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-07-17T08:11:11.6748347Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-07-17T08:11:11.6752939Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-07-17T08:11:11.6756066Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-07-17T08:11:11.6766173Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-07-17T08:11:11.6774134Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-07-17T08:11:11.6782452Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-07-17T08:11:11.6788093Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-07-17T08:11:11.6810434Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-07-17T08:11:11.6817153Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-07-17T08:11:11.6821248Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-07-17T08:11:11.6826124Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-07-17T08:11:11.6829997Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-07-17T08:11:11.6833774Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-07-17T08:11:11.6837966Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-07-17T08:11:11.6841475Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-07-17T08:11:11.6846699Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-07-17T08:11:11.6851073Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-07-17T08:11:11.6854682Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-07-17T08:11:11.6859002Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-07-17T08:11:11.6862262Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-07-17T08:11:11.6870939Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-07-17T08:11:11.6874796Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-07-17T08:11:11.6879186Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-07-17T08:11:11.6882249Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-07-17T08:11:11.6886190Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-07-17T08:11:11.6889482Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-07-17T08:11:11.6892752Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-07-17T08:11:11.6895935Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-07-17T08:11:11.6899204Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-07-17T08:11:11.6903927Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-07-17T08:11:11.6907283Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-07-17T08:11:11.6910538Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-07-17T08:11:11.6921626Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-07-17T08:11:11.6925779Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-07-17T08:11:11.6930072Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-07-17T08:11:11.6932819Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-07-17T08:11:11.6935962Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-07-17T08:11:11.6940024Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-07-17T08:11:11.6943317Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-07-17T08:11:11.6947523Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-07-17T08:11:11.6950835Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-07-17T08:11:11.6955391Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-07-17T08:11:11.6958361Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-07-17T08:11:11.6962211Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-07-17T08:11:11.6965178Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-07-17T08:11:11.6968336Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-07-17T08:11:11.6974826Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-07-17T08:11:11.6978836Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-07-17T08:11:11.6983562Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-07-17T08:11:11.6987398Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-07-17T08:11:11.6990639Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-07-17T08:11:11.6995455Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-07-17T08:11:11.6999185Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-07-17T08:11:11.7003646Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-07-17T08:11:11.7008323Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-07-17T08:11:11.7012246Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-07-17T08:11:11.7015458Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-07-17T08:11:11.7018821Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-07-17T08:11:11.7021993Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-07-17T08:11:11.7025043Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-07-17T08:11:11.7029174Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-07-17T08:11:11.7038477Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-07-17T08:11:11.7039110Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-07-17T08:11:11.7045971Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-07-17T08:11:11.7046961Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-07-17T08:11:11.7053940Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-07-17T08:11:11.7057849Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-07-17T08:11:11.7066586Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-07-17T08:11:11.7076035Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-07-17T08:11:11.7081233Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-07-17T08:11:11.7085301Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-07-17T08:11:11.7089129Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-07-17T08:11:11.7092422Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-07-17T08:11:11.7100676Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-07-17T08:11:11.7105157Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-07-17T08:11:11.7108740Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-07-17T08:11:11.7112009Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-07-17T08:11:11.7115619Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-07-17T08:11:11.7118859Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-07-17T08:11:11.7122534Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-07-17T08:11:11.7127045Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-07-17T08:11:11.7131354Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-07-17T08:11:11.7135389Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-07-17T08:11:11.7140003Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-07-17T08:11:11.7143099Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-07-17T08:11:11.7147490Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-07-17T08:11:11.7165300Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-07-17T08:11:11.7169398Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-07-17T08:11:11.7172615Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-07-17T08:11:11.7175805Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-07-17T08:11:11.7179365Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-07-17T08:11:11.7182626Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-07-17T08:11:11.7185703Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-07-17T08:11:11.7190094Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-07-17T08:11:11.7193913Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-07-17T08:11:11.7197483Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-07-17T08:11:11.7200428Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-07-17T08:11:11.7203359Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-07-17T08:11:11.7206196Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-07-17T08:11:11.7210017Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-07-17T08:11:11.7213765Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-07-17T08:11:11.7216671Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-07-17T08:11:11.7220674Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-07-17T08:11:11.7224354Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-07-17T08:11:11.7228011Z adding 'torch/include/torch/csrc/fx/node.h' 2025-07-17T08:11:11.7232204Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-07-17T08:11:11.7244144Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-07-17T08:11:11.7248150Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-07-17T08:11:11.7251479Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-07-17T08:11:11.7255878Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-07-17T08:11:11.7260211Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-07-17T08:11:11.7264033Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-07-17T08:11:11.7266935Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-07-17T08:11:11.7269763Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-07-17T08:11:11.7272490Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-07-17T08:11:11.7275242Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-07-17T08:11:11.7277968Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-07-17T08:11:11.7282080Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-07-17T08:11:11.7284894Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-07-17T08:11:11.7289608Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-07-17T08:11:11.7292926Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-07-17T08:11:11.7296100Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-07-17T08:11:11.7299067Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-07-17T08:11:11.7302223Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-07-17T08:11:11.7305544Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-07-17T08:11:11.7310717Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-07-17T08:11:11.7314080Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-07-17T08:11:11.7317463Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-07-17T08:11:11.7322166Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-07-17T08:11:11.7326530Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-07-17T08:11:11.7331257Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-07-17T08:11:11.7339095Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-07-17T08:11:11.7349067Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-07-17T08:11:11.7352931Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-07-17T08:11:11.7357499Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-07-17T08:11:11.7361377Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-07-17T08:11:11.7366555Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-07-17T08:11:11.7370168Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-07-17T08:11:11.7373661Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-07-17T08:11:11.7377627Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-07-17T08:11:11.7381550Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-07-17T08:11:11.7384920Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-07-17T08:11:11.7388864Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-07-17T08:11:11.7392473Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-07-17T08:11:11.7402494Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-07-17T08:11:11.7407123Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-07-17T08:11:11.7410672Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-07-17T08:11:11.7413987Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-07-17T08:11:11.7421672Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-07-17T08:11:11.7429991Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-07-17T08:11:11.7436538Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-07-17T08:11:11.7441531Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-07-17T08:11:11.7445644Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-07-17T08:11:11.7449042Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-07-17T08:11:11.7453002Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-07-17T08:11:11.7454870Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-07-17T08:11:11.7458611Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-07-17T08:11:11.7460664Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-07-17T08:11:11.7464685Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-07-17T08:11:11.7467130Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-07-17T08:11:11.7470338Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-07-17T08:11:11.7472714Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-07-17T08:11:11.7476339Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-07-17T08:11:11.7481737Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-07-17T08:11:11.7484559Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-07-17T08:11:11.7487678Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-07-17T08:11:11.7494475Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-07-17T08:11:11.7499280Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-07-17T08:11:11.7502947Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-07-17T08:11:11.7522046Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-07-17T08:11:11.7522422Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-07-17T08:11:11.7524492Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-07-17T08:11:11.7529492Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-07-17T08:11:11.7534258Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-07-17T08:11:11.7536603Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-07-17T08:11:11.7540261Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-07-17T08:11:11.7543212Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-07-17T08:11:11.7546560Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-07-17T08:11:11.7549765Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-07-17T08:11:11.7552762Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-07-17T08:11:11.7557160Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-07-17T08:11:11.7561034Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-07-17T08:11:11.7564037Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-07-17T08:11:11.7567020Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-07-17T08:11:11.7570061Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-07-17T08:11:11.7573310Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-07-17T08:11:11.7577883Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-07-17T08:11:11.7581777Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-07-17T08:11:11.7585721Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-07-17T08:11:11.7590056Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-07-17T08:11:11.7594715Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-07-17T08:11:11.7598877Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-07-17T08:11:11.7602013Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-07-17T08:11:11.7605347Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-07-17T08:11:11.7608379Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-07-17T08:11:11.7611383Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-07-17T08:11:11.7615020Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-07-17T08:11:11.7618343Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-07-17T08:11:11.7621650Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-07-17T08:11:11.7625544Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-07-17T08:11:11.7629033Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-07-17T08:11:11.7632579Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-07-17T08:11:11.7635674Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-07-17T08:11:11.7639636Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-07-17T08:11:11.7643145Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-07-17T08:11:11.7646809Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-07-17T08:11:11.7651112Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-07-17T08:11:11.7656565Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-07-17T08:11:11.7662731Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-07-17T08:11:11.7665883Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-07-17T08:11:11.7668718Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-07-17T08:11:11.7671870Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-07-17T08:11:11.7675333Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-07-17T08:11:11.7678288Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-07-17T08:11:11.7681419Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-07-17T08:11:11.7685006Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-07-17T08:11:11.7688044Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-07-17T08:11:11.7691836Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-07-17T08:11:11.7695133Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-07-17T08:11:11.7699773Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-07-17T08:11:11.7704233Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-07-17T08:11:11.7707225Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-07-17T08:11:11.7712417Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-07-17T08:11:11.7715618Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-07-17T08:11:11.7718499Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-07-17T08:11:11.7721684Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-07-17T08:11:11.7724555Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-07-17T08:11:11.7727592Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-07-17T08:11:11.7730598Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-07-17T08:11:11.7733488Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-07-17T08:11:11.7741791Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-07-17T08:11:11.7745604Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-07-17T08:11:11.7748707Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-07-17T08:11:11.7752156Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-07-17T08:11:11.7755302Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-07-17T08:11:11.7758114Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-07-17T08:11:11.7761531Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-07-17T08:11:11.7764921Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-07-17T08:11:11.7768142Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-07-17T08:11:11.7771812Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-07-17T08:11:11.7778783Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-07-17T08:11:11.7782485Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-07-17T08:11:11.7785376Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-07-17T08:11:11.7795261Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-07-17T08:11:11.7801421Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-07-17T08:11:11.7806318Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-07-17T08:11:11.7818026Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-07-17T08:11:11.7822015Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-07-17T08:11:11.7829768Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-07-17T08:11:11.7833998Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-07-17T08:11:11.7837510Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-07-17T08:11:11.7841682Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-07-17T08:11:11.7844839Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-07-17T08:11:11.7865699Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-07-17T08:11:11.7871141Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-07-17T08:11:11.7874515Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-07-17T08:11:11.7878004Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-07-17T08:11:11.7881129Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-07-17T08:11:11.7885785Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-07-17T08:11:11.7889953Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-07-17T08:11:11.7893131Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-07-17T08:11:11.7897503Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-07-17T08:11:11.7900901Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-07-17T08:11:11.7905551Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-07-17T08:11:11.7909929Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-07-17T08:11:11.7913191Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-07-17T08:11:11.7916854Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-07-17T08:11:11.7920799Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-07-17T08:11:11.7924369Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-07-17T08:11:11.7927541Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-07-17T08:11:11.7930953Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-07-17T08:11:11.8632058Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-07-17T08:11:11.8632514Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-07-17T08:11:11.8633019Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-07-17T08:11:11.8633548Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-07-17T08:11:11.8634125Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-07-17T08:11:11.8634613Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-07-17T08:11:11.8635184Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-07-17T08:11:11.8635756Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-07-17T08:11:11.8636255Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-07-17T08:11:11.8637011Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-07-17T08:11:11.8637608Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-07-17T08:11:11.8638070Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-07-17T08:11:11.8638668Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-07-17T08:11:11.8639819Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-07-17T08:11:11.8640591Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-07-17T08:11:11.8641338Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-07-17T08:11:11.8642035Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-07-17T08:11:11.8642784Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-07-17T08:11:11.8643421Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-07-17T08:11:11.8644194Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-07-17T08:11:11.8644937Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-07-17T08:11:11.8645530Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-07-17T08:11:11.8646154Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-07-17T08:11:11.8646792Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-07-17T08:11:11.8647227Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-07-17T08:11:11.8647635Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-07-17T08:11:11.8648153Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-07-17T08:11:11.8648711Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-07-17T08:11:11.8649246Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-07-17T08:11:11.8649727Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-07-17T08:11:11.8650463Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-07-17T08:11:11.8651118Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-07-17T08:11:11.8651681Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-07-17T08:11:11.8652347Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-07-17T08:11:11.8652955Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-07-17T08:11:11.8653437Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-07-17T08:11:11.8653931Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-07-17T08:11:11.8654443Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-07-17T08:11:11.8654982Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-07-17T08:11:11.8655403Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-07-17T08:11:11.8656068Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-07-17T08:11:11.8656745Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-07-17T08:11:11.8657306Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-07-17T08:11:11.8657892Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-07-17T08:11:11.8658586Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-07-17T08:11:11.8659148Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-07-17T08:11:11.8659705Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-07-17T08:11:11.8660320Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-07-17T08:11:11.8660925Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-07-17T08:11:11.8661568Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-07-17T08:11:11.8662136Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-07-17T08:11:11.8662661Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-07-17T08:11:11.8663134Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-07-17T08:11:11.8663607Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-07-17T08:11:11.8663794Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-07-17T08:11:11.8664279Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-07-17T08:11:11.8664558Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-07-17T08:11:11.8664733Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-07-17T08:11:11.8664947Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-07-17T08:11:11.8665111Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-07-17T08:11:11.8665317Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-07-17T08:11:11.8665542Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-07-17T08:11:11.8665737Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-07-17T08:11:11.8665989Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-07-17T08:11:11.8666182Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-07-17T08:11:11.8666391Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-07-17T08:11:11.8666581Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-07-17T08:11:11.8666745Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-07-17T08:11:11.8666886Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-07-17T08:11:11.8667039Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-07-17T08:11:11.8667246Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-07-17T08:11:11.8667424Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-07-17T08:11:11.8667642Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-07-17T08:11:11.8668358Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-07-17T08:11:11.8671163Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-07-17T08:11:11.8674064Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-07-17T08:11:11.8676877Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-07-17T08:11:11.8679706Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-07-17T08:11:11.8682596Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-07-17T08:11:11.8685509Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-07-17T08:11:11.8688378Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-07-17T08:11:11.8691397Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-07-17T08:11:11.8694564Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-07-17T08:11:11.8697538Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-07-17T08:11:11.8700574Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-07-17T08:11:11.8703654Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-07-17T08:11:11.8706777Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-07-17T08:11:11.8709851Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-07-17T08:11:11.8712842Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-07-17T08:11:11.8715786Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-07-17T08:11:11.8719016Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-07-17T08:11:11.8722424Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-07-17T08:11:11.8726637Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-07-17T08:11:11.8729795Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-07-17T08:11:11.8733001Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-07-17T08:11:11.8736202Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-07-17T08:11:11.8739462Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-07-17T08:11:11.8742437Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-07-17T08:11:11.8745325Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-07-17T08:11:11.8748551Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-07-17T08:11:11.8751127Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-07-17T08:11:11.8754217Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-07-17T08:11:11.8757058Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-07-17T08:11:11.8759951Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-07-17T08:11:11.8763377Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-07-17T08:11:11.8766433Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-07-17T08:11:11.8769385Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-07-17T08:11:11.8772399Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-07-17T08:11:11.8775590Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-07-17T08:11:11.8778785Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-07-17T08:11:11.8781798Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-07-17T08:11:11.8785698Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-07-17T08:11:11.8789170Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-07-17T08:11:11.8792388Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-07-17T08:11:11.8795984Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-07-17T08:11:11.8799550Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-07-17T08:11:11.8802862Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-07-17T08:11:11.8806142Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-07-17T08:11:11.8809335Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-07-17T08:11:11.8812606Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-07-17T08:11:11.8815663Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-07-17T08:11:11.8819704Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-07-17T08:11:11.8823656Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-07-17T08:11:11.8827590Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-07-17T08:11:11.8831350Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-07-17T08:11:11.8834439Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-07-17T08:11:11.8837560Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-07-17T08:11:11.8840410Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-07-17T08:11:11.8843470Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-07-17T08:11:11.8847890Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-07-17T08:11:11.8850104Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-07-17T08:11:11.8853957Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-07-17T08:11:11.8856625Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-07-17T08:11:11.8859729Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-07-17T08:11:11.8862772Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-07-17T08:11:11.8865784Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-07-17T08:11:11.8868933Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-07-17T08:11:11.8871804Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-07-17T08:11:11.8874703Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-07-17T08:11:11.8877724Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-07-17T08:11:11.8882673Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-07-17T08:11:11.8884874Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-07-17T08:11:11.8888906Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-07-17T08:11:11.8891900Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-07-17T08:11:11.8895604Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-07-17T08:11:11.8899949Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-07-17T08:11:11.8903097Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-07-17T08:11:11.8906684Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-07-17T08:11:11.8909697Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-07-17T08:11:11.8914247Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-07-17T08:11:11.8918006Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-07-17T08:11:11.8921328Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-07-17T08:11:11.8932307Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-07-17T08:11:11.8936662Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-07-17T08:11:11.8939952Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-07-17T08:11:11.8943746Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-07-17T08:11:11.8948402Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-07-17T08:11:11.8952020Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-07-17T08:11:11.8954939Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-07-17T08:11:11.8958580Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-07-17T08:11:11.8963153Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-07-17T08:11:11.8965911Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-07-17T08:11:11.8970733Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-07-17T08:11:11.8987530Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-07-17T08:11:11.8993072Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-07-17T08:11:11.8995735Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-07-17T08:11:11.8999409Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-07-17T08:11:11.9002823Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-07-17T08:11:11.9006897Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-07-17T08:11:11.9011531Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-07-17T08:11:11.9017159Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-07-17T08:11:11.9021015Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-07-17T08:11:11.9024364Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-07-17T08:11:11.9027501Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-07-17T08:11:11.9030798Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-07-17T08:11:11.9033488Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-07-17T08:11:11.9042468Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-07-17T08:11:11.9048140Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-07-17T08:11:11.9050608Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-07-17T08:11:11.9053992Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-07-17T08:11:11.9057210Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-07-17T08:11:11.9060280Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-07-17T08:11:11.9063152Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-07-17T08:11:11.9067408Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-07-17T08:11:11.9071707Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-07-17T08:11:11.9076011Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-07-17T08:11:11.9081334Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-07-17T08:11:11.9085426Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-07-17T08:11:11.9088914Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-07-17T08:11:11.9091783Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-07-17T08:11:11.9095124Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-07-17T08:11:11.9100633Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-07-17T08:11:11.9103883Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-07-17T08:11:11.9106779Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-07-17T08:11:11.9110441Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-07-17T08:11:11.9115723Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-07-17T08:11:11.9125488Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-07-17T08:11:11.9130124Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-07-17T08:11:11.9133362Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-07-17T08:11:11.9136198Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-07-17T08:11:11.9139212Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-07-17T08:11:11.9142272Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-07-17T08:11:11.9145277Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-07-17T08:11:11.9148950Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-07-17T08:11:11.9152100Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-07-17T08:11:11.9155043Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-07-17T08:11:11.9157986Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-07-17T08:11:11.9162789Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-07-17T08:11:11.9174791Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-07-17T08:11:11.9179563Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-07-17T08:11:11.9182001Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-07-17T08:11:11.9187319Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-07-17T08:11:11.9191029Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-07-17T08:11:11.9204251Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-07-17T08:11:11.9208507Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-07-17T08:11:11.9214281Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-07-17T08:11:11.9218336Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-07-17T08:11:11.9222414Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-07-17T08:11:11.9226935Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-07-17T08:11:11.9231462Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-07-17T08:11:11.9233687Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-07-17T08:11:11.9238617Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-07-17T08:11:11.9244211Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-07-17T08:11:11.9248704Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-07-17T08:11:11.9252030Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-07-17T08:11:11.9255264Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-07-17T08:11:11.9258784Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-07-17T08:11:11.9262145Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-07-17T08:11:11.9265889Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-07-17T08:11:11.9268934Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-07-17T08:11:11.9272205Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-07-17T08:11:11.9275810Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-07-17T08:11:11.9296528Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-07-17T08:11:11.9301917Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-07-17T08:11:11.9306447Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-07-17T08:11:11.9311635Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-07-17T08:11:11.9317606Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-07-17T08:11:11.9319778Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-07-17T08:11:11.9346258Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-07-17T08:11:11.9346567Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-07-17T08:11:11.9346872Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-07-17T08:11:11.9347082Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-07-17T08:11:11.9347260Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-07-17T08:11:11.9347433Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-07-17T08:11:11.9352056Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-07-17T08:11:11.9354462Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-07-17T08:11:11.9358688Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-07-17T08:11:11.9364276Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-07-17T08:11:11.9367494Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-07-17T08:11:11.9370977Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-07-17T08:11:11.9375644Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-07-17T08:11:11.9379530Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-07-17T08:11:11.9384649Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-07-17T08:11:11.9388282Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-07-17T08:11:11.9394262Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-07-17T08:11:11.9398472Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-07-17T08:11:11.9401645Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-07-17T08:11:11.9405153Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-07-17T08:11:11.9408751Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-07-17T08:11:11.9412912Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-07-17T08:11:11.9417146Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-07-17T08:11:11.9421862Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-07-17T08:11:11.9425026Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-07-17T08:11:11.9432822Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-07-17T08:11:11.9436744Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-07-17T08:11:11.9440069Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-07-17T08:11:11.9443679Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-07-17T08:11:11.9450408Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-07-17T08:11:11.9453987Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-07-17T08:11:11.9457231Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-07-17T08:11:11.9463554Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-07-17T08:11:11.9467705Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-07-17T08:11:11.9471203Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-07-17T08:11:11.9480339Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-07-17T08:11:11.9484645Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-07-17T08:11:11.9487241Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-07-17T08:11:11.9493622Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-07-17T08:11:11.9498595Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-07-17T08:11:11.9505477Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-07-17T08:11:11.9514057Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-07-17T08:11:11.9519271Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-07-17T08:11:11.9522544Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-07-17T08:11:11.9526396Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-07-17T08:11:11.9529726Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-07-17T08:11:11.9533147Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-07-17T08:11:11.9537760Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-07-17T08:11:11.9540807Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-07-17T08:11:11.9544132Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-07-17T08:11:11.9547136Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-07-17T08:11:11.9550031Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-07-17T08:11:11.9553212Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-07-17T08:11:11.9556554Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-07-17T08:11:11.9559613Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-07-17T08:11:11.9562518Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-07-17T08:11:11.9566248Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-07-17T08:11:11.9569634Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-07-17T08:11:11.9572853Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-07-17T08:11:11.9577516Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-07-17T08:11:11.9581176Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-07-17T08:11:11.9585638Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-07-17T08:11:11.9589253Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-07-17T08:11:11.9594161Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-07-17T08:11:11.9597376Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-07-17T08:11:11.9600605Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-07-17T08:11:11.9603961Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-07-17T08:11:11.9608346Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-07-17T08:11:11.9612131Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-07-17T08:11:11.9617084Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-07-17T08:11:11.9621182Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-07-17T08:11:11.9624422Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-07-17T08:11:11.9627575Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-07-17T08:11:11.9630787Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-07-17T08:11:11.9637242Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-07-17T08:11:11.9643735Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-07-17T08:11:11.9647460Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-07-17T08:11:11.9650853Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-07-17T08:11:11.9654258Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-07-17T08:11:11.9659175Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-07-17T08:11:11.9665005Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-07-17T08:11:11.9668662Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-07-17T08:11:11.9672441Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-07-17T08:11:11.9675644Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-07-17T08:11:11.9679119Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-07-17T08:11:11.9682348Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-07-17T08:11:11.9687049Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-07-17T08:11:11.9690420Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-07-17T08:11:11.9694319Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-07-17T08:11:11.9697922Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-07-17T08:11:11.9733685Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-07-17T08:11:11.9746548Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-07-17T08:11:11.9750847Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-07-17T08:11:11.9754593Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-07-17T08:11:11.9757733Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-07-17T08:11:11.9761743Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-07-17T08:11:11.9765142Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-07-17T08:11:11.9768730Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-07-17T08:11:11.9772927Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-07-17T08:11:11.9775225Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-07-17T08:11:11.9778866Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-07-17T08:11:11.9781538Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-07-17T08:11:11.9785633Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-07-17T08:11:11.9790290Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-07-17T08:11:11.9792751Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-07-17T08:11:11.9796917Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-07-17T08:11:11.9800140Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-07-17T08:11:11.9804095Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-07-17T08:11:11.9815314Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-07-17T08:11:11.9816424Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-07-17T08:11:11.9819592Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-07-17T08:11:11.9823205Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-07-17T08:11:11.9827268Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-07-17T08:11:11.9830989Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-07-17T08:11:11.9834500Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-07-17T08:11:11.9838865Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-07-17T08:11:11.9841282Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-07-17T08:11:11.9844830Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-07-17T08:11:11.9848240Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-07-17T08:11:11.9856627Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-07-17T08:11:11.9861695Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-07-17T08:11:11.9865343Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-07-17T08:11:11.9869523Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-07-17T08:11:11.9873471Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-07-17T08:11:11.9876121Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-07-17T08:11:11.9879960Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-07-17T08:11:11.9883240Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-07-17T08:11:11.9887330Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-07-17T08:11:11.9892076Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-07-17T08:11:11.9897865Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-07-17T08:11:11.9902254Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-07-17T08:11:11.9904814Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-07-17T08:11:11.9908906Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-07-17T08:11:11.9911957Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-07-17T08:11:11.9915340Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-07-17T08:11:11.9919575Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-07-17T08:11:11.9922445Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-07-17T08:11:11.9925438Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-07-17T08:11:11.9928721Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-07-17T08:11:11.9932898Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-07-17T08:11:11.9937223Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-07-17T08:11:11.9940970Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-07-17T08:11:11.9945895Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-07-17T08:11:11.9949471Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-07-17T08:11:11.9953921Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-07-17T08:11:11.9957147Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-07-17T08:11:11.9961095Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-07-17T08:11:11.9966823Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-07-17T08:11:11.9971184Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-07-17T08:11:11.9976872Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-07-17T08:11:11.9982818Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-07-17T08:11:11.9986372Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-07-17T08:11:11.9990417Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-07-17T08:11:11.9994039Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-07-17T08:11:11.9997105Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-07-17T08:11:12.0000708Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-07-17T08:11:12.0007756Z adding 'torch/include/torch/csrc/stable/library.h' 2025-07-17T08:11:12.0012108Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-07-17T08:11:12.0015438Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-07-17T08:11:12.0030725Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-07-17T08:11:12.0030872Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-07-17T08:11:12.0031055Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-07-17T08:11:12.0032018Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-07-17T08:11:12.0036796Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-07-17T08:11:12.0038952Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-07-17T08:11:12.0062456Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-07-17T08:11:12.0068211Z adding 'torch/include/torch/csrc/utils/init.h' 2025-07-17T08:11:12.0071199Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-07-17T08:11:12.0074042Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-07-17T08:11:12.0076979Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-07-17T08:11:12.0080259Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-07-17T08:11:12.0083452Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-07-17T08:11:12.0088897Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-07-17T08:11:12.0092452Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-07-17T08:11:12.0095333Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-07-17T08:11:12.0109103Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-07-17T08:11:12.0113517Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-07-17T08:11:12.0116515Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-07-17T08:11:12.0120435Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-07-17T08:11:12.0124011Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-07-17T08:11:12.0127917Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-07-17T08:11:12.0132079Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-07-17T08:11:12.0135023Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-07-17T08:11:12.0139237Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-07-17T08:11:12.0142622Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-07-17T08:11:12.0145601Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-07-17T08:11:12.0158552Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-07-17T08:11:12.0163227Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-07-17T08:11:12.0166554Z adding 'torch/include/torch/csrc/utils/six.h' 2025-07-17T08:11:12.0169898Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-07-17T08:11:12.0172915Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-07-17T08:11:12.0175898Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-07-17T08:11:12.0179328Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-07-17T08:11:12.0182198Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-07-17T08:11:12.0185013Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-07-17T08:11:12.0187888Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-07-17T08:11:12.0191255Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-07-17T08:11:12.0194426Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-07-17T08:11:12.0197263Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-07-17T08:11:12.0200203Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-07-17T08:11:12.0204647Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-07-17T08:11:12.0209454Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-07-17T08:11:12.0213039Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-07-17T08:11:12.0216670Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-07-17T08:11:12.0219599Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-07-17T08:11:12.0223406Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-07-17T08:11:12.0226247Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-07-17T08:11:12.0229149Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-07-17T08:11:12.0234827Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-07-17T08:11:12.0242692Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-07-17T08:11:12.0246271Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-07-17T08:11:12.0252676Z adding 'torch/jit/__init__.py' 2025-07-17T08:11:12.0256780Z adding 'torch/jit/_async.py' 2025-07-17T08:11:12.0259876Z adding 'torch/jit/_await.py' 2025-07-17T08:11:12.0264276Z adding 'torch/jit/_builtins.py' 2025-07-17T08:11:12.0269509Z adding 'torch/jit/_check.py' 2025-07-17T08:11:12.0274228Z adding 'torch/jit/_dataclass_impls.py' 2025-07-17T08:11:12.0277378Z adding 'torch/jit/_decomposition_utils.py' 2025-07-17T08:11:12.0281267Z adding 'torch/jit/_decompositions.py' 2025-07-17T08:11:12.0286451Z adding 'torch/jit/_freeze.py' 2025-07-17T08:11:12.0291164Z adding 'torch/jit/_fuser.py' 2025-07-17T08:11:12.0294433Z adding 'torch/jit/_ir_utils.py' 2025-07-17T08:11:12.0297251Z adding 'torch/jit/_logging.py' 2025-07-17T08:11:12.0302615Z adding 'torch/jit/_monkeytype_config.py' 2025-07-17T08:11:12.0305949Z adding 'torch/jit/_pickle.py' 2025-07-17T08:11:12.0322247Z adding 'torch/jit/_recursive.py' 2025-07-17T08:11:12.0348394Z adding 'torch/jit/_script.py' 2025-07-17T08:11:12.0354626Z adding 'torch/jit/_script.pyi' 2025-07-17T08:11:12.0359907Z adding 'torch/jit/_serialization.py' 2025-07-17T08:11:12.0375571Z adding 'torch/jit/_shape_functions.py' 2025-07-17T08:11:12.0380365Z adding 'torch/jit/_state.py' 2025-07-17T08:11:12.0399643Z adding 'torch/jit/_trace.py' 2025-07-17T08:11:12.0408813Z adding 'torch/jit/annotations.py' 2025-07-17T08:11:12.0425121Z adding 'torch/jit/frontend.py' 2025-07-17T08:11:12.0429317Z adding 'torch/jit/generate_bytecode.py' 2025-07-17T08:11:12.0432667Z adding 'torch/jit/quantized.py' 2025-07-17T08:11:12.0437909Z adding 'torch/jit/supported_ops.py' 2025-07-17T08:11:12.0441609Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-07-17T08:11:12.0445301Z adding 'torch/jit/_passes/__init__.py' 2025-07-17T08:11:12.0448542Z adding 'torch/jit/_passes/_property_propagation.py' 2025-07-17T08:11:12.0453679Z adding 'torch/jit/mobile/__init__.py' 2025-07-17T08:11:12.5852842Z adding 'torch/lib/XNNPACK.lib' 2025-07-17T08:11:12.6172260Z adding 'torch/lib/_C.lib' 2025-07-17T08:11:12.6284457Z adding 'torch/lib/aoti_custom_ops.dll' 2025-07-17T08:11:12.6298162Z adding 'torch/lib/aoti_custom_ops.lib' 2025-07-17T08:11:12.6522430Z adding 'torch/lib/asmjit.dll' 2025-07-17T08:11:12.6562369Z adding 'torch/lib/asmjit.lib' 2025-07-17T08:11:12.6671966Z adding 'torch/lib/backend_with_compiler.dll' 2025-07-17T08:11:12.6685410Z adding 'torch/lib/backend_with_compiler.lib' 2025-07-17T08:11:12.7150899Z adding 'torch/lib/c10.dll' 2025-07-17T08:11:12.7334922Z adding 'torch/lib/c10.lib' 2025-07-17T08:11:12.7576237Z adding 'torch/lib/c10_cuda.dll' 2025-07-17T08:11:12.7598998Z adding 'torch/lib/c10_cuda.lib' 2025-07-17T08:11:12.7610079Z adding 'torch/lib/caffe2_nvrtc.dll' 2025-07-17T08:11:12.7614162Z adding 'torch/lib/caffe2_nvrtc.lib' 2025-07-17T08:11:12.7837583Z adding 'torch/lib/cpuinfo.lib' 2025-07-17T08:12:29.6893303Z adding 'torch/lib/dnnl.lib' 2025-07-17T08:12:35.1493289Z adding 'torch/lib/fbgemm.dll' 2025-07-17T08:12:35.1808982Z adding 'torch/lib/fbgemm.lib' 2025-07-17T08:12:35.3185396Z adding 'torch/lib/fmt.lib' 2025-07-17T08:12:35.3350889Z adding 'torch/lib/jitbackend_test.dll' 2025-07-17T08:12:35.3363297Z adding 'torch/lib/jitbackend_test.lib' 2025-07-17T08:12:38.7693494Z adding 'torch/lib/kineto.lib' 2025-07-17T08:12:39.0129303Z adding 'torch/lib/libittnotify.lib' 2025-07-17T08:12:39.7053576Z adding 'torch/lib/libprotobuf-lite.lib' 2025-07-17T08:12:43.6335225Z adding 'torch/lib/libprotobuf.lib' 2025-07-17T08:12:49.2868476Z adding 'torch/lib/libprotoc.lib' 2025-07-17T08:12:50.2193139Z adding 'torch/lib/microkernels-prod.lib' 2025-07-17T08:12:50.2975607Z adding 'torch/lib/pthreadpool.lib' 2025-07-17T08:12:50.3003602Z adding 'torch/lib/shm.dll' 2025-07-17T08:12:50.3012727Z adding 'torch/lib/shm.lib' 2025-07-17T08:12:51.4636784Z adding 'torch/lib/sleef.lib' 2025-07-17T08:12:51.5264440Z adding 'torch/lib/torch.dll' 2025-07-17T08:12:51.5268659Z adding 'torch/lib/torch.lib' 2025-07-17T08:13:02.3172074Z adding 'torch/lib/torch_cpu.dll' 2025-07-17T08:13:03.3774660Z adding 'torch/lib/torch_cpu.lib' 2025-07-17T08:13:17.9231234Z adding 'torch/lib/torch_cuda.dll' 2025-07-17T08:13:18.5080560Z adding 'torch/lib/torch_cuda.lib' 2025-07-17T08:13:18.5128739Z adding 'torch/lib/torch_global_deps.dll' 2025-07-17T08:13:19.2391740Z adding 'torch/lib/torch_python.dll' 2025-07-17T08:13:19.2823745Z adding 'torch/lib/torch_python.lib' 2025-07-17T08:13:19.3047609Z adding 'torch/lib/torchbind_test.dll' 2025-07-17T08:13:19.3071385Z adding 'torch/lib/torchbind_test.lib' 2025-07-17T08:13:19.3076880Z adding 'torch/lib/libshm/alloc_info.h' 2025-07-17T08:13:19.3079886Z adding 'torch/lib/libshm/err.h' 2025-07-17T08:13:19.3082993Z adding 'torch/lib/libshm/libshm.h' 2025-07-17T08:13:19.3086904Z adding 'torch/lib/libshm/socket.h' 2025-07-17T08:13:19.3091102Z adding 'torch/lib/libshm_windows/libshm.h' 2025-07-17T08:13:19.3127267Z adding 'torch/linalg/__init__.py' 2025-07-17T08:13:19.3135087Z adding 'torch/masked/__init__.py' 2025-07-17T08:13:19.3142338Z adding 'torch/masked/_docs.py' 2025-07-17T08:13:19.3164191Z adding 'torch/masked/_ops.py' 2025-07-17T08:13:19.3169813Z adding 'torch/masked/maskedtensor/__init__.py' 2025-07-17T08:13:19.3175957Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-07-17T08:13:19.3180578Z adding 'torch/masked/maskedtensor/binary.py' 2025-07-17T08:13:19.3186891Z adding 'torch/masked/maskedtensor/core.py' 2025-07-17T08:13:19.3190360Z adding 'torch/masked/maskedtensor/creation.py' 2025-07-17T08:13:19.3193507Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-07-17T08:13:19.3197652Z adding 'torch/masked/maskedtensor/reductions.py' 2025-07-17T08:13:19.3201764Z adding 'torch/masked/maskedtensor/unary.py' 2025-07-17T08:13:19.3205755Z adding 'torch/monitor/__init__.py' 2025-07-17T08:13:19.3211100Z adding 'torch/mps/__init__.py' 2025-07-17T08:13:19.3214540Z adding 'torch/mps/event.py' 2025-07-17T08:13:19.3218144Z adding 'torch/mps/profiler.py' 2025-07-17T08:13:19.3225189Z adding 'torch/mtia/__init__.py' 2025-07-17T08:13:19.3228755Z adding 'torch/mtia/_utils.py' 2025-07-17T08:13:19.3231978Z adding 'torch/mtia/memory.py' 2025-07-17T08:13:19.3236748Z adding 'torch/multiprocessing/__init__.py' 2025-07-17T08:13:19.3239987Z adding 'torch/multiprocessing/_atfork.py' 2025-07-17T08:13:19.3243331Z adding 'torch/multiprocessing/pool.py' 2025-07-17T08:13:19.3246603Z adding 'torch/multiprocessing/queue.py' 2025-07-17T08:13:19.3255787Z adding 'torch/multiprocessing/reductions.py' 2025-07-17T08:13:19.3262712Z adding 'torch/multiprocessing/spawn.py' 2025-07-17T08:13:19.3272542Z adding 'torch/nested/__init__.py' 2025-07-17T08:13:19.3276665Z adding 'torch/nested/_internal/__init__.py' 2025-07-17T08:13:19.3280109Z adding 'torch/nested/_internal/nested_int.py' 2025-07-17T08:13:19.3289729Z adding 'torch/nested/_internal/nested_tensor.py' 2025-07-17T08:13:19.3319299Z adding 'torch/nested/_internal/ops.py' 2025-07-17T08:13:19.3333312Z adding 'torch/nested/_internal/sdpa.py' 2025-07-17T08:13:19.3338680Z adding 'torch/nn/__init__.py' 2025-07-17T08:13:19.3341916Z adding 'torch/nn/_reduction.py' 2025-07-17T08:13:19.3345313Z adding 'torch/nn/common_types.py' 2025-07-17T08:13:19.3349024Z adding 'torch/nn/cpp.py' 2025-07-17T08:13:19.3418816Z adding 'torch/nn/functional.py' 2025-07-17T08:13:19.3431374Z adding 'torch/nn/functional.pyi' 2025-07-17T08:13:19.3435951Z adding 'torch/nn/grad.py' 2025-07-17T08:13:19.3444543Z adding 'torch/nn/init.py' 2025-07-17T08:13:19.3451911Z adding 'torch/nn/parameter.py' 2025-07-17T08:13:19.3454291Z adding 'torch/nn/parameter.pyi' 2025-07-17T08:13:19.3459602Z adding 'torch/nn/attention/__init__.py' 2025-07-17T08:13:19.3463254Z adding 'torch/nn/attention/_utils.py' 2025-07-17T08:13:19.3494469Z adding 'torch/nn/attention/bias.py' 2025-07-17T08:13:19.3494815Z adding 'torch/nn/attention/flex_attention.py' 2025-07-17T08:13:19.3500492Z adding 'torch/nn/attention/experimental/__init__.py' 2025-07-17T08:13:19.3506554Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-07-17T08:13:19.3509055Z adding 'torch/nn/backends/__init__.py' 2025-07-17T08:13:19.3512159Z adding 'torch/nn/backends/thnn.py' 2025-07-17T08:13:19.3515979Z adding 'torch/nn/intrinsic/__init__.py' 2025-07-17T08:13:19.3519734Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-07-17T08:13:19.3522717Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-07-17T08:13:19.3526330Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-07-17T08:13:19.3530489Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-07-17T08:13:19.3533609Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-17T08:13:19.3536640Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-17T08:13:19.3539573Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-17T08:13:19.3543277Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-07-17T08:13:19.3547154Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-17T08:13:19.3550832Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-17T08:13:19.3553712Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-17T08:13:19.3557286Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-07-17T08:13:19.3560315Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-17T08:13:19.3563111Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-17T08:13:19.3565717Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-17T08:13:19.3571312Z adding 'torch/nn/modules/__init__.py' 2025-07-17T08:13:19.3584436Z adding 'torch/nn/modules/_functions.py' 2025-07-17T08:13:19.3596317Z adding 'torch/nn/modules/activation.py' 2025-07-17T08:13:19.3603645Z adding 'torch/nn/modules/adaptive.py' 2025-07-17T08:13:19.3614092Z adding 'torch/nn/modules/batchnorm.py' 2025-07-17T08:13:19.3618319Z adding 'torch/nn/modules/channelshuffle.py' 2025-07-17T08:13:19.3629922Z adding 'torch/nn/modules/container.py' 2025-07-17T08:13:19.3646587Z adding 'torch/nn/modules/conv.py' 2025-07-17T08:13:19.3652224Z adding 'torch/nn/modules/distance.py' 2025-07-17T08:13:19.3656791Z adding 'torch/nn/modules/dropout.py' 2025-07-17T08:13:19.3661094Z adding 'torch/nn/modules/flatten.py' 2025-07-17T08:13:19.3666677Z adding 'torch/nn/modules/fold.py' 2025-07-17T08:13:19.3672597Z adding 'torch/nn/modules/instancenorm.py' 2025-07-17T08:13:19.3678955Z adding 'torch/nn/modules/lazy.py' 2025-07-17T08:13:19.3684338Z adding 'torch/nn/modules/linear.py' 2025-07-17T08:13:19.3709697Z adding 'torch/nn/modules/loss.py' 2025-07-17T08:13:19.3751913Z adding 'torch/nn/modules/module.py' 2025-07-17T08:13:19.3760404Z adding 'torch/nn/modules/normalization.py' 2025-07-17T08:13:19.3766869Z adding 'torch/nn/modules/padding.py' 2025-07-17T08:13:19.3771412Z adding 'torch/nn/modules/pixelshuffle.py' 2025-07-17T08:13:19.3784001Z adding 'torch/nn/modules/pooling.py' 2025-07-17T08:13:19.3803264Z adding 'torch/nn/modules/rnn.py' 2025-07-17T08:13:19.3812485Z adding 'torch/nn/modules/sparse.py' 2025-07-17T08:13:19.3826725Z adding 'torch/nn/modules/transformer.py' 2025-07-17T08:13:19.3833078Z adding 'torch/nn/modules/upsampling.py' 2025-07-17T08:13:19.3837006Z adding 'torch/nn/modules/utils.py' 2025-07-17T08:13:19.3840918Z adding 'torch/nn/parallel/__init__.py' 2025-07-17T08:13:19.3845165Z adding 'torch/nn/parallel/_functions.py' 2025-07-17T08:13:19.3850684Z adding 'torch/nn/parallel/comm.py' 2025-07-17T08:13:19.3856633Z adding 'torch/nn/parallel/data_parallel.py' 2025-07-17T08:13:19.3898829Z adding 'torch/nn/parallel/distributed.py' 2025-07-17T08:13:19.3905576Z adding 'torch/nn/parallel/parallel_apply.py' 2025-07-17T08:13:19.3910215Z adding 'torch/nn/parallel/replicate.py' 2025-07-17T08:13:19.3914644Z adding 'torch/nn/parallel/scatter_gather.py' 2025-07-17T08:13:19.3918580Z adding 'torch/nn/qat/__init__.py' 2025-07-17T08:13:19.3922189Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-07-17T08:13:19.3925645Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-07-17T08:13:19.3929082Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-07-17T08:13:19.3933565Z adding 'torch/nn/qat/modules/__init__.py' 2025-07-17T08:13:19.3935788Z adding 'torch/nn/qat/modules/conv.py' 2025-07-17T08:13:19.3939307Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-07-17T08:13:19.3941750Z adding 'torch/nn/qat/modules/linear.py' 2025-07-17T08:13:19.3945474Z adding 'torch/nn/quantizable/__init__.py' 2025-07-17T08:13:19.3949001Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-07-17T08:13:19.3951936Z adding 'torch/nn/quantizable/modules/activation.py' 2025-07-17T08:13:19.3954799Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-07-17T08:13:19.3958817Z adding 'torch/nn/quantized/__init__.py' 2025-07-17T08:13:19.3962475Z adding 'torch/nn/quantized/functional.py' 2025-07-17T08:13:19.3965254Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-07-17T08:13:19.4000330Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-07-17T08:13:19.4000787Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-07-17T08:13:19.4001200Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-07-17T08:13:19.4006983Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-07-17T08:13:19.4007467Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-07-17T08:13:19.4007888Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-07-17T08:13:19.4008255Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-07-17T08:13:19.4008630Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-07-17T08:13:19.4009013Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-07-17T08:13:19.4009491Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-07-17T08:13:19.4009877Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-07-17T08:13:19.4010230Z adding 'torch/nn/quantized/modules/__init__.py' 2025-07-17T08:13:19.4012599Z adding 'torch/nn/quantized/modules/activation.py' 2025-07-17T08:13:19.4014936Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-07-17T08:13:19.4018486Z adding 'torch/nn/quantized/modules/conv.py' 2025-07-17T08:13:19.4021076Z adding 'torch/nn/quantized/modules/dropout.py' 2025-07-17T08:13:19.4024572Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-07-17T08:13:19.4027305Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-07-17T08:13:19.4030297Z adding 'torch/nn/quantized/modules/linear.py' 2025-07-17T08:13:19.4033322Z adding 'torch/nn/quantized/modules/normalization.py' 2025-07-17T08:13:19.4036432Z adding 'torch/nn/quantized/modules/rnn.py' 2025-07-17T08:13:19.4039472Z adding 'torch/nn/quantized/modules/utils.py' 2025-07-17T08:13:19.4043439Z adding 'torch/nn/utils/__init__.py' 2025-07-17T08:13:19.4046750Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-07-17T08:13:19.4052580Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-07-17T08:13:19.4057303Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-07-17T08:13:19.4062513Z adding 'torch/nn/utils/clip_grad.py' 2025-07-17T08:13:19.4066559Z adding 'torch/nn/utils/convert_parameters.py' 2025-07-17T08:13:19.4070820Z adding 'torch/nn/utils/fusion.py' 2025-07-17T08:13:19.4074525Z adding 'torch/nn/utils/init.py' 2025-07-17T08:13:19.4078816Z adding 'torch/nn/utils/memory_format.py' 2025-07-17T08:13:19.4089512Z adding 'torch/nn/utils/parametrizations.py' 2025-07-17T08:13:19.4103146Z adding 'torch/nn/utils/parametrize.py' 2025-07-17T08:13:19.4121327Z adding 'torch/nn/utils/prune.py' 2025-07-17T08:13:19.4131416Z adding 'torch/nn/utils/rnn.py' 2025-07-17T08:13:19.4139355Z adding 'torch/nn/utils/spectral_norm.py' 2025-07-17T08:13:19.4145488Z adding 'torch/nn/utils/stateless.py' 2025-07-17T08:13:19.4149733Z adding 'torch/nn/utils/weight_norm.py' 2025-07-17T08:13:19.4154098Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-07-17T08:13:19.4157945Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-07-17T08:13:19.4163609Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-07-17T08:13:19.4168645Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-07-17T08:13:19.4172103Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-07-17T08:13:19.4177198Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-07-17T08:13:19.4181190Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-07-17T08:13:19.4185892Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-07-17T08:13:19.4188848Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-07-17T08:13:19.4192516Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-07-17T08:13:19.4201429Z adding 'torch/onnx/__init__.py' 2025-07-17T08:13:19.4204973Z adding 'torch/onnx/_constants.py' 2025-07-17T08:13:19.4209209Z adding 'torch/onnx/_experimental.py' 2025-07-17T08:13:19.4216118Z adding 'torch/onnx/_flags.py' 2025-07-17T08:13:19.4226782Z adding 'torch/onnx/_globals.py' 2025-07-17T08:13:19.4230378Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-07-17T08:13:19.4236298Z adding 'torch/onnx/_type_utils.py' 2025-07-17T08:13:19.4240500Z adding 'torch/onnx/errors.py' 2025-07-17T08:13:19.4243748Z adding 'torch/onnx/operators.py' 2025-07-17T08:13:19.4272095Z adding 'torch/onnx/symbolic_helper.py' 2025-07-17T08:13:19.4283704Z adding 'torch/onnx/symbolic_opset10.py' 2025-07-17T08:13:19.4301225Z adding 'torch/onnx/symbolic_opset11.py' 2025-07-17T08:13:19.4308574Z adding 'torch/onnx/symbolic_opset12.py' 2025-07-17T08:13:19.4321287Z adding 'torch/onnx/symbolic_opset13.py' 2025-07-17T08:13:19.4327584Z adding 'torch/onnx/symbolic_opset14.py' 2025-07-17T08:13:19.4331449Z adding 'torch/onnx/symbolic_opset15.py' 2025-07-17T08:13:19.4336117Z adding 'torch/onnx/symbolic_opset16.py' 2025-07-17T08:13:19.4341373Z adding 'torch/onnx/symbolic_opset17.py' 2025-07-17T08:13:19.4347065Z adding 'torch/onnx/symbolic_opset18.py' 2025-07-17T08:13:19.4349412Z adding 'torch/onnx/symbolic_opset19.py' 2025-07-17T08:13:19.4352978Z adding 'torch/onnx/symbolic_opset20.py' 2025-07-17T08:13:19.4356365Z adding 'torch/onnx/symbolic_opset7.py' 2025-07-17T08:13:19.4362394Z adding 'torch/onnx/symbolic_opset8.py' 2025-07-17T08:13:19.4431501Z adding 'torch/onnx/symbolic_opset9.py' 2025-07-17T08:13:19.4467100Z adding 'torch/onnx/utils.py' 2025-07-17T08:13:19.4492221Z adding 'torch/onnx/verification.py' 2025-07-17T08:13:19.4497543Z adding 'torch/onnx/_internal/__init__.py' 2025-07-17T08:13:19.4501716Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-07-17T08:13:19.4505020Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-07-17T08:13:19.4511209Z adding 'torch/onnx/_internal/jit_utils.py' 2025-07-17T08:13:19.4516685Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-07-17T08:13:19.4522466Z adding 'torch/onnx/_internal/registration.py' 2025-07-17T08:13:19.4526653Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-07-17T08:13:19.4531899Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-07-17T08:13:19.4543404Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-07-17T08:13:19.4549014Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-07-17T08:13:19.4553829Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-07-17T08:13:19.4557000Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-07-17T08:13:19.4581014Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-07-17T08:13:19.4586182Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-07-17T08:13:19.4592430Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-07-17T08:13:19.4598810Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-07-17T08:13:19.4602120Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-07-17T08:13:19.4605129Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-07-17T08:13:19.4608453Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-07-17T08:13:19.4612665Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-07-17T08:13:19.4616239Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-07-17T08:13:19.4623539Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-07-17T08:13:19.4629670Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-07-17T08:13:19.4634442Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-07-17T08:13:19.4642679Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-07-17T08:13:19.4646434Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-07-17T08:13:19.4650357Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-07-17T08:13:19.4653689Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-07-17T08:13:19.4659444Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-07-17T08:13:19.4663407Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-07-17T08:13:19.4666825Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-07-17T08:13:19.4670403Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-07-17T08:13:19.4674174Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-07-17T08:13:19.4677890Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-07-17T08:13:19.4681734Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-07-17T08:13:19.4687232Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-07-17T08:13:19.4691679Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-07-17T08:13:19.4695096Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-07-17T08:13:19.4698796Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-07-17T08:13:19.4704090Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-07-17T08:13:19.4708732Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-07-17T08:13:19.4714941Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-07-17T08:13:19.4719582Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-07-17T08:13:19.4723341Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-07-17T08:13:19.4727550Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-07-17T08:13:19.4743666Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-07-17T08:13:19.4753658Z adding 'torch/onnx/ops/__init__.py' 2025-07-17T08:13:19.4757336Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-07-17T08:13:19.4763546Z adding 'torch/onnx/ops/_impl.py' 2025-07-17T08:13:19.4770212Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-07-17T08:13:19.4773704Z adding 'torch/optim/__init__.py' 2025-07-17T08:13:19.4783358Z adding 'torch/optim/_adafactor.py' 2025-07-17T08:13:19.4787665Z adding 'torch/optim/_functional.py' 2025-07-17T08:13:19.4794348Z adding 'torch/optim/adadelta.py' 2025-07-17T08:13:19.4802549Z adding 'torch/optim/adagrad.py' 2025-07-17T08:13:19.4816273Z adding 'torch/optim/adam.py' 2025-07-17T08:13:19.4823426Z adding 'torch/optim/adamax.py' 2025-07-17T08:13:19.4828539Z adding 'torch/optim/adamw.py' 2025-07-17T08:13:19.4835373Z adding 'torch/optim/asgd.py' 2025-07-17T08:13:19.4843177Z adding 'torch/optim/lbfgs.py' 2025-07-17T08:13:19.4868274Z adding 'torch/optim/lr_scheduler.py' 2025-07-17T08:13:19.4878073Z adding 'torch/optim/nadam.py' 2025-07-17T08:13:19.4896924Z adding 'torch/optim/optimizer.py' 2025-07-17T08:13:19.4906064Z adding 'torch/optim/radam.py' 2025-07-17T08:13:19.4914177Z adding 'torch/optim/rmsprop.py' 2025-07-17T08:13:19.4921592Z adding 'torch/optim/rprop.py' 2025-07-17T08:13:19.4929537Z adding 'torch/optim/sgd.py' 2025-07-17T08:13:19.4935199Z adding 'torch/optim/sparse_adam.py' 2025-07-17T08:13:19.4943203Z adding 'torch/optim/swa_utils.py' 2025-07-17T08:13:19.4947967Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-07-17T08:13:19.4950611Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-07-17T08:13:19.4954405Z adding 'torch/package/__init__.py' 2025-07-17T08:13:19.4958527Z adding 'torch/package/_digraph.py' 2025-07-17T08:13:19.4962282Z adding 'torch/package/_directory_reader.py' 2025-07-17T08:13:19.4966103Z adding 'torch/package/_importlib.py' 2025-07-17T08:13:19.4969698Z adding 'torch/package/_mangling.py' 2025-07-17T08:13:19.4975271Z adding 'torch/package/_mock.py' 2025-07-17T08:13:19.4977808Z adding 'torch/package/_package_pickler.py' 2025-07-17T08:13:19.4981291Z adding 'torch/package/_package_unpickler.py' 2025-07-17T08:13:19.4985223Z adding 'torch/package/_stdlib.py' 2025-07-17T08:13:19.4989623Z adding 'torch/package/file_structure_representation.py' 2025-07-17T08:13:19.4993695Z adding 'torch/package/find_file_dependencies.py' 2025-07-17T08:13:19.4997383Z adding 'torch/package/glob_group.py' 2025-07-17T08:13:19.5002866Z adding 'torch/package/importer.py' 2025-07-17T08:13:19.5021063Z adding 'torch/package/package_exporter.py' 2025-07-17T08:13:19.5035060Z adding 'torch/package/package_importer.py' 2025-07-17T08:13:19.5039338Z adding 'torch/package/analyze/__init__.py' 2025-07-17T08:13:19.5042558Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-07-17T08:13:19.5045397Z adding 'torch/package/analyze/is_from_package.py' 2025-07-17T08:13:19.5048883Z adding 'torch/package/analyze/trace_dependencies.py' 2025-07-17T08:13:19.5052945Z adding 'torch/profiler/__init__.py' 2025-07-17T08:13:19.5070968Z adding 'torch/profiler/_memory_profiler.py' 2025-07-17T08:13:19.5080557Z adding 'torch/profiler/_pattern_matcher.py' 2025-07-17T08:13:19.5087466Z adding 'torch/profiler/_utils.py' 2025-07-17T08:13:19.5091281Z adding 'torch/profiler/itt.py' 2025-07-17T08:13:19.5106364Z adding 'torch/profiler/profiler.py' 2025-07-17T08:13:19.5110490Z adding 'torch/profiler/python_tracer.py' 2025-07-17T08:13:19.5114967Z adding 'torch/quantization/__init__.py' 2025-07-17T08:13:19.5118078Z adding 'torch/quantization/_numeric_suite.py' 2025-07-17T08:13:19.5121063Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-07-17T08:13:19.5125080Z adding 'torch/quantization/_quantized_conversions.py' 2025-07-17T08:13:19.5128294Z adding 'torch/quantization/fake_quantize.py' 2025-07-17T08:13:19.5131332Z adding 'torch/quantization/fuse_modules.py' 2025-07-17T08:13:19.5134282Z adding 'torch/quantization/fuser_method_mappings.py' 2025-07-17T08:13:19.5137280Z adding 'torch/quantization/observer.py' 2025-07-17T08:13:19.5140277Z adding 'torch/quantization/qconfig.py' 2025-07-17T08:13:19.5143145Z adding 'torch/quantization/quant_type.py' 2025-07-17T08:13:19.5146185Z adding 'torch/quantization/quantization_mappings.py' 2025-07-17T08:13:19.5149086Z adding 'torch/quantization/quantize.py' 2025-07-17T08:13:19.5152013Z adding 'torch/quantization/quantize_fx.py' 2025-07-17T08:13:19.5154988Z adding 'torch/quantization/quantize_jit.py' 2025-07-17T08:13:19.5157968Z adding 'torch/quantization/stubs.py' 2025-07-17T08:13:19.5160864Z adding 'torch/quantization/utils.py' 2025-07-17T08:13:19.5164573Z adding 'torch/quantization/fx/__init__.py' 2025-07-17T08:13:19.5167741Z adding 'torch/quantization/fx/_equalize.py' 2025-07-17T08:13:19.5170609Z adding 'torch/quantization/fx/convert.py' 2025-07-17T08:13:19.5173423Z adding 'torch/quantization/fx/fuse.py' 2025-07-17T08:13:19.5176349Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-07-17T08:13:19.5179184Z adding 'torch/quantization/fx/graph_module.py' 2025-07-17T08:13:19.5182050Z adding 'torch/quantization/fx/match_utils.py' 2025-07-17T08:13:19.5185032Z adding 'torch/quantization/fx/pattern_utils.py' 2025-07-17T08:13:19.5187911Z adding 'torch/quantization/fx/prepare.py' 2025-07-17T08:13:19.5191156Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-07-17T08:13:19.5194043Z adding 'torch/quantization/fx/quantization_types.py' 2025-07-17T08:13:19.5196822Z adding 'torch/quantization/fx/utils.py' 2025-07-17T08:13:19.5201576Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-07-17T08:13:19.5206377Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-07-17T08:13:19.5209939Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-07-17T08:13:19.5214092Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-07-17T08:13:19.5227333Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-07-17T08:13:19.5232045Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-07-17T08:13:19.5235398Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-07-17T08:13:19.5239501Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-07-17T08:13:19.5243398Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-07-17T08:13:19.5246975Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-07-17T08:13:19.5251475Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-07-17T08:13:19.5282312Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-07-17T08:13:19.5291217Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-07-17T08:13:19.5295004Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-07-17T08:13:19.5300016Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-07-17T08:13:19.5304618Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-07-17T08:13:19.5310277Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-07-17T08:13:19.5316143Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-07-17T08:13:19.5322318Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-07-17T08:13:19.5328953Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-07-17T08:13:19.5333289Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-07-17T08:13:19.5336474Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-07-17T08:13:19.5339904Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-07-17T08:13:19.5342894Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-07-17T08:13:19.5346636Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-07-17T08:13:19.5356186Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-07-17T08:13:19.5359057Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-07-17T08:13:19.5363970Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-07-17T08:13:19.5367294Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-07-17T08:13:19.5370835Z adding 'torch/signal/__init__.py' 2025-07-17T08:13:19.5374424Z adding 'torch/signal/windows/__init__.py' 2025-07-17T08:13:19.5381396Z adding 'torch/signal/windows/windows.py' 2025-07-17T08:13:19.5392310Z adding 'torch/sparse/__init__.py' 2025-07-17T08:13:19.5399324Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-07-17T08:13:19.5403950Z adding 'torch/sparse/_semi_structured_ops.py' 2025-07-17T08:13:19.5428977Z adding 'torch/sparse/_triton_ops.py' 2025-07-17T08:13:19.5550774Z adding 'torch/sparse/_triton_ops_meta.py' 2025-07-17T08:13:19.5571105Z adding 'torch/sparse/semi_structured.py' 2025-07-17T08:13:19.5580870Z adding 'torch/special/__init__.py' 2025-07-17T08:13:19.5747626Z adding 'torch/test/CppSignature_test.exe' 2025-07-17T08:13:19.6015425Z adding 'torch/test/Dict_test.exe' 2025-07-17T08:13:19.6197790Z adding 'torch/test/Dimname_test.exe' 2025-07-17T08:13:19.6431628Z adding 'torch/test/IListRef_test.exe' 2025-07-17T08:13:19.6671974Z adding 'torch/test/KernelFunction_test.exe' 2025-07-17T08:13:19.7014793Z adding 'torch/test/List_test.exe' 2025-07-17T08:13:19.7274665Z adding 'torch/test/MaybeOwned_test.exe' 2025-07-17T08:13:19.7510191Z adding 'torch/test/NamedTensor_test.exe' 2025-07-17T08:13:19.7718548Z adding 'torch/test/StorageUtils_test.exe' 2025-07-17T08:13:19.7936811Z adding 'torch/test/apply_utils_test.exe' 2025-07-17T08:13:19.8166457Z adding 'torch/test/atest.exe' 2025-07-17T08:13:19.8374660Z adding 'torch/test/backend_fallback_test.exe' 2025-07-17T08:13:19.8628351Z adding 'torch/test/basic.exe' 2025-07-17T08:13:19.8835570Z adding 'torch/test/broadcast_test.exe' 2025-07-17T08:13:19.9014123Z adding 'torch/test/c10_ArrayRef_test.exe' 2025-07-17T08:13:19.9176426Z adding 'torch/test/c10_Bitset_test.exe' 2025-07-17T08:13:19.9345002Z adding 'torch/test/c10_CompileTimeFunctionPointer_test.exe' 2025-07-17T08:13:19.9496703Z adding 'torch/test/c10_ConstexprCrc_test.exe' 2025-07-17T08:13:19.9656645Z adding 'torch/test/c10_DeadlockDetection_test.exe' 2025-07-17T08:13:19.9830082Z adding 'torch/test/c10_DeviceGuard_test.exe' 2025-07-17T08:13:20.0006817Z adding 'torch/test/c10_Device_test.exe' 2025-07-17T08:13:20.0208960Z adding 'torch/test/c10_DispatchKeySet_test.exe' 2025-07-17T08:13:20.0397237Z adding 'torch/test/c10_Enumerate_test.exe' 2025-07-17T08:13:20.0570901Z adding 'torch/test/c10_Half_test.exe' 2025-07-17T08:13:20.0751710Z adding 'torch/test/c10_InlineDeviceGuard_test.exe' 2025-07-17T08:13:20.0949711Z adding 'torch/test/c10_InlineStreamGuard_test.exe' 2025-07-17T08:13:20.1128660Z adding 'torch/test/c10_IntrusiveList_test.exe' 2025-07-17T08:13:20.1320240Z adding 'torch/test/c10_LeftRight_test.exe' 2025-07-17T08:13:20.1501957Z adding 'torch/test/c10_Metaprogramming_test.exe' 2025-07-17T08:13:20.1681421Z adding 'torch/test/c10_NetworkFlow_test.exe' 2025-07-17T08:13:20.1859736Z adding 'torch/test/c10_Scalar_test.exe' 2025-07-17T08:13:20.2029258Z adding 'torch/test/c10_Semaphore_test.exe' 2025-07-17T08:13:20.2207641Z adding 'torch/test/c10_SizesAndStrides_test.exe' 2025-07-17T08:13:20.2363579Z adding 'torch/test/c10_StreamGuard_test.exe' 2025-07-17T08:13:20.2533239Z adding 'torch/test/c10_SymInt_test.exe' 2025-07-17T08:13:20.2702272Z adding 'torch/test/c10_Synchronized_test.exe' 2025-07-17T08:13:20.2887614Z adding 'torch/test/c10_ThreadLocal_test.exe' 2025-07-17T08:13:20.3063531Z adding 'torch/test/c10_TypeIndex_test.exe' 2025-07-17T08:13:20.3223735Z adding 'torch/test/c10_TypeList_test.exe' 2025-07-17T08:13:20.3379230Z adding 'torch/test/c10_TypeTraits_test.exe' 2025-07-17T08:13:20.3557190Z adding 'torch/test/c10_accumulate_test.exe' 2025-07-17T08:13:20.3748926Z adding 'torch/test/c10_bfloat16_test.exe' 2025-07-17T08:13:20.3913093Z adding 'torch/test/c10_bit_cast_test.exe' 2025-07-17T08:13:20.4115593Z adding 'torch/test/c10_complex_math_test.exe' 2025-07-17T08:13:20.4306958Z adding 'torch/test/c10_complex_test.exe' 2025-07-17T08:13:20.4502250Z adding 'torch/test/c10_cow_test.exe' 2025-07-17T08:13:20.4662399Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_1_var_test.exe' 2025-07-17T08:13:20.4821758Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_stream.exe' 2025-07-17T08:13:20.4981670Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_catches_thread_and_block_and_device.exe' 2025-07-17T08:13:20.5141539Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_from_2_processes.exe' 2025-07-17T08:13:20.5300194Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_blocks_and_threads.exe' 2025-07-17T08:13:20.5460101Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_multiple_blocks.exe' 2025-07-17T08:13:20.5622165Z adding 'torch/test/c10_cuda_CUDAAssertionsTest_multiple_writes_from_same_block.exe' 2025-07-17T08:13:20.5780118Z adding 'torch/test/c10_cuda_CUDATest.exe' 2025-07-17T08:13:20.5945240Z adding 'torch/test/c10_error_test.exe' 2025-07-17T08:13:20.6127615Z adding 'torch/test/c10_exception_test.exe' 2025-07-17T08:13:20.6288625Z adding 'torch/test/c10_flags_test.exe' 2025-07-17T08:13:20.6457298Z adding 'torch/test/c10_generic_math_test.exe' 2025-07-17T08:13:20.6604682Z adding 'torch/test/c10_intrusive_ptr_benchmark.exe' 2025-07-17T08:13:20.7037798Z adding 'torch/test/c10_intrusive_ptr_test.exe' 2025-07-17T08:13:20.7228300Z adding 'torch/test/c10_irange_test.exe' 2025-07-17T08:13:20.7405551Z adding 'torch/test/c10_lazy_test.exe' 2025-07-17T08:13:20.7599696Z adding 'torch/test/c10_logging_test.exe' 2025-07-17T08:13:20.7844426Z adding 'torch/test/c10_optional_test.exe' 2025-07-17T08:13:20.8057224Z adding 'torch/test/c10_ordered_preserving_dict_test.exe' 2025-07-17T08:13:20.8237634Z adding 'torch/test/c10_registry_test.exe' 2025-07-17T08:13:20.8601647Z adding 'torch/test/c10_small_vector_test.exe' 2025-07-17T08:13:20.8785201Z adding 'torch/test/c10_ssize_test.exe' 2025-07-17T08:13:20.8974564Z adding 'torch/test/c10_string_util_test.exe' 2025-07-17T08:13:20.9141434Z adding 'torch/test/c10_string_view_test.exe' 2025-07-17T08:13:20.9299867Z adding 'torch/test/c10_tempfile_test.exe' 2025-07-17T08:13:20.9484894Z adding 'torch/test/c10_typeid_test.exe' 2025-07-17T08:13:20.9681345Z adding 'torch/test/cpu_allocator_test.exe' 2025-07-17T08:13:20.9915887Z adding 'torch/test/cpu_generator_test.exe' 2025-07-17T08:13:21.0115039Z adding 'torch/test/cpu_profiling_allocator_test.exe' 2025-07-17T08:13:21.0456652Z adding 'torch/test/cpu_rng_test.exe' 2025-07-17T08:13:21.0634909Z adding 'torch/test/cuda_allocatorTraceTracker_test.exe' 2025-07-17T08:13:21.0834308Z adding 'torch/test/cuda_allocator_test.exe' 2025-07-17T08:13:21.0995645Z adding 'torch/test/cuda_apply_test.exe' 2025-07-17T08:13:21.1208602Z adding 'torch/test/cuda_atomic_ops_test.exe' 2025-07-17T08:13:21.1430680Z adding 'torch/test/cuda_caching_host_allocator_test.exe' 2025-07-17T08:13:21.1662475Z adding 'torch/test/cuda_complex_math_test.exe' 2025-07-17T08:13:21.1867671Z adding 'torch/test/cuda_complex_test.exe' 2025-07-17T08:13:21.2101046Z adding 'torch/test/cuda_cub_test.exe' 2025-07-17T08:13:21.2285131Z adding 'torch/test/cuda_cudnn_test.exe' 2025-07-17T08:13:21.2448694Z adding 'torch/test/cuda_device_test.exe' 2025-07-17T08:13:21.2734628Z adding 'torch/test/cuda_distributions_test.exe' 2025-07-17T08:13:21.2941542Z adding 'torch/test/cuda_dlconvertor_test.exe' 2025-07-17T08:13:21.3118908Z adding 'torch/test/cuda_exchange_device_test.exe' 2025-07-17T08:13:21.3325337Z adding 'torch/test/cuda_generator_test.exe' 2025-07-17T08:13:21.3527247Z adding 'torch/test/cuda_half_test.exe' 2025-07-17T08:13:21.3695530Z adding 'torch/test/cuda_integer_divider_test.exe' 2025-07-17T08:13:21.3894083Z adding 'torch/test/cuda_optional_test.exe' 2025-07-17T08:13:21.4096492Z adding 'torch/test/cuda_packedtensoraccessor_test.exe' 2025-07-17T08:13:21.4306342Z adding 'torch/test/cuda_reportMemoryUsage_test.exe' 2025-07-17T08:13:21.4508947Z adding 'torch/test/cuda_stream_test.exe' 2025-07-17T08:13:21.4720256Z adding 'torch/test/cuda_vectorized_test.exe' 2025-07-17T08:13:21.4918769Z adding 'torch/test/dlconvertor_test.exe' 2025-07-17T08:13:21.5138453Z adding 'torch/test/extension_backend_test.exe' 2025-07-17T08:13:21.5355956Z adding 'torch/test/half_test.exe' 2025-07-17T08:13:21.5611295Z adding 'torch/test/inline_container_test.exe' 2025-07-17T08:13:21.5988824Z adding 'torch/test/ivalue_test.exe' 2025-07-17T08:13:21.6408944Z adding 'torch/test/kernel_function_legacy_test.exe' 2025-07-17T08:13:21.6756314Z adding 'torch/test/kernel_function_test.exe' 2025-07-17T08:13:21.7185301Z adding 'torch/test/kernel_lambda_legacy_test.exe' 2025-07-17T08:13:21.7547499Z adding 'torch/test/kernel_lambda_test.exe' 2025-07-17T08:13:21.7788597Z adding 'torch/test/kernel_stackbased_test.exe' 2025-07-17T08:13:21.7986310Z adding 'torch/test/lazy_tensor_test.exe' 2025-07-17T08:13:21.8271805Z adding 'torch/test/legacy_vmap_test.exe' 2025-07-17T08:13:21.8618609Z adding 'torch/test/make_boxed_from_unboxed_functor_test.exe' 2025-07-17T08:13:21.8835045Z adding 'torch/test/math_kernel_test.exe' 2025-07-17T08:13:21.9038013Z adding 'torch/test/memory_format_test.exe' 2025-07-17T08:13:21.9240575Z adding 'torch/test/memory_overlapping_test.exe' 2025-07-17T08:13:21.9448510Z adding 'torch/test/mobile_memory_cleanup.exe' 2025-07-17T08:13:21.9673249Z adding 'torch/test/native_test.exe' 2025-07-17T08:13:21.9833850Z adding 'torch/test/op_allowlist_test.exe' 2025-07-17T08:13:22.0645326Z adding 'torch/test/op_registration_test.exe' 2025-07-17T08:13:22.0863836Z adding 'torch/test/operator_name_test.exe' 2025-07-17T08:13:22.1060889Z adding 'torch/test/operators_test.exe' 2025-07-17T08:13:22.1480686Z adding 'torch/test/packedtensoraccessor_test.exe' 2025-07-17T08:13:22.1751792Z adding 'torch/test/pow_test.exe' 2025-07-17T08:13:22.1980886Z adding 'torch/test/quantized_test.exe' 2025-07-17T08:13:22.2186186Z adding 'torch/test/reduce_ops_test.exe' 2025-07-17T08:13:22.2393165Z adding 'torch/test/reportMemoryUsage_test.exe' 2025-07-17T08:13:22.2626458Z adding 'torch/test/scalar_tensor_test.exe' 2025-07-17T08:13:22.2862887Z adding 'torch/test/scalar_test.exe' 2025-07-17T08:13:22.3067135Z adding 'torch/test/stride_properties_test.exe' 2025-07-17T08:13:22.3337480Z adding 'torch/test/tensor_iterator_test.exe' 2025-07-17T08:13:22.3555102Z adding 'torch/test/test_parallel.exe' 2025-07-17T08:13:22.3612068Z adding 'torch/test/thread_init_test.exe' 2025-07-17T08:13:22.3788588Z adding 'torch/test/type_ptr_test.exe' 2025-07-17T08:13:22.4025658Z adding 'torch/test/type_test.exe' 2025-07-17T08:13:22.4239960Z adding 'torch/test/undefined_tensor_test.exe' 2025-07-17T08:13:22.4294955Z adding 'torch/test/verify_api_visibility.exe' 2025-07-17T08:13:22.4495077Z adding 'torch/test/weakref_test.exe' 2025-07-17T08:13:22.4715582Z adding 'torch/test/wrapdim_test.exe' 2025-07-17T08:13:22.4905394Z adding 'torch/test/xla_tensor_test.exe' 2025-07-17T08:13:22.4917070Z adding 'torch/testing/__init__.py' 2025-07-17T08:13:22.4937883Z adding 'torch/testing/_comparison.py' 2025-07-17T08:13:22.4945247Z adding 'torch/testing/_creation.py' 2025-07-17T08:13:22.4949638Z adding 'torch/testing/_utils.py' 2025-07-17T08:13:22.4955390Z adding 'torch/testing/_internal/__init__.py' 2025-07-17T08:13:22.4962254Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-07-17T08:13:22.4971250Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-07-17T08:13:22.4974419Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-07-17T08:13:22.4980652Z adding 'torch/testing/_internal/common_cuda.py' 2025-07-17T08:13:22.5008385Z adding 'torch/testing/_internal/common_device_type.py' 2025-07-17T08:13:22.5013712Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-07-17T08:13:22.5037862Z adding 'torch/testing/_internal/common_distributed.py' 2025-07-17T08:13:22.5043294Z adding 'torch/testing/_internal/common_dtype.py' 2025-07-17T08:13:22.5062962Z adding 'torch/testing/_internal/common_fsdp.py' 2025-07-17T08:13:22.5070145Z adding 'torch/testing/_internal/common_jit.py' 2025-07-17T08:13:22.5310517Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-07-17T08:13:22.5341487Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-07-17T08:13:22.5374659Z adding 'torch/testing/_internal/common_modules.py' 2025-07-17T08:13:22.5388432Z adding 'torch/testing/_internal/common_mps.py' 2025-07-17T08:13:22.5423196Z adding 'torch/testing/_internal/common_nn.py' 2025-07-17T08:13:22.5443753Z adding 'torch/testing/_internal/common_optimizers.py' 2025-07-17T08:13:22.5451743Z adding 'torch/testing/_internal/common_pruning.py' 2025-07-17T08:13:22.5482481Z adding 'torch/testing/_internal/common_quantization.py' 2025-07-17T08:13:22.5493190Z adding 'torch/testing/_internal/common_quantized.py' 2025-07-17T08:13:22.5499159Z adding 'torch/testing/_internal/common_subclass.py' 2025-07-17T08:13:22.5587766Z adding 'torch/testing/_internal/common_utils.py' 2025-07-17T08:13:22.5602688Z adding 'torch/testing/_internal/composite_compliance.py' 2025-07-17T08:13:22.5610149Z adding 'torch/testing/_internal/custom_op_db.py' 2025-07-17T08:13:22.5614701Z adding 'torch/testing/_internal/custom_tensor.py' 2025-07-17T08:13:22.5619626Z adding 'torch/testing/_internal/dist_utils.py' 2025-07-17T08:13:22.5624047Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-07-17T08:13:22.5627366Z adding 'torch/testing/_internal/fake_config_module.py' 2025-07-17T08:13:22.5630468Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-07-17T08:13:22.5633434Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-07-17T08:13:22.5638262Z adding 'torch/testing/_internal/hop_db.py' 2025-07-17T08:13:22.5644985Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-07-17T08:13:22.5652035Z adding 'torch/testing/_internal/inductor_utils.py' 2025-07-17T08:13:22.5663271Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-07-17T08:13:22.5694671Z adding 'torch/testing/_internal/jit_utils.py' 2025-07-17T08:13:22.5695052Z adding 'torch/testing/_internal/logging_tensor.py' 2025-07-17T08:13:22.5695418Z adding 'torch/testing/_internal/logging_utils.py' 2025-07-17T08:13:22.5695858Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-07-17T08:13:22.5696285Z adding 'torch/testing/_internal/static_module.py' 2025-07-17T08:13:22.5697682Z adding 'torch/testing/_internal/subclasses.py' 2025-07-17T08:13:22.5701832Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-07-17T08:13:22.5709850Z adding 'torch/testing/_internal/triton_utils.py' 2025-07-17T08:13:22.5714437Z adding 'torch/testing/_internal/two_tensor.py' 2025-07-17T08:13:22.5718761Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-07-17T08:13:22.5721751Z adding 'torch/testing/_internal/data/__init__.py' 2025-07-17T08:13:22.5724533Z adding 'torch/testing/_internal/data/network1.py' 2025-07-17T08:13:22.5727345Z adding 'torch/testing/_internal/data/network2.py' 2025-07-17T08:13:22.5731332Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-07-17T08:13:22.5735545Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-07-17T08:13:22.5740076Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-07-17T08:13:22.5749134Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-07-17T08:13:22.5849243Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-07-17T08:13:22.5862298Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-07-17T08:13:22.5865479Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-07-17T08:13:22.5872627Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-07-17T08:13:22.5877606Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-07-17T08:13:22.5881358Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-07-17T08:13:22.5884635Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-07-17T08:13:22.5889161Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-07-17T08:13:22.5893042Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-07-17T08:13:22.5896355Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-07-17T08:13:22.5899825Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-07-17T08:13:22.5908727Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-07-17T08:13:22.5912766Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-07-17T08:13:22.5916275Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-07-17T08:13:22.5923698Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-07-17T08:13:22.5928146Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-07-17T08:13:22.5956344Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-07-17T08:13:22.5963331Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-07-17T08:13:22.5968983Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-07-17T08:13:22.5972780Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-07-17T08:13:22.5976198Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-07-17T08:13:22.6034233Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-07-17T08:13:22.6042550Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-07-17T08:13:22.6046228Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-07-17T08:13:22.6050152Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-07-17T08:13:22.6055428Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-07-17T08:13:22.6059312Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-07-17T08:13:22.6062933Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-07-17T08:13:22.6076908Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-07-17T08:13:22.6082353Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-07-17T08:13:22.6086023Z adding 'torch/testing/_internal/generated/__init__.py' 2025-07-17T08:13:22.6135051Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-07-17T08:13:22.6150538Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-07-17T08:13:22.6215141Z adding 'torch/testing/_internal/opinfo/core.py' 2025-07-17T08:13:22.6215541Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-07-17T08:13:22.6215882Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-07-17T08:13:22.6216310Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-07-17T08:13:22.6221926Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-07-17T08:13:22.6229137Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-07-17T08:13:22.6250389Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-07-17T08:13:22.6268711Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-07-17T08:13:22.6275714Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-07-17T08:13:22.6285115Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-07-17T08:13:22.6292097Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-07-17T08:13:22.6297073Z adding 'torch/testing/_internal/optests/__init__.py' 2025-07-17T08:13:22.6300975Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-07-17T08:13:22.6305522Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-07-17T08:13:22.6308623Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-07-17T08:13:22.6320559Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-07-17T08:13:22.6325026Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-07-17T08:13:22.6328752Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-07-17T08:13:22.6332140Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-07-17T08:13:22.6334471Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-07-17T08:13:22.6339714Z adding 'torch/utils/__init__.py' 2025-07-17T08:13:22.6343565Z adding 'torch/utils/_appending_byte_serializer.py' 2025-07-17T08:13:22.6347559Z adding 'torch/utils/_backport_slots.py' 2025-07-17T08:13:22.6358819Z adding 'torch/utils/_config_module.py' 2025-07-17T08:13:22.6362684Z adding 'torch/utils/_config_typing.pyi' 2025-07-17T08:13:22.6368098Z adding 'torch/utils/_content_store.py' 2025-07-17T08:13:22.6372710Z adding 'torch/utils/_contextlib.py' 2025-07-17T08:13:22.6376127Z adding 'torch/utils/_cpp_embed_headers.py' 2025-07-17T08:13:22.6379415Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-07-17T08:13:22.6390517Z adding 'torch/utils/_cxx_pytree.py' 2025-07-17T08:13:22.6395101Z adding 'torch/utils/_device.py' 2025-07-17T08:13:22.6398147Z adding 'torch/utils/_dtype_abbrs.py' 2025-07-17T08:13:22.6401139Z adding 'torch/utils/_exposed_in.py' 2025-07-17T08:13:22.6404324Z adding 'torch/utils/_filelock.py' 2025-07-17T08:13:22.6407857Z adding 'torch/utils/_foreach_utils.py' 2025-07-17T08:13:22.6411227Z adding 'torch/utils/_functools.py' 2025-07-17T08:13:22.6415764Z adding 'torch/utils/_get_clean_triton.py' 2025-07-17T08:13:22.6418807Z adding 'torch/utils/_helion.py' 2025-07-17T08:13:22.6421992Z adding 'torch/utils/_import_utils.py' 2025-07-17T08:13:22.6424888Z adding 'torch/utils/_mode_utils.py' 2025-07-17T08:13:22.6428728Z adding 'torch/utils/_ordered_set.py' 2025-07-17T08:13:22.6440201Z adding 'torch/utils/_python_dispatch.py' 2025-07-17T08:13:22.6464135Z adding 'torch/utils/_pytree.py' 2025-07-17T08:13:22.6468835Z adding 'torch/utils/_stats.py' 2025-07-17T08:13:22.6471905Z adding 'torch/utils/_thunk.py' 2025-07-17T08:13:22.6485723Z adding 'torch/utils/_traceback.py' 2025-07-17T08:13:22.6490107Z adding 'torch/utils/_triton.py' 2025-07-17T08:13:22.6493060Z adding 'torch/utils/_typing_utils.py' 2025-07-17T08:13:22.6496699Z adding 'torch/utils/_zip.py' 2025-07-17T08:13:22.6504523Z adding 'torch/utils/backend_registration.py' 2025-07-17T08:13:22.6513421Z adding 'torch/utils/bundled_inputs.py' 2025-07-17T08:13:22.6541455Z adding 'torch/utils/checkpoint.py' 2025-07-17T08:13:22.6554253Z adding 'torch/utils/collect_env.py' 2025-07-17T08:13:22.6558120Z adding 'torch/utils/cpp_backtrace.py' 2025-07-17T08:13:22.6620889Z adding 'torch/utils/cpp_extension.py' 2025-07-17T08:13:22.6621217Z adding 'torch/utils/deterministic.py' 2025-07-17T08:13:22.6621526Z adding 'torch/utils/dlpack.py' 2025-07-17T08:13:22.6621802Z adding 'torch/utils/file_baton.py' 2025-07-17T08:13:22.6633223Z adding 'torch/utils/flop_counter.py' 2025-07-17T08:13:22.6639420Z adding 'torch/utils/hooks.py' 2025-07-17T08:13:22.6645019Z adding 'torch/utils/mkldnn.py' 2025-07-17T08:13:22.6648374Z adding 'torch/utils/mobile_optimizer.py' 2025-07-17T08:13:22.6651352Z adding 'torch/utils/model_zoo.py' 2025-07-17T08:13:22.6656097Z adding 'torch/utils/module_tracker.py' 2025-07-17T08:13:22.6659697Z adding 'torch/utils/show_pickle.py' 2025-07-17T08:13:22.6664293Z adding 'torch/utils/throughput_benchmark.py' 2025-07-17T08:13:22.6670203Z adding 'torch/utils/weak.py' 2025-07-17T08:13:22.6674339Z adding 'torch/utils/_strobelight/__init__.py' 2025-07-17T08:13:22.6679477Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-07-17T08:13:22.6683297Z adding 'torch/utils/_sympy/__init__.py' 2025-07-17T08:13:22.6702755Z adding 'torch/utils/_sympy/functions.py' 2025-07-17T08:13:22.6707861Z adding 'torch/utils/_sympy/interp.py' 2025-07-17T08:13:22.6712532Z adding 'torch/utils/_sympy/numbers.py' 2025-07-17T08:13:22.6719215Z adding 'torch/utils/_sympy/printers.py' 2025-07-17T08:13:22.6724908Z adding 'torch/utils/_sympy/reference.py' 2025-07-17T08:13:22.6729282Z adding 'torch/utils/_sympy/singleton_int.py' 2025-07-17T08:13:22.6733540Z adding 'torch/utils/_sympy/solve.py' 2025-07-17T08:13:22.6737379Z adding 'torch/utils/_sympy/symbol.py' 2025-07-17T08:13:22.6749833Z adding 'torch/utils/_sympy/value_ranges.py' 2025-07-17T08:13:22.6754498Z adding 'torch/utils/backcompat/__init__.py' 2025-07-17T08:13:22.6758063Z adding 'torch/utils/benchmark/__init__.py' 2025-07-17T08:13:22.6761798Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-07-17T08:13:22.6765231Z adding 'torch/utils/benchmark/examples/compare.py' 2025-07-17T08:13:22.6768889Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-07-17T08:13:22.6772919Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-07-17T08:13:22.6776004Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-07-17T08:13:22.6779999Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-07-17T08:13:22.6783863Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-07-17T08:13:22.6787280Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-07-17T08:13:22.6790931Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-07-17T08:13:22.6794480Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-07-17T08:13:22.6798186Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-07-17T08:13:22.6801714Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-07-17T08:13:22.6805372Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-07-17T08:13:22.6808496Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-07-17T08:13:22.6814931Z adding 'torch/utils/benchmark/utils/common.py' 2025-07-17T08:13:22.6821508Z adding 'torch/utils/benchmark/utils/compare.py' 2025-07-17T08:13:22.6826282Z adding 'torch/utils/benchmark/utils/compile.py' 2025-07-17T08:13:22.6831272Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-07-17T08:13:22.6839157Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-07-17T08:13:22.6843822Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-07-17T08:13:22.6847248Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-07-17T08:13:22.6855750Z adding 'torch/utils/benchmark/utils/timer.py' 2025-07-17T08:13:22.6859948Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-07-17T08:13:22.6864249Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-07-17T08:13:22.6867536Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-07-17T08:13:22.6870801Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-07-17T08:13:22.6884298Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-07-17T08:13:22.6935836Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-07-17T08:13:22.6948530Z adding 'torch/utils/bottleneck/__init__.py' 2025-07-17T08:13:22.6953084Z adding 'torch/utils/bottleneck/__main__.py' 2025-07-17T08:13:22.6957294Z adding 'torch/utils/data/__init__.py' 2025-07-17T08:13:22.6960322Z adding 'torch/utils/data/backward_compatibility.py' 2025-07-17T08:13:22.6995345Z adding 'torch/utils/data/dataloader.py' 2025-07-17T08:13:22.7004504Z adding 'torch/utils/data/dataset.py' 2025-07-17T08:13:22.7009500Z adding 'torch/utils/data/distributed.py' 2025-07-17T08:13:22.7013894Z adding 'torch/utils/data/graph.py' 2025-07-17T08:13:22.7018270Z adding 'torch/utils/data/graph_settings.py' 2025-07-17T08:13:22.7024168Z adding 'torch/utils/data/sampler.py' 2025-07-17T08:13:22.7029087Z adding 'torch/utils/data/_utils/__init__.py' 2025-07-17T08:13:22.7035056Z adding 'torch/utils/data/_utils/collate.py' 2025-07-17T08:13:22.7038854Z adding 'torch/utils/data/_utils/fetch.py' 2025-07-17T08:13:22.7042762Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-07-17T08:13:22.7046679Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-07-17T08:13:22.7053433Z adding 'torch/utils/data/_utils/worker.py' 2025-07-17T08:13:22.7057806Z adding 'torch/utils/data/datapipes/__init__.py' 2025-07-17T08:13:22.7061917Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-07-17T08:13:22.7067737Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-07-17T08:13:22.7075203Z adding 'torch/utils/data/datapipes/_typing.py' 2025-07-17T08:13:22.7081695Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-07-17T08:13:22.7092608Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-07-17T08:13:22.7099528Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-07-17T08:13:22.7103479Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-07-17T08:13:22.7107050Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-07-17T08:13:22.7112867Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-07-17T08:13:22.7116879Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-07-17T08:13:22.7120160Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-07-17T08:13:22.7124266Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-07-17T08:13:22.7129738Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-07-17T08:13:22.7134589Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-07-17T08:13:22.7143656Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-07-17T08:13:22.7147852Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-07-17T08:13:22.7151701Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-07-17T08:13:22.7157308Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-07-17T08:13:22.7161330Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-07-17T08:13:22.7165162Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-07-17T08:13:22.7169858Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-07-17T08:13:22.7172750Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-07-17T08:13:22.7176198Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-07-17T08:13:22.7180470Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-07-17T08:13:22.7183577Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-07-17T08:13:22.7222515Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-07-17T08:13:22.7222935Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-07-17T08:13:22.7223311Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-07-17T08:13:22.7223660Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-07-17T08:13:22.7224017Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-07-17T08:13:22.7224372Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-07-17T08:13:22.7224740Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-07-17T08:13:22.7225108Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-07-17T08:13:22.7226263Z adding 'torch/utils/hipify/__init__.py' 2025-07-17T08:13:22.7229654Z adding 'torch/utils/hipify/constants.py' 2025-07-17T08:13:22.7292493Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-07-17T08:13:22.7318504Z adding 'torch/utils/hipify/hipify_python.py' 2025-07-17T08:13:22.7322200Z adding 'torch/utils/hipify/version.py' 2025-07-17T08:13:22.7325653Z adding 'torch/utils/jit/__init__.py' 2025-07-17T08:13:22.7329489Z adding 'torch/utils/jit/log_extract.py' 2025-07-17T08:13:22.7337541Z adding 'torch/utils/model_dump/__init__.py' 2025-07-17T08:13:22.7340870Z adding 'torch/utils/model_dump/__main__.py' 2025-07-17T08:13:22.7348074Z adding 'torch/utils/model_dump/code.js' 2025-07-17T08:13:22.7351767Z adding 'torch/utils/model_dump/htm.mjs' 2025-07-17T08:13:22.7357830Z adding 'torch/utils/model_dump/preact.mjs' 2025-07-17T08:13:22.7360891Z adding 'torch/utils/model_dump/skeleton.html' 2025-07-17T08:13:22.7364376Z adding 'torch/utils/serialization/__init__.py' 2025-07-17T08:13:22.7367359Z adding 'torch/utils/serialization/config.py' 2025-07-17T08:13:22.7371217Z adding 'torch/utils/tensorboard/__init__.py' 2025-07-17T08:13:22.7374298Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-07-17T08:13:22.7377901Z adding 'torch/utils/tensorboard/_embedding.py' 2025-07-17T08:13:22.7381313Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-07-17T08:13:22.7384590Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-07-17T08:13:22.7391213Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-07-17T08:13:22.7395486Z adding 'torch/utils/tensorboard/_utils.py' 2025-07-17T08:13:22.7411192Z adding 'torch/utils/tensorboard/summary.py' 2025-07-17T08:13:22.7426273Z adding 'torch/utils/tensorboard/writer.py' 2025-07-17T08:13:22.7430827Z adding 'torch/utils/viz/__init__.py' 2025-07-17T08:13:22.7438142Z adding 'torch/utils/viz/_cycles.py' 2025-07-17T08:13:22.7446537Z adding 'torch/xpu/__init__.py' 2025-07-17T08:13:22.7450228Z adding 'torch/xpu/_gpu_trace.py' 2025-07-17T08:13:22.7453517Z adding 'torch/xpu/_utils.py' 2025-07-17T08:13:22.7457760Z adding 'torch/xpu/memory.py' 2025-07-17T08:13:22.7461840Z adding 'torch/xpu/random.py' 2025-07-17T08:13:22.7466090Z adding 'torch/xpu/streams.py' 2025-07-17T08:13:22.7589011Z adding 'torch-2.9.0a0+gita38f433.dist-info/licenses/LICENSE' 2025-07-17T08:13:22.7610389Z adding 'torch-2.9.0a0+gita38f433.dist-info/licenses/NOTICE' 2025-07-17T08:13:22.7614802Z adding 'torchgen/__init__.py' 2025-07-17T08:13:22.7619387Z adding 'torchgen/code_template.py' 2025-07-17T08:13:22.7622243Z adding 'torchgen/context.py' 2025-07-17T08:13:22.7659287Z adding 'torchgen/gen.py' 2025-07-17T08:13:22.7671060Z adding 'torchgen/gen_aoti_c_shim.py' 2025-07-17T08:13:22.7679983Z adding 'torchgen/gen_backend_stubs.py' 2025-07-17T08:13:22.7694577Z adding 'torchgen/gen_functionalization_type.py' 2025-07-17T08:13:22.7704828Z adding 'torchgen/gen_lazy_tensor.py' 2025-07-17T08:13:22.7709478Z adding 'torchgen/gen_schema_utils.py' 2025-07-17T08:13:22.7714879Z adding 'torchgen/gen_vmap_plumbing.py' 2025-07-17T08:13:22.7718235Z adding 'torchgen/local.py' 2025-07-17T08:13:22.7760468Z adding 'torchgen/model.py' 2025-07-17T08:13:22.7774813Z adding 'torchgen/native_function_generation.py' 2025-07-17T08:13:22.7783329Z adding 'torchgen/utils.py' 2025-07-17T08:13:22.7786817Z adding 'torchgen/yaml_utils.py' 2025-07-17T08:13:22.7790268Z adding 'torchgen/aoti/__init__.py' 2025-07-17T08:13:22.7794303Z adding 'torchgen/aoti/fallback_ops.py' 2025-07-17T08:13:22.7798015Z adding 'torchgen/api/__init__.py' 2025-07-17T08:13:22.7812275Z adding 'torchgen/api/autograd.py' 2025-07-17T08:13:22.7819915Z adding 'torchgen/api/cpp.py' 2025-07-17T08:13:22.7824001Z adding 'torchgen/api/dispatcher.py' 2025-07-17T08:13:22.7828694Z adding 'torchgen/api/functionalization.py' 2025-07-17T08:13:22.7836113Z adding 'torchgen/api/lazy.py' 2025-07-17T08:13:22.7839464Z adding 'torchgen/api/meta.py' 2025-07-17T08:13:22.7843365Z adding 'torchgen/api/native.py' 2025-07-17T08:13:22.7865165Z adding 'torchgen/api/python.py' 2025-07-17T08:13:22.7870698Z adding 'torchgen/api/structured.py' 2025-07-17T08:13:22.7877966Z adding 'torchgen/api/translate.py' 2025-07-17T08:13:22.7882925Z adding 'torchgen/api/ufunc.py' 2025-07-17T08:13:22.7888336Z adding 'torchgen/api/unboxing.py' 2025-07-17T08:13:22.7891826Z adding 'torchgen/api/types/__init__.py' 2025-07-17T08:13:22.7898177Z adding 'torchgen/api/types/signatures.py' 2025-07-17T08:13:22.7902947Z adding 'torchgen/api/types/types.py' 2025-07-17T08:13:22.7907472Z adding 'torchgen/api/types/types_base.py' 2025-07-17T08:13:22.7911430Z adding 'torchgen/dest/__init__.py' 2025-07-17T08:13:22.7921623Z adding 'torchgen/dest/lazy_ir.py' 2025-07-17T08:13:22.7925619Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-07-17T08:13:22.7929277Z adding 'torchgen/dest/native_functions.py' 2025-07-17T08:13:22.7943218Z adding 'torchgen/dest/register_dispatch_key.py' 2025-07-17T08:13:22.7951286Z adding 'torchgen/dest/ufunc.py' 2025-07-17T08:13:22.7955369Z adding 'torchgen/operator_versions/__init__.py' 2025-07-17T08:13:22.7960842Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-07-17T08:13:22.7964116Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-07-17T08:13:22.8081643Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-07-17T08:13:22.8099333Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-07-17T08:13:22.8104527Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-07-17T08:13:22.8107960Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-07-17T08:13:22.8111226Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-07-17T08:13:22.8114809Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-07-17T08:13:22.8117987Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-07-17T08:13:22.8121392Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-07-17T08:13:22.8123862Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-07-17T08:13:22.8126902Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-07-17T08:13:22.8130062Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-07-17T08:13:22.8133801Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-07-17T08:13:22.8138386Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-07-17T08:13:22.8141019Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-07-17T08:13:22.8144140Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-07-17T08:13:22.8147129Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-07-17T08:13:22.8150291Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-07-17T08:13:22.8153384Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-07-17T08:13:22.8156473Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-07-17T08:13:22.8159406Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-07-17T08:13:22.8162329Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-07-17T08:13:22.8165187Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-07-17T08:13:22.8168987Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-07-17T08:13:22.8172837Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-07-17T08:13:22.8175228Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-07-17T08:13:22.8178655Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-07-17T08:13:22.8181485Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-07-17T08:13:22.8184564Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-07-17T08:13:22.8187675Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-07-17T08:13:22.8219853Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-07-17T08:13:22.8220408Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-07-17T08:13:22.8220898Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-07-17T08:13:22.8221364Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-07-17T08:13:22.8221772Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-07-17T08:13:22.8222185Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-07-17T08:13:22.8222598Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-07-17T08:13:22.8472769Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-07-17T08:13:22.8476020Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-07-17T08:13:22.8479173Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-07-17T08:13:22.8482316Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-07-17T08:13:22.8485121Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-07-17T08:13:22.8489101Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-07-17T08:13:22.8491883Z adding 'torchgen/packaged/autograd/README.md' 2025-07-17T08:13:22.8494614Z adding 'torchgen/packaged/autograd/__init__.py' 2025-07-17T08:13:22.8497403Z adding 'torchgen/packaged/autograd/build.bzl' 2025-07-17T08:13:22.8500642Z adding 'torchgen/packaged/autograd/context.py' 2025-07-17T08:13:22.8504400Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-07-17T08:13:22.8553054Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-07-17T08:13:22.8561015Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-07-17T08:13:22.8565023Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-07-17T08:13:22.8576833Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-07-17T08:13:22.8586608Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-07-17T08:13:22.8603562Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-07-17T08:13:22.8612781Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-07-17T08:13:22.8617315Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-07-17T08:13:22.8644188Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-07-17T08:13:22.8652144Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-07-17T08:13:22.8666840Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-07-17T08:13:22.8672625Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-07-17T08:13:22.8675821Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-07-17T08:13:22.8679202Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-07-17T08:13:22.8682282Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-07-17T08:13:22.8685778Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-07-17T08:13:22.8689155Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-07-17T08:13:22.8692254Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-07-17T08:13:22.8695308Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-07-17T08:13:22.8698455Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-07-17T08:13:22.8701643Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-07-17T08:13:22.8705442Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-07-17T08:13:22.8709040Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-07-17T08:13:22.8712184Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-07-17T08:13:22.8715811Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-07-17T08:13:22.8719317Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-07-17T08:13:22.8723245Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-07-17T08:13:22.8726604Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-07-17T08:13:22.8729822Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-07-17T08:13:22.8733073Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-07-17T08:13:22.8736515Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-07-17T08:13:22.8740027Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-07-17T08:13:22.8752581Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-07-17T08:13:22.8757698Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-07-17T08:13:22.8761335Z adding 'torchgen/selective_build/__init__.py' 2025-07-17T08:13:22.8765826Z adding 'torchgen/selective_build/operator.py' 2025-07-17T08:13:22.8771674Z adding 'torchgen/selective_build/selector.py' 2025-07-17T08:13:22.8775552Z adding 'torchgen/static_runtime/__init__.py' 2025-07-17T08:13:22.8780182Z adding 'torchgen/static_runtime/config.py' 2025-07-17T08:13:22.8784955Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-07-17T08:13:22.8793628Z adding 'torchgen/static_runtime/generator.py' 2025-07-17T08:13:22.8806138Z adding 'torch-2.9.0a0+gita38f433.dist-info/METADATA' 2025-07-17T08:13:22.8808919Z adding 'torch-2.9.0a0+gita38f433.dist-info/WHEEL' 2025-07-17T08:13:22.8810921Z adding 'torch-2.9.0a0+gita38f433.dist-info/entry_points.txt' 2025-07-17T08:13:22.8812701Z adding 'torch-2.9.0a0+gita38f433.dist-info/top_level.txt' 2025-07-17T08:13:22.9508801Z adding 'torch-2.9.0a0+gita38f433.dist-info/RECORD' 2025-07-17T08:13:22.9877893Z removing build\bdist.win-amd64\wheel 2025-07-17T08:13:24.5868754Z 2025-07-17T08:13:24.5870715Z (base) C:\actions-runner\_work\pytorch\pytorch>if errorlevel 1 goto fail 2025-07-17T08:13:24.5871071Z 2025-07-17T08:13:24.5871288Z (base) C:\actions-runner\_work\pytorch\pytorch>if not errorlevel 0 goto fail 2025-07-17T08:13:24.5871631Z 2025-07-17T08:13:24.5871821Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats 2025-07-17T08:13:25.0265343Z Compile requests 7494 2025-07-17T08:13:25.0265716Z Compile requests executed 5618 2025-07-17T08:13:25.0266129Z Cache hits 5542 2025-07-17T08:13:25.0266384Z Cache hits (C/C++) 5223 2025-07-17T08:13:25.0266646Z Cache hits (CUDA) 319 2025-07-17T08:13:25.0266902Z Cache misses 55 2025-07-17T08:13:25.0267171Z Cache misses (C/C++) 52 2025-07-17T08:13:25.0267482Z Cache misses (CUDA) 3 2025-07-17T08:13:25.0267738Z Cache timeouts 0 2025-07-17T08:13:25.0268036Z Cache read errors 0 2025-07-17T08:13:25.0268293Z Forced recaches 0 2025-07-17T08:13:25.0268561Z Cache write errors 0 2025-07-17T08:13:25.0268818Z Compilation failures 3 2025-07-17T08:13:25.0269077Z Cache errors 18 2025-07-17T08:13:25.0269323Z Cache errors (C/C++) 18 2025-07-17T08:13:25.0269594Z Non-cacheable compilations 2 2025-07-17T08:13:25.0269951Z Non-cacheable calls 1875 2025-07-17T08:13:25.0270216Z Non-compilation calls 1 2025-07-17T08:13:25.0270491Z Unsupported compiler calls 0 2025-07-17T08:13:25.0270764Z Average cache write 0.231 s 2025-07-17T08:13:25.0271058Z Average compiler 5.404 s 2025-07-17T08:13:25.0271385Z Average cache read hit 0.072 s 2025-07-17T08:13:25.0271674Z Failed distributed compilations 0 2025-07-17T08:13:25.0271866Z 2025-07-17T08:13:25.0271944Z Non-cacheable reasons: 2025-07-17T08:13:25.0918952Z multiple input files 1875 2025-07-17T08:13:25.0919191Z 2025-07-17T08:13:25.0919429Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-17T08:13:25.0919825Z Version (client) 0.7.4 2025-07-17T08:13:25.0942380Z 2025-07-17T08:13:25.0943100Z (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-07-17T08:13:26.1366975Z Processing c:\actions-runner\_work\pytorch\pytorch\dist\torch-2.9.0a0+gita38f433-cp39-cp39-win_amd64.whl 2025-07-17T08:13:28.4543701Z Installing collected packages: torch 2025-07-17T08:14:02.3299250Z Successfully installed torch-2.9.0a0+gita38f433 2025-07-17T08:14:02.3942820Z 2025-07-17T08:14:02.3944115Z (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-07-17T08:14:02.3945381Z copy /Y "dist\*.whl" "C:/16337959945/build-results/" 2025-07-17T08:14:02.3945716Z python tools/stats/export_test_times.py 2025-07-17T08:14:02.3946169Z robocopy /E ".additional_ci_files" "C:/16337959945/build-results/\.additional_ci_files" 2025-07-17T08:14:02.3946827Z copy /Y "build\.ninja_log" "C:/16337959945/build-results/\" 2025-07-17T08:14:02.3947137Z ) ) 2025-07-17T08:14:02.3952665Z dist\torch-2.9.0a0+gita38f433-cp39-cp39-win_amd64.whl 2025-07-17T08:14:02.8136407Z 1 file(s) copied. 2025-07-17T08:14:03.9488018Z Exporting test times from test-infra 2025-07-17T08:14:03.9489042Z 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-07-17T08:14:03.9490560Z 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-07-17T08:14:04.9576607Z 2025-07-17T08:14:04.9577313Z ------------------------------------------------------------------------------- 2025-07-17T08:14:04.9578267Z ROBOCOPY :: Robust File Copy for Windows 2025-07-17T08:14:04.9578741Z ------------------------------------------------------------------------------- 2025-07-17T08:14:04.9579152Z 2025-07-17T08:14:04.9580965Z Started : Thursday, July 17, 2025 8:14:04 AM 2025-07-17T08:14:04.9581413Z Source : C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-07-17T08:14:04.9581865Z Dest : C:\16337959945\build-results\.additional_ci_files\ 2025-07-17T08:14:04.9582129Z 2025-07-17T08:14:04.9582571Z Files : *.* 2025-07-17T08:14:04.9582912Z 2025-07-17T08:14:04.9585053Z Options : *.* /S /E /DCOPY:DA /COPY:DAT /R:1000000 /W:30 2025-07-17T08:14:04.9585307Z 2025-07-17T08:14:04.9585609Z ------------------------------------------------------------------------------ 2025-07-17T08:14:04.9589402Z 2025-07-17T08:14:04.9595810Z New Dir 2 C:\actions-runner\_work\pytorch\pytorch\.additional_ci_files\ 2025-07-17T08:14:04.9604862Z New File 7.9 m test-class-times.json 2025-07-17T08:14:04.9607884Z 6.2% 2025-07-17T08:14:04.9611345Z 12.5% 2025-07-17T08:14:04.9614462Z 18.7% 2025-07-17T08:14:04.9617840Z 25.0% 2025-07-17T08:14:04.9620772Z 31.3% 2025-07-17T08:14:04.9624238Z 37.5% 2025-07-17T08:14:04.9627129Z 43.8% 2025-07-17T08:14:04.9630653Z 50.0% 2025-07-17T08:14:04.9633468Z 56.3% 2025-07-17T08:14:04.9636942Z 62.6% 2025-07-17T08:14:04.9639699Z 68.8% 2025-07-17T08:14:04.9643165Z 75.1% 2025-07-17T08:14:04.9645937Z 81.3% 2025-07-17T08:14:04.9649562Z 87.6% 2025-07-17T08:14:04.9652136Z 93.9% 2025-07-17T08:14:04.9654433Z 100% 2025-07-17T08:14:04.9660747Z New File 2.2 m test-times.json 2025-07-17T08:14:04.9663503Z 22% 2025-07-17T08:14:04.9667032Z 45% 2025-07-17T08:14:04.9670291Z 67% 2025-07-17T08:14:04.9672395Z 90% 2025-07-17T08:14:04.9676055Z 100% 2025-07-17T08:14:04.9676643Z 2025-07-17T08:14:04.9676816Z ------------------------------------------------------------------------------ 2025-07-17T08:14:04.9677101Z 2025-07-17T08:14:04.9678173Z Total Copied Skipped Mismatch FAILED Extras 2025-07-17T08:14:04.9679337Z Dirs : 1 1 0 0 0 0 2025-07-17T08:14:04.9680141Z Files : 2 2 0 0 0 0 2025-07-17T08:14:04.9681131Z Bytes : 10.19 m 10.19 m 0 0 0 0 2025-07-17T08:14:04.9682024Z Times : 0:00:00 0:00:00 0:00:00 0:00:00 2025-07-17T08:14:04.9682267Z 2025-07-17T08:14:04.9682801Z 2025-07-17T08:14:04.9683810Z Speed : 1335925750 Bytes/sec. 2025-07-17T08:14:04.9684785Z Speed : 76442.284 MegaBytes/min. 2025-07-17T08:14:04.9685193Z Ended : Thursday, July 17, 2025 8:14:04 AM 2025-07-17T08:14:04.9685501Z 2025-07-17T08:14:06.0501573Z 1 file(s) copied. 2025-07-17T08:14:06.0503926Z 2025-07-17T08:14:06.0504581Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --show-stats --stats-format json | jq .stats 1>sccache-stats-win-vs2022-cuda12.6-py3-46153715429.json 2025-07-17T08:14:06.0888314Z 2025-07-17T08:14:06.0888821Z (base) C:\actions-runner\_work\pytorch\pytorch>sccache --stop-server 2025-07-17T08:14:06.0973386Z Stopping sccache server... 2025-07-17T08:14:06.0991418Z Compile requests 7494 2025-07-17T08:14:06.0991743Z Compile requests executed 5618 2025-07-17T08:14:06.0992020Z Cache hits 5542 2025-07-17T08:14:06.0992294Z Cache hits (C/C++) 5223 2025-07-17T08:14:06.1427122Z Cache hits (CUDA) 319 2025-07-17T08:14:06.1427597Z Cache misses 55 2025-07-17T08:14:06.1427859Z Cache misses (C/C++) 52 2025-07-17T08:14:06.1428125Z Cache misses (CUDA) 3 2025-07-17T08:14:06.1428394Z Cache timeouts 0 2025-07-17T08:14:06.1428665Z Cache read errors 0 2025-07-17T08:14:06.1428924Z Forced recaches 0 2025-07-17T08:14:06.1429182Z Cache write errors 0 2025-07-17T08:14:06.1429457Z Compilation failures 3 2025-07-17T08:14:06.1429846Z Cache errors 18 2025-07-17T08:14:06.1430107Z Cache errors (C/C++) 18 2025-07-17T08:14:06.1430377Z Non-cacheable compilations 2 2025-07-17T08:14:06.1430667Z Non-cacheable calls 1875 2025-07-17T08:14:06.1430934Z Non-compilation calls 1 2025-07-17T08:14:06.1431212Z Unsupported compiler calls 0 2025-07-17T08:14:06.1431487Z Average cache write 0.231 s 2025-07-17T08:14:06.1431769Z Average compiler 5.404 s 2025-07-17T08:14:06.1432096Z Average cache read hit 0.072 s 2025-07-17T08:14:06.1432431Z Failed distributed compilations 0 2025-07-17T08:14:06.1432628Z 2025-07-17T08:14:06.1432821Z Non-cacheable reasons: 2025-07-17T08:14:06.1433044Z multiple input files 1875 2025-07-17T08:14:06.1433230Z 2025-07-17T08:14:06.1433518Z Cache location s3, name: ossci-compiler-cache, prefix: /trunk/ 2025-07-17T08:14:06.1433923Z Version (client) 0.7.4 2025-07-17T08:14:06.1434114Z 2025-07-17T08:14:06.1434263Z (base) C:\actions-runner\_work\pytorch\pytorch>exit /b 0 2025-07-17T08:14:06.1434591Z + assert_git_not_dirty 2025-07-17T08:14:06.1438194Z + [[ win-vs2022-cuda12.6-py3 != *rocm* ]] 2025-07-17T08:14:06.1438989Z + [[ win-vs2022-cuda12.6-py3 != *xla* ]] 2025-07-17T08:14:06.2231580Z ++ git status --porcelain 2025-07-17T08:14:06.2282555Z ++ grep -v '?? third_party' 2025-07-17T08:16:08.0511741Z ++ true 2025-07-17T08:16:08.0515400Z + git_status= 2025-07-17T08:16:08.0515620Z + [[ -n '' ]] 2025-07-17T08:16:08.0515935Z + echo 'BUILD PASSED' 2025-07-17T08:16:08.0516170Z BUILD PASSED 2025-07-17T08:16:08.3397545Z ##[group]Run seemethere/upload-artifact-s3@baba72d0712b404f646cebe0730933554ebce96a 2025-07-17T08:16:08.3398059Z with: 2025-07-17T08:16:08.3398258Z retention-days: 14 2025-07-17T08:16:08.3398490Z if-no-files-found: error 2025-07-17T08:16:08.3398770Z name: win-vs2022-cuda12.6-py3 2025-07-17T08:16:08.3399030Z path: C:\16337959945\build-results 2025-07-17T08:16:08.3399303Z s3-bucket: gha-artifacts 2025-07-17T08:16:08.3399543Z region: us-east-1 2025-07-17T08:16:08.3399732Z env: 2025-07-17T08:16:08.3399924Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:08.3400288Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:08.3400936Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:08.3401447Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:08.3401853Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:08.3402147Z ##[endgroup] 2025-07-17T08:16:09.4474810Z With the provided path, there will be 4 files uploaded 2025-07-17T08:16:09.4475354Z Uploading to s3 prefix: pytorch/pytorch/16337959945/win-vs2022-cuda12.6-py3 2025-07-17T08:16:09.5505809Z Starting upload of .additional_ci_files\test-class-times.json 2025-07-17T08:16:09.8094873Z Finished upload of .additional_ci_files\test-class-times.json 2025-07-17T08:16:09.8097582Z Starting upload of .additional_ci_files\test-times.json 2025-07-17T08:16:09.9227724Z Finished upload of .additional_ci_files\test-times.json 2025-07-17T08:16:09.9229547Z Starting upload of .ninja_log 2025-07-17T08:16:10.0829393Z Finished upload of .ninja_log 2025-07-17T08:16:10.0830467Z Starting upload of torch-2.9.0a0+gita38f433-cp39-cp39-win_amd64.whl 2025-07-17T08:16:14.1680053Z Finished upload of torch-2.9.0a0+gita38f433-cp39-cp39-win_amd64.whl 2025-07-17T08:16:14.2302535Z Prepare all required actions 2025-07-17T08:16:14.2303178Z Getting action download info 2025-07-17T08:16:14.3832902Z Download action repository 'seemethere/upload-artifact-s3@v5' (SHA:baba72d0712b404f646cebe0730933554ebce96a) 2025-07-17T08:16:14.8515409Z ##[group]Run ./.github/actions/upload-sccache-stats 2025-07-17T08:16:14.8515732Z with: 2025-07-17T08:16:14.8537510Z github-token: *** 2025-07-17T08:16:14.8537790Z env: 2025-07-17T08:16:14.8537995Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:14.8538476Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:14.8539010Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:14.8539487Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:14.8539877Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:14.8540175Z ##[endgroup] 2025-07-17T08:16:14.8679238Z ##[group]Run seemethere/upload-artifact-s3@v5 2025-07-17T08:16:14.8679570Z with: 2025-07-17T08:16:14.8679783Z s3-prefix: pytorch/pytorch/16337959945/1/artifact 2025-07-17T08:16:14.8680099Z retention-days: 14 2025-07-17T08:16:14.8680313Z if-no-files-found: warn 2025-07-17T08:16:14.8680540Z path: sccache-stats-*.json 2025-07-17T08:16:14.8680767Z name: artifact 2025-07-17T08:16:14.8680962Z s3-bucket: gha-artifacts 2025-07-17T08:16:14.8681182Z region: us-east-1 2025-07-17T08:16:14.8681363Z env: 2025-07-17T08:16:14.8681532Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:14.8681890Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:14.8682410Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:14.8682890Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:14.8683310Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:14.8683605Z ##[endgroup] 2025-07-17T08:16:15.2477370Z NOTE: s3-prefix specified, ignoring name parameter 2025-07-17T08:16:15.2477804Z With the provided path, there will be 1 file uploaded 2025-07-17T08:16:15.2478378Z Uploading to s3 prefix: pytorch/pytorch/16337959945/1/artifact 2025-07-17T08:16:15.2491143Z Starting upload of sccache-stats-win-vs2022-cuda12.6-py3-46153715429.json 2025-07-17T08:16:15.3902681Z Finished upload of sccache-stats-win-vs2022-cuda12.6-py3-46153715429.json 2025-07-17T08:16:15.4212454Z Prepare all required actions 2025-07-17T08:16:15.4212867Z Getting action download info 2025-07-17T08:16:15.6534630Z ##[group]Run ./.github/actions/teardown-win 2025-07-17T08:16:15.6534922Z with: 2025-07-17T08:16:15.6535148Z extra-delete-dir: /c/16337959945/build-results/ 2025-07-17T08:16:15.6535427Z env: 2025-07-17T08:16:15.6535604Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:15.6535965Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:15.6536485Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:15.6536953Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:15.6537333Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:15.6537802Z ##[endgroup] 2025-07-17T08:16:15.6644414Z ##[group]Run .github\scripts\wait_for_ssh_to_drain.ps1 2025-07-17T08:16:15.6644806Z .github\scripts\wait_for_ssh_to_drain.ps1 2025-07-17T08:16:15.6660750Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T08:16:15.6661289Z env: 2025-07-17T08:16:15.6661477Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:15.6661839Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:15.6662351Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:15.6662818Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:15.6663199Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:15.6663482Z ##[endgroup] 2025-07-17T08:16:16.1886325Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T08:16:16.1955393Z Finished 2025-07-17T08:16:16.3379443Z Holding runner until all ssh sessions have logged out 2025-07-17T08:16:16.3633339Z ##[group]Run .github\scripts\kill_active_ssh_sessions.ps1 2025-07-17T08:16:16.3633771Z .github\scripts\kill_active_ssh_sessions.ps1 2025-07-17T08:16:16.3649063Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T08:16:16.3649618Z env: 2025-07-17T08:16:16.3649805Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:16.3650192Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:16.3650708Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:16.3651197Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:16.3651611Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:16.3651893Z ##[endgroup] 2025-07-17T08:16:16.7083724Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T08:16:16.7140654Z Finished 2025-07-17T08:16:16.7493181Z ##[group]Run pytorch/test-infra/.github/actions/cleanup-runner@main 2025-07-17T08:16:16.7493586Z env: 2025-07-17T08:16:16.7493779Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:16.7494184Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:16.7494707Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:16.7495192Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:16.7495591Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:16.7495862Z ##[endgroup] 2025-07-17T08:16:16.7563313Z ##[group]Run # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-17T08:16:16.7564050Z # This needs to be run before checking out PyTorch to avoid locking the working directory. 2025-07-17T08:16:16.7564712Z # Below is the list of commands that could lock $GITHUB_WORKSPACE gathered from sysinternals 2025-07-17T08:16:16.7565189Z # handle tool 2025-07-17T08:16:16.7565520Z $processes = "python", "ninja", "cl", "nvcc", "cmd", "sccache", "git" 2025-07-17T08:16:16.7565997Z Foreach ($process In $processes) { 2025-07-17T08:16:16.7567743Z  Try { 2025-07-17T08:16:16.7568297Z  # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process 2025-07-17T08:16:16.7569013Z  Get-Process -Name $process -ErrorAction Stop | Stop-Process -Force 2025-07-17T08:16:16.7569408Z  } 2025-07-17T08:16:16.7569611Z  Catch { 2025-07-17T08:16:16.7569917Z  Write-Output "No leftover $process process, continuing" 2025-07-17T08:16:16.7570305Z  Write-Output $_ 2025-07-17T08:16:16.7570539Z  } 2025-07-17T08:16:16.7570728Z } 2025-07-17T08:16:16.7570911Z  2025-07-17T08:16:16.7571366Z # Try it again https://stackoverflow.com/questions/40585754/powershell-wont-terminate-hung-process 2025-07-17T08:16:16.7571997Z # for hung processes 2025-07-17T08:16:16.7572313Z Foreach ($process In $processes) { 2025-07-17T08:16:16.7572606Z  Try { 2025-07-17T08:16:16.7572990Z  (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process}%'").terminate() 2025-07-17T08:16:16.7573546Z  } 2025-07-17T08:16:16.7573730Z  Catch { 2025-07-17T08:16:16.7573961Z  Write-Output $_ 2025-07-17T08:16:16.7574201Z  } 2025-07-17T08:16:16.7574391Z } 2025-07-17T08:16:16.7574558Z  2025-07-17T08:16:16.7574735Z Try { 2025-07-17T08:16:16.7574967Z  # Print all the processes for debugging 2025-07-17T08:16:16.7575430Z  Wmic Path Win32_Process Get Caption,Processid,Commandline | Format-List 2025-07-17T08:16:16.7575856Z } 2025-07-17T08:16:16.7576037Z Catch { 2025-07-17T08:16:16.7576435Z  # Better to write out whatever exception thrown to help debugging any potential issue 2025-07-17T08:16:16.7576895Z  Write-Output $_ 2025-07-17T08:16:16.7577129Z } 2025-07-17T08:16:16.7592398Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T08:16:16.7592873Z env: 2025-07-17T08:16:16.7593127Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:16.7593507Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:16.7594016Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:16.7594563Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:16.7594964Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:16.7595255Z ##[endgroup] 2025-07-17T08:16:17.1026068Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T08:16:17.1094822Z Finished 2025-07-17T08:16:17.1250787Z No leftover python process, continuing 2025-07-17T08:16:17.1718133Z Get-Process : Cannot find a process with the name "python". Verify the process name and call the cmdlet again. 2025-07-17T08:16:17.1718878Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:9 char:5 2025-07-17T08:16:17.1719467Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T08:16:17.1719894Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.1720427Z + CategoryInfo : ObjectNotFound: (python:String) [Get-Process], ProcessCommandException 2025-07-17T08:16:17.1721240Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T08:16:17.1721838Z 2025-07-17T08:16:17.1733307Z No leftover ninja process, continuing 2025-07-17T08:16:17.1743371Z Get-Process : Cannot find a process with the name "ninja". Verify the process name and call the cmdlet again. 2025-07-17T08:16:17.1744038Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:9 char:5 2025-07-17T08:16:17.1744605Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T08:16:17.1745014Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.1746262Z + CategoryInfo : ObjectNotFound: (ninja:String) [Get-Process], ProcessCommandException 2025-07-17T08:16:17.1747104Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T08:16:17.1747744Z 2025-07-17T08:16:17.1758555Z No leftover cl process, continuing 2025-07-17T08:16:17.1769125Z Get-Process : Cannot find a process with the name "cl". Verify the process name and call the cmdlet again. 2025-07-17T08:16:17.1769806Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:9 char:5 2025-07-17T08:16:17.1770376Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T08:16:17.1770777Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.1771257Z + CategoryInfo : ObjectNotFound: (cl:String) [Get-Process], ProcessCommandException 2025-07-17T08:16:17.1772145Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T08:16:17.1772852Z 2025-07-17T08:16:17.1783811Z No leftover nvcc process, continuing 2025-07-17T08:16:17.1794733Z Get-Process : Cannot find a process with the name "nvcc". Verify the process name and call the cmdlet again. 2025-07-17T08:16:17.1795477Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:9 char:5 2025-07-17T08:16:17.1796033Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T08:16:17.1796458Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.1796929Z + CategoryInfo : ObjectNotFound: (nvcc:String) [Get-Process], ProcessCommandException 2025-07-17T08:16:17.1797789Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T08:16:17.1798385Z 2025-07-17T08:16:17.1806804Z No leftover cmd process, continuing 2025-07-17T08:16:17.1817461Z Get-Process : Cannot find a process with the name "cmd". Verify the process name and call the cmdlet again. 2025-07-17T08:16:17.1818120Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:9 char:5 2025-07-17T08:16:17.1818875Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T08:16:17.1819334Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.1819797Z + CategoryInfo : ObjectNotFound: (cmd:String) [Get-Process], ProcessCommandException 2025-07-17T08:16:17.1820647Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T08:16:17.1821230Z 2025-07-17T08:16:17.1829376Z No leftover sccache process, continuing 2025-07-17T08:16:17.1839767Z Get-Process : Cannot find a process with the name "sccache". Verify the process name and call the cmdlet again. 2025-07-17T08:16:17.1840442Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:9 char:5 2025-07-17T08:16:17.1841004Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T08:16:17.1841413Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.1841904Z + CategoryInfo : ObjectNotFound: (sccache:String) [Get-Process], ProcessCommandException 2025-07-17T08:16:17.1842775Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T08:16:17.1843413Z 2025-07-17T08:16:17.1851805Z No leftover git process, continuing 2025-07-17T08:16:17.1861974Z Get-Process : Cannot find a process with the name "git". Verify the process name and call the cmdlet again. 2025-07-17T08:16:17.1862664Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:9 char:5 2025-07-17T08:16:17.1863214Z + Get-Process -Name $process -ErrorAction Stop | Stop-Process -Forc ... 2025-07-17T08:16:17.1863634Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.1864253Z + CategoryInfo : ObjectNotFound: (git:String) [Get-Process], ProcessCommandException 2025-07-17T08:16:17.1865051Z + FullyQualifiedErrorId : NoProcessFoundForGivenName,Microsoft.PowerShell.Commands.GetProcessCommand 2025-07-17T08:16:17.1865653Z 2025-07-17T08:16:17.2318920Z You cannot call a method on a null-valued expression. 2025-07-17T08:16:17.2319473Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:21 char:5 2025-07-17T08:16:17.2320063Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T08:16:17.2320493Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.2345660Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-17T08:16:17.2346162Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-17T08:16:17.2346465Z 2025-07-17T08:16:17.2499378Z You cannot call a method on a null-valued expression. 2025-07-17T08:16:17.2499916Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:21 char:5 2025-07-17T08:16:17.2500619Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T08:16:17.2501063Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.2501472Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-17T08:16:17.2501865Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-17T08:16:17.2502163Z 2025-07-17T08:16:17.2650080Z You cannot call a method on a null-valued expression. 2025-07-17T08:16:17.2650592Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:21 char:5 2025-07-17T08:16:17.2651154Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T08:16:17.2651574Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.2651974Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-17T08:16:17.2652370Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-17T08:16:17.2652675Z 2025-07-17T08:16:17.2813407Z You cannot call a method on a null-valued expression. 2025-07-17T08:16:17.2814486Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:21 char:5 2025-07-17T08:16:17.2815052Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T08:16:17.2815473Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.2815871Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-17T08:16:17.2816266Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-17T08:16:17.2816632Z 2025-07-17T08:16:17.2999673Z You cannot call a method on a null-valued expression. 2025-07-17T08:16:17.3000180Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:21 char:5 2025-07-17T08:16:17.3000739Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T08:16:17.3001183Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.3001587Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-17T08:16:17.3001984Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-17T08:16:17.3002274Z 2025-07-17T08:16:17.3148343Z You cannot call a method on a null-valued expression. 2025-07-17T08:16:17.3148849Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:21 char:5 2025-07-17T08:16:17.3149399Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T08:16:17.3149821Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.3150224Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-17T08:16:17.3150616Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-17T08:16:17.3150911Z 2025-07-17T08:16:17.3295544Z You cannot call a method on a null-valued expression. 2025-07-17T08:16:17.3296189Z At C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1:21 char:5 2025-07-17T08:16:17.3296753Z + (Get-WmiObject -Class Win32_Process -Filter "Name LIKE '${process ... 2025-07-17T08:16:17.3297186Z + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-17T08:16:17.3297580Z + CategoryInfo : InvalidOperation: (:) [], RuntimeException 2025-07-17T08:16:17.3297982Z + FullyQualifiedErrorId : InvokeMethodOnNull 2025-07-17T08:16:17.3298260Z 2025-07-17T08:16:17.4411148Z Caption CommandLine ProcessId 2025-07-17T08:16:17.4411634Z 2025-07-17T08:16:17.4411977Z System Idle Process 0 2025-07-17T08:16:17.4412553Z 2025-07-17T08:16:17.4412861Z System 4 2025-07-17T08:16:17.4413366Z 2025-07-17T08:16:17.4414271Z Registry 168 2025-07-17T08:16:17.4414840Z 2025-07-17T08:16:17.4415106Z smss.exe 412 2025-07-17T08:16:17.4415478Z 2025-07-17T08:16:17.4416519Z csrss.exe 512 2025-07-17T08:16:17.4417740Z 2025-07-17T08:16:17.4419675Z csrss.exe 592 2025-07-17T08:16:17.4420074Z 2025-07-17T08:16:17.4420370Z wininit.exe 644 2025-07-17T08:16:17.4420750Z 2025-07-17T08:16:17.4421178Z winlogon.exe winlogon.exe 664 2025-07-17T08:16:17.4421675Z 2025-07-17T08:16:17.4422349Z services.exe 736 2025-07-17T08:16:17.4422779Z 2025-07-17T08:16:17.4424147Z lsass.exe C:\Windows\system32\lsass.exe 756 2025-07-17T08:16:17.4424772Z 2025-07-17T08:16:17.4425289Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s PlugPlay 884 2025-07-17T08:16:17.4425865Z 2025-07-17T08:16:17.4426317Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p 908 2025-07-17T08:16:17.4426853Z 2025-07-17T08:16:17.4427292Z fontdrvhost.exe "fontdrvhost.exe" 932 2025-07-17T08:16:17.4427747Z 2025-07-17T08:16:17.4428743Z fontdrvhost.exe "fontdrvhost.exe" 940 2025-07-17T08:16:17.4429211Z 2025-07-17T08:16:17.4430112Z svchost.exe C:\Windows\system32\svchost.exe -k RPCSS -p 132 2025-07-17T08:16:17.4430627Z 2025-07-17T08:16:17.4431196Z svchost.exe C:\Windows\system32\svchost.exe -k DcomLaunch -p -s LSM 476 2025-07-17T08:16:17.4431805Z 2025-07-17T08:16:17.4432302Z svchost.exe C:\Windows\System32\svchost.exe -k termsvcs -s TermService 116 2025-07-17T08:16:17.4432873Z 2025-07-17T08:16:17.4433654Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s NcbService 1100 2025-07-17T08:16:17.4434444Z 2025-07-17T08:16:17.4434767Z dwm.exe "dwm.exe" 1148 2025-07-17T08:16:17.4435159Z 2025-07-17T08:16:17.4436629Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s EventLog 1248 2025-07-17T08:16:17.4437331Z 2025-07-17T08:16:17.4437791Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s nsi 1336 2025-07-17T08:16:17.4438359Z 2025-07-17T08:16:17.4439053Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s Dhcp 1360 2025-07-17T08:16:17.4439718Z 2025-07-17T08:16:17.4440211Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s gpsvc 1388 2025-07-17T08:16:17.4440805Z 2025-07-17T08:16:17.4441293Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s NlaSvc 1432 2025-07-17T08:16:17.4441932Z 2025-07-17T08:16:17.4443689Z 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 1456 2025-07-17T08:16:17.4445550Z 2025-07-17T08:16:17.4446013Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Schedule 1484 2025-07-17T08:16:17.4446675Z 2025-07-17T08:16:17.4447275Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s netprofm 1536 2025-07-17T08:16:17.4447860Z 2025-07-17T08:16:17.4448455Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s TimeBrokerSvc 1652 2025-07-17T08:16:17.4449148Z 2025-07-17T08:16:17.4449610Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s ProfSvc 1736 2025-07-17T08:16:17.4450156Z 2025-07-17T08:16:17.4450686Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s Themes 1744 2025-07-17T08:16:17.4451233Z 2025-07-17T08:16:17.4451794Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s EventSystem 1752 2025-07-17T08:16:17.4452441Z 2025-07-17T08:16:17.4453150Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s UmRdpService 1840 2025-07-17T08:16:17.4453876Z 2025-07-17T08:16:17.4454397Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -s CertPropSvc 1996 2025-07-17T08:16:17.4455049Z 2025-07-17T08:16:17.4455533Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s SENS 1064 2025-07-17T08:16:17.4456204Z 2025-07-17T08:16:17.4456719Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UserManager 2052 2025-07-17T08:16:17.4457385Z 2025-07-17T08:16:17.4457958Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s Dnscache 2076 2025-07-17T08:16:17.4458607Z 2025-07-17T08:16:17.4459856Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p 2084 2025-07-17T08:16:17.4460606Z 2025-07-17T08:16:17.4461159Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s ShellHWDetection 2132 2025-07-17T08:16:17.4461842Z 2025-07-17T08:16:17.4462458Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s LanmanWorkstation 2152 2025-07-17T08:16:17.4463230Z 2025-07-17T08:16:17.4463766Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s FontCache 2236 2025-07-17T08:16:17.4464448Z 2025-07-17T08:16:17.4464960Z svchost.exe C:\Windows\System32\svchost.exe -k netsvcs -p -s SessionEnv 2288 2025-07-17T08:16:17.4465655Z 2025-07-17T08:16:17.4466272Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetworkFirewall -p 2296 2025-07-17T08:16:17.4466947Z 2025-07-17T08:16:17.4467660Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNetworkRestricted -p -s WinHttpAutoProxySvc 2304 2025-07-17T08:16:17.4468466Z 2025-07-17T08:16:17.4468853Z spoolsv.exe C:\Windows\System32\spoolsv.exe 2676 2025-07-17T08:16:17.4469333Z 2025-07-17T08:16:17.4469903Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkService -p -s CryptSvc 2784 2025-07-17T08:16:17.4470492Z 2025-07-17T08:16:17.4470950Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s Winmgmt 2792 2025-07-17T08:16:17.4471514Z 2025-07-17T08:16:17.4472090Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s SysMain 2800 2025-07-17T08:16:17.4472783Z 2025-07-17T08:16:17.4473287Z svchost.exe C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork -p 2808 2025-07-17T08:16:17.4473927Z 2025-07-17T08:16:17.4475870Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s TrkWks 2820 2025-07-17T08:16:17.4476670Z 2025-07-17T08:16:17.4477165Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s WpnService 2828 2025-07-17T08:16:17.4477740Z 2025-07-17T08:16:17.4478223Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -s W32Time 2852 2025-07-17T08:16:17.4478822Z 2025-07-17T08:16:17.4479309Z svchost.exe C:\Windows\System32\svchost.exe -k NetworkService -p -s WinRM 2840 2025-07-17T08:16:17.4479955Z 2025-07-17T08:16:17.4480776Z IpOverUsbSvc.exe "C:\Program Files (x86)\Common Files\Microsoft Shared\Phone Tools\CoreCon\11.0\bin\IpOverUsbSvc.exe" 2176 2025-07-17T08:16:17.4481530Z 2025-07-17T08:16:17.4482006Z sshd.exe C:\Windows\System32\OpenSSH\sshd.exe 2268 2025-07-17T08:16:17.4482512Z 2025-07-17T08:16:17.4483111Z svchost.exe C:\Windows\System32\svchost.exe -k smbsvcs -s LanmanServer 2984 2025-07-17T08:16:17.4483758Z 2025-07-17T08:16:17.4484402Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe 3108 2025-07-17T08:16:17.4485151Z 2025-07-17T08:16:17.4485626Z svchost.exe C:\Windows\System32\svchost.exe -k NetSvcs -p -s iphlpsvc 3136 2025-07-17T08:16:17.4486294Z 2025-07-17T08:16:17.4487052Z svchost.exe C:\Windows\system32\svchost.exe -k NetworkServiceNetworkRestricted -p -s PolicyAgent 3524 2025-07-17T08:16:17.4487770Z 2025-07-17T08:16:17.4488346Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNetworkRestricted -p -s lmhosts 4016 2025-07-17T08:16:17.4489029Z 2025-07-17T08:16:17.4489525Z LogonUI.exe "LogonUI.exe" /flags:0x2 /state0:0xa3a71855 /state1:0x41c64e6d 4276 2025-07-17T08:16:17.4490200Z 2025-07-17T08:16:17.4491869Z 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 4412 2025-07-17T08:16:17.4493764Z 2025-07-17T08:16:17.4494489Z nvWmi64.exe C:\Windows\System32\DriverStore\FileRepository\nv_dispswi.inf_amd64_43a904fa5fe2998c\NVWMI\nvWmi64.exe -spawnprovider 4548 2025-07-17T08:16:17.4495331Z 2025-07-17T08:16:17.4495694Z vds.exe C:\Windows\System32\vds.exe 2732 2025-07-17T08:16:17.4496137Z 2025-07-17T08:16:17.4496718Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s PcaSvc 2316 2025-07-17T08:16:17.4497372Z 2025-07-17T08:16:17.4498122Z start-amazon-cloudwatch-agent.exe "C:\Program Files\Amazon\AmazonCloudWatchAgent\start-amazon-cloudwatch-agent.exe" 2888 2025-07-17T08:16:17.4498921Z 2025-07-17T08:16:17.4500493Z 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 2908 2025-07-17T08:16:17.4502133Z 2025-07-17T08:16:17.4502536Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 2332 2025-07-17T08:16:17.4503032Z 2025-07-17T08:16:17.4503610Z svchost.exe C:\Windows\System32\svchost.exe -k LocalServiceNoNetwork -p -s DPS 2884 2025-07-17T08:16:17.4504287Z 2025-07-17T08:16:17.4504969Z MicrosoftEdgeUpdate.exe "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe" /c 3420 2025-07-17T08:16:17.4505672Z 2025-07-17T08:16:17.4506043Z msdtc.exe C:\Windows\System32\msdtc.exe 1900 2025-07-17T08:16:17.4506574Z 2025-07-17T08:16:17.4507131Z svchost.exe C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted -p -s UALSVC 3748 2025-07-17T08:16:17.4507802Z 2025-07-17T08:16:17.4508257Z svchost.exe C:\Windows\system32\svchost.exe -k netsvcs -p -s UsoSvc 4348 2025-07-17T08:16:17.4508859Z 2025-07-17T08:16:17.4509389Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p 4716 2025-07-17T08:16:17.4510024Z 2025-07-17T08:16:17.4510528Z svchost.exe C:\Windows\system32\svchost.exe -k appmodel -p -s StateRepository 2656 2025-07-17T08:16:17.4511126Z 2025-07-17T08:16:17.4511537Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4532 2025-07-17T08:16:17.4512030Z 2025-07-17T08:16:17.4512580Z Runner.Listener.exe "C:\actions-runner\\bin\Runner.Listener.exe" run 1616 2025-07-17T08:16:17.4513155Z 2025-07-17T08:16:17.4513646Z amazon-ssm-agent.exe "C:\Program Files\Amazon\SSM\amazon-ssm-agent.exe" 4888 2025-07-17T08:16:17.4514220Z 2025-07-17T08:16:17.4514722Z ssm-agent-worker.exe "C:\Program Files\Amazon\SSM\ssm-agent-worker.exe" 3988 2025-07-17T08:16:17.4515998Z 2025-07-17T08:16:17.4516413Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 676 2025-07-17T08:16:17.4516905Z 2025-07-17T08:16:17.4517393Z svchost.exe C:\Windows\system32\svchost.exe -k LocalService -p -s CDPSvc 2740 2025-07-17T08:16:17.4518023Z 2025-07-17T08:16:17.4518544Z svchost.exe C:\Windows\System32\svchost.exe -k LocalService -p -s LicenseManager 2016 2025-07-17T08:16:17.4519170Z 2025-07-17T08:16:17.4519687Z Runner.Worker.exe "C:\actions-runner\bin\Runner.Worker.exe" spawnclient 1888 2092 2696 2025-07-17T08:16:17.4520375Z 2025-07-17T08:16:17.4520769Z conhost.exe \??\C:\Windows\system32\conhost.exe 0x4 4468 2025-07-17T08:16:17.4521361Z 2025-07-17T08:16:17.4521986Z svchost.exe C:\Windows\System32\svchost.exe -k LocalSystemNetworkRestricted -p -s DsSvc 1848 2025-07-17T08:16:17.4522651Z 2025-07-17T08:16:17.4523276Z vctip.exe "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC\14.38.33130\bin\Hostx64\x64\VCTIP.EXE" 2552 2025-07-17T08:16:17.4524011Z 2025-07-17T08:16:17.4524431Z WmiPrvSE.exe C:\Windows\system32\wbem\wmiprvse.exe 4544 2025-07-17T08:16:17.4524972Z 2025-07-17T08:16:17.4525774Z powershell.exe "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE" -command ". 'C:\actions-runner\_work\_temp\0115b9d8-abc4-4972-8b43-2eb5a1ca11fd.ps1'" 4120 2025-07-17T08:16:17.4526647Z 2025-07-17T08:16:17.4527323Z WMIC.exe "C:\Windows\System32\Wbem\WMIC.exe" Path Win32_Process Get Caption,Processid,Commandline 5776 2025-07-17T08:16:17.4528033Z 2025-07-17T08:16:17.4528036Z 2025-07-17T08:16:17.4528040Z 2025-07-17T08:16:17.4809673Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-17T08:16:17.4809932Z with: 2025-07-17T08:16:17.4810099Z shell: bash 2025-07-17T08:16:17.4810274Z timeout_minutes: 5 2025-07-17T08:16:17.4810472Z max_attempts: 3 2025-07-17T08:16:17.4810659Z retry_wait_seconds: 90 2025-07-17T08:16:17.4811763Z 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-07-17T08:16:17.4812802Z polling_interval_seconds: 1 2025-07-17T08:16:17.4813047Z warning_on_retry: true 2025-07-17T08:16:17.4813269Z continue_on_error: false 2025-07-17T08:16:17.4813484Z env: 2025-07-17T08:16:17.4813665Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:17.4814015Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:17.4814529Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:17.4814988Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:17.4815368Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:17.4815696Z EXTRA_DELETE_DIR: /c/16337959945/build-results/ 2025-07-17T08:16:17.4815976Z ##[endgroup] 2025-07-17T08:16:17.8709136Z + '[' -n /c/16337959945/build-results/ ']' 2025-07-17T08:16:17.8709693Z + rm -rf /c/16337959945/build-results/ 2025-07-17T08:16:17.9693414Z + rm -rf ./AGENTS.md ./BUCK.oss ./BUILD.bazel ./CITATION.cff ./CMakeLists.txt ./CODEOWNERS ./CODE_OF_CONDUCT.md ./CONTRIBUTING.md ./Dockerfile ./GLOSSARY.md ./LICENSE ./MANIFEST.in ./Makefile ./NOTICE ./README.md ./RELEASE.md ./SECURITY.md ./WORKSPACE ./android ./aten ./aten.bzl ./benchmarks ./binaries ./buckbuild.bzl ./build ./build.bzl ./build_variables.bzl ./c10 ./caffe2 ./cmake ./compile_commands.json ./defs.bzl ./dist ./docker.Makefile ./docs ./functorch ./mypy-strict.ini ./mypy.ini ./mypy_plugins ./pt_ops.bzl ./pt_template_srcs.bzl ./pyproject.toml ./pyrefly.toml ./pytest.ini ./requirements-build.txt ./requirements.txt ./sccache-stats-win-vs2022-cuda12.6-py3-46153715429.json ./scripts ./setup.py ./test ./third_party ./tools ./torch ./torch.egg-info ./torchgen ./ubsan.supp ./ufunc_defs.bzl ./version.txt 2025-07-17T08:16:47.9714860Z Command completed after 1 attempt(s). 2025-07-17T08:16:47.9871775Z ##[group]Run handle C:\actions-runner\_work\ 2025-07-17T08:16:47.9872235Z handle C:\actions-runner\_work\ 2025-07-17T08:16:47.9893588Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T08:16:47.9894053Z env: 2025-07-17T08:16:47.9894240Z GIT_DEFAULT_BRANCH: main 2025-07-17T08:16:47.9894691Z CONDA_RUN: C:\Jenkins\Miniconda3\condabin\conda.bat run --no-capture-output 2025-07-17T08:16:47.9895244Z CONDA_BUILD: C:\Jenkins\Miniconda3\condabin\conda.bat run conda-build 2025-07-17T08:16:47.9895727Z CONDA_INSTALL: C:\Jenkins\Miniconda3\condabin\conda.bat install 2025-07-17T08:16:47.9896140Z TMPDIR: C:\Users\RUNNER~1\AppData\Local\Temp 2025-07-17T08:16:47.9896422Z ##[endgroup] 2025-07-17T08:16:48.3789157Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T08:16:48.3877272Z Finished 2025-07-17T08:16:48.7142633Z 2025-07-17T08:16:48.7143314Z Nthandle v5.0 - Handle viewer 2025-07-17T08:16:48.7143699Z Copyright (C) 1997-2022 Mark Russinovich 2025-07-17T08:16:48.7144042Z Sysinternals - www.sysinternals.com 2025-07-17T08:16:48.7144381Z 2025-07-17T08:16:48.7494220Z powershell.exe pid: 964 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T08:16:48.7494921Z handle.exe pid: 3640 type: File 44: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T08:16:48.7495513Z handle.exe pid: 4512 type: File 94: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T08:16:48.7496155Z handle64.exe pid: 2744 type: File 50: C:\actions-runner\_work\pytorch\pytorch 2025-07-17T08:16:48.7885846Z Post job cleanup. 2025-07-17T08:16:48.8009840Z Post job cleanup. 2025-07-17T08:16:49.0954688Z [command]"C:\Program Files\Git\cmd\git.exe" version 2025-07-17T08:16:49.1162794Z git version 2.49.0.windows.1 2025-07-17T08:16:49.1223647Z Copying 'C:\Users\runneruser\.gitconfig' to 'C:\actions-runner\_work\_temp\dbc12e3e-3b8f-4043-8a55-1d53d177b866\.gitconfig' 2025-07-17T08:16:49.1236930Z Temporarily overriding HOME='C:\actions-runner\_work\_temp\dbc12e3e-3b8f-4043-8a55-1d53d177b866' before making global git config changes 2025-07-17T08:16:49.1237748Z Adding repository directory to the temporary git global config as a safe directory 2025-07-17T08:16:49.1247934Z [command]"C:\Program Files\Git\cmd\git.exe" config --global --add safe.directory C:\actions-runner\_work\pytorch\pytorch 2025-07-17T08:16:49.1510421Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp core\.sshCommand 2025-07-17T08:16:49.1764205Z [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-07-17T08:16:49.6056763Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-17T08:16:49.6254473Z http.https://github.com/.extraheader 2025-07-17T08:16:49.6311853Z [command]"C:\Program Files\Git\cmd\git.exe" config --local --unset-all http.https://github.com/.extraheader 2025-07-17T08:16:49.6565661Z [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-07-17T08:16:50.0404987Z A job completed hook has been configured by the self-hosted runner administrator 2025-07-17T08:16:50.0458355Z ##[group]Run 'C:\actions-runner\jobcompleted.ps1' 2025-07-17T08:16:50.0473563Z shell: C:\Windows\System32\WindowsPowerShell\v1.0\powershell.EXE -command ". '{0}'" 2025-07-17T08:16:50.0474010Z ##[endgroup] 2025-07-17T08:16:50.3955260Z Refreshing environment variables from the registry for powershell.exe. Please wait... 2025-07-17T08:16:50.4023325Z Finished 2025-07-17T08:16:51.9515527Z Evaluate and set job outputs 2025-07-17T08:16:51.9520592Z Cleaning up orphan processes 2025-07-17T08:16:52.3145353Z Terminate orphan process: pid (2552) (vctip)